diff --git a/addons/account/__openerp__.py b/addons/account/__openerp__.py index 17c0a77c30f..343512dc271 100644 --- a/addons/account/__openerp__.py +++ b/addons/account/__openerp__.py @@ -135,7 +135,8 @@ for a particular financial year and for preparation of vouchers there is a modul ], 'css':[ 'static/src/css/account_move_reconciliation.css', - 'static/src/css/account_move_line_quickadd.css' + 'static/src/css/account_move_line_quickadd.css', + 'static/src/css/account_bank_and_cash.css', ], 'demo': [ 'demo/account_demo.xml', diff --git a/addons/account/account.py b/addons/account/account.py index 0dc7c00a716..4d9baf36a17 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -28,7 +28,7 @@ import time import openerp from openerp import SUPERUSER_ID from openerp import tools -from openerp.osv import fields, osv +from openerp.osv import fields, osv, expression from openerp.tools.translate import _ from openerp.tools.float_utils import float_round @@ -579,15 +579,18 @@ class account_account(osv.osv): except: pass if name: - ids = self.search(cr, user, [('code', '=like', name+"%")]+args, limit=limit) - if not ids: - ids = self.search(cr, user, [('shortcut', '=', name)]+ args, limit=limit) - if not ids: - ids = self.search(cr, user, [('name', operator, name)]+ args, limit=limit) - if not ids and len(name.split()) >= 2: - #Separating code and name of account for searching - operand1,operand2 = name.split(' ',1) #name can contain spaces e.g. OpenERP S.A. - ids = self.search(cr, user, [('code', operator, operand1), ('name', operator, operand2)]+ args, limit=limit) + if operator not in expression.NEGATIVE_TERM_OPERATORS: + ids = self.search(cr, user, ['|', ('code', '=like', name+"%"), '|', ('shortcut', '=', name), ('name', operator, name)]+args, limit=limit) + if not ids and len(name.split()) >= 2: + #Separating code and name of account for searching + operand1,operand2 = name.split(' ',1) #name can contain spaces e.g. OpenERP S.A. + ids = self.search(cr, user, [('code', operator, operand1), ('name', operator, operand2)]+ args, limit=limit) + else: + ids = self.search(cr, user, ['&','!', ('code', '=like', name+"%"), ('name', operator, name)]+args, limit=limit) + # as negation want to restric, do if already have results + if ids and len(name.split()) >= 2: + operand1,operand2 = name.split(' ',1) #name can contain spaces e.g. OpenERP S.A. + ids = self.search(cr, user, [('code', operator, operand1), ('name', operator, operand2), ('id', 'in', ids)]+ args, limit=limit) else: ids = self.search(cr, user, args, context=context, limit=limit) return self.name_get(cr, user, ids, context=context) @@ -1019,7 +1022,10 @@ class account_period(osv.osv): if not result: result = self.search(cr, uid, args, context=context) if not result: - raise osv.except_osv(_('Error!'), _('There is no period defined for this date: %s.\nPlease create one.')%dt) + model, action_id = self.pool['ir.model.data'].get_object_reference(cr, uid, 'account', 'action_account_fiscalyear') + msg = _('There is no period defined for this date: %s.\nPlease, go to Configuration/Periods and configure a fiscal year.') % dt + raise openerp.exceptions.RedirectWarning(msg, action_id, _('Go to the configuration panel')) + return result def action_draft(self, cr, uid, ids, *args): @@ -1446,6 +1452,8 @@ class account_move(osv.osv): def unlink(self, cr, uid, ids, context=None, check=True): if context is None: context = {} + if isinstance(ids, (int, long)): + ids = [ids] toremove = [] obj_move_line = self.pool.get('account.move.line') for move in self.browse(cr, uid, ids, context=context): @@ -1570,11 +1578,6 @@ class account_move(osv.osv): obj_analytic_line = self.pool.get('account.analytic.line') obj_move_line = self.pool.get('account.move.line') for move in self.browse(cr, uid, ids, context): - # Unlink old analytic lines on move_lines - for obj_line in move.line_id: - for obj in obj_line.analytic_lines: - obj_analytic_line.unlink(cr,uid,obj.id) - journal = move.journal_id amount = 0 line_ids = [] @@ -1927,7 +1930,7 @@ class account_tax(osv.osv): 'child_depend':fields.boolean('Tax on Children', help="Set if the tax computation is based on the computation of child taxes rather than on the total amount."), 'python_compute':fields.text('Python Code'), 'python_compute_inv':fields.text('Python Code (reverse)'), - 'python_applicable':fields.text('Python Code'), + 'python_applicable':fields.text('Applicable Code'), # # Fields used for the Tax declaration @@ -1941,8 +1944,8 @@ class account_tax(osv.osv): 'ref_base_code_id': fields.many2one('account.tax.code', 'Refund Base Code', help="Use this code for the tax declaration."), 'ref_tax_code_id': fields.many2one('account.tax.code', 'Refund Tax Code', help="Use this code for the tax declaration."), - 'ref_base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."), - 'ref_tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."), + 'ref_base_sign': fields.float('Refund Base Code Sign', help="Usually 1 or -1."), + 'ref_tax_sign': fields.float('Refund Tax Code Sign', help="Usually 1 or -1."), 'include_base_amount': fields.boolean('Included in base amount', help="Indicates if the amount of tax must be included in the base amount for the computation of the next taxes"), 'company_id': fields.many2one('res.company', 'Company', required=True), 'description': fields.char('Tax Code'), @@ -2832,7 +2835,7 @@ class account_tax_template(osv.osv): 'child_depend':fields.boolean('Tax on Children', help="Set if the tax computation is based on the computation of child taxes rather than on the total amount."), 'python_compute':fields.text('Python Code'), 'python_compute_inv':fields.text('Python Code (reverse)'), - 'python_applicable':fields.text('Python Code'), + 'python_applicable':fields.text('Applicable Code'), # # Fields used for the Tax declaration @@ -2846,8 +2849,8 @@ class account_tax_template(osv.osv): 'ref_base_code_id': fields.many2one('account.tax.code.template', 'Refund Base Code', help="Use this code for the tax declaration."), 'ref_tax_code_id': fields.many2one('account.tax.code.template', 'Refund Tax Code', help="Use this code for the tax declaration."), - 'ref_base_sign': fields.float('Base Code Sign', help="Usually 1 or -1."), - 'ref_tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."), + 'ref_base_sign': fields.float('Refund Base Code Sign', help="Usually 1 or -1."), + 'ref_tax_sign': fields.float('Refund Tax Code Sign', help="Usually 1 or -1."), 'include_base_amount': fields.boolean('Include in Base Amount', help="Set if the amount of tax must be included in the base amount before computing the next taxes."), 'description': fields.char('Internal Name'), 'type_tax_use': fields.selection([('sale','Sale'),('purchase','Purchase'),('all','All')], 'Tax Use In', required=True,), @@ -3183,11 +3186,14 @@ class wizard_multi_charts_accounts(osv.osv_memory): def _get_analytic_journal(journal_type): # Get the analytic journal data = False - if journal_type in ('sale', 'sale_refund'): - data = obj_data.get_object_reference(cr, uid, 'account', 'analytic_journal_sale') - elif journal_type in ('purchase', 'purchase_refund'): - pass - elif journal_type == 'general': + try: + if journal_type in ('sale', 'sale_refund'): + data = obj_data.get_object_reference(cr, uid, 'account', 'analytic_journal_sale') + elif journal_type in ('purchase', 'purchase_refund'): + data = obj_data.get_object_reference(cr, uid, 'account', 'exp') + elif journal_type == 'general': + pass + except ValueError: pass return data and data[1] or False @@ -3411,6 +3417,8 @@ class wizard_multi_charts_accounts(osv.osv_memory): all the provided information to create the accounts, the banks, the journals, the taxes, the tax codes, the accounting properties... accordingly for the chosen company. ''' + if uid != SUPERUSER_ID and not self.pool['res.users'].has_group(cr, uid, 'base.group_erp_manager'): + raise openerp.exceptions.AccessError(_("Only administrators can change the settings")) obj_data = self.pool.get('ir.model.data') ir_values_obj = self.pool.get('ir.values') obj_wizard = self.browse(cr, uid, ids[0]) @@ -3427,7 +3435,7 @@ class wizard_multi_charts_accounts(osv.osv_memory): self.pool[tmp2[0]].write(cr, uid, tmp2[1], { 'currency_id': obj_wizard.currency_id.id }) - except ValueError, e: + except ValueError: pass # If the floats for sale/purchase rates have been filled, create templates from them diff --git a/addons/account/account_bank_statement.py b/addons/account/account_bank_statement.py index 8a15321b9c6..d437074023a 100644 --- a/addons/account/account_bank_statement.py +++ b/addons/account/account_bank_statement.py @@ -106,13 +106,13 @@ class account_bank_statement(osv.osv): 'balance_start': fields.float('Starting Balance', digits_compute=dp.get_precision('Account'), states={'confirm':[('readonly',True)]}), 'balance_end_real': fields.float('Ending Balance', digits_compute=dp.get_precision('Account'), - states={'confirm': [('readonly', True)]}), + states={'confirm': [('readonly', True)]}, help="Computed using the cash control lines"), 'balance_end': fields.function(_end_balance, store = { 'account.bank.statement': (lambda self, cr, uid, ids, c={}: ids, ['line_ids','move_line_ids','balance_start'], 10), 'account.bank.statement.line': (_get_statement, ['amount'], 10), }, - string="Computed Balance", help='Balance as calculated based on Starting Balance and transaction lines'), + string="Computed Balance", help='Balance as calculated based on Opening Balance and transaction lines'), 'company_id': fields.related('journal_id', 'company_id', type='many2one', relation='res.company', string='Company', store=True, readonly=True), 'line_ids': fields.one2many('account.bank.statement.line', 'statement_id', 'Statement lines', @@ -128,6 +128,7 @@ class account_bank_statement(osv.osv): 'currency': fields.function(_currency, string='Currency', type='many2one', relation='res.currency'), 'account_id': fields.related('journal_id', 'default_debit_account_id', type='many2one', relation='account.account', string='Account used in this journal', readonly=True, help='used in statement reconciliation domain, but shouldn\'t be used elswhere.'), + 'cash_control': fields.related('journal_id', 'cash_control' , type='boolean', relation='account.journal',string='Cash control'), } _defaults = { @@ -450,22 +451,25 @@ class account_bank_statement(osv.osv): def _compute_balance_end_real(self, cr, uid, journal_id, context=None): res = False if journal_id: - cr.execute('SELECT balance_end_real \ - FROM account_bank_statement \ - WHERE journal_id = %s AND NOT state = %s \ - ORDER BY date DESC,id DESC LIMIT 1', (journal_id, 'draft')) - res = cr.fetchone() + journal = self.pool.get('account.journal').browse(cr, uid, journal_id, context=context) + if journal.with_last_closing_balance: + cr.execute('SELECT balance_end_real \ + FROM account_bank_statement \ + WHERE journal_id = %s AND NOT state = %s \ + ORDER BY date DESC,id DESC LIMIT 1', (journal_id, 'draft')) + res = cr.fetchone() return res and res[0] or 0.0 def onchange_journal_id(self, cr, uid, statement_id, journal_id, context=None): if not journal_id: return {} balance_start = self._compute_balance_end_real(cr, uid, journal_id, context=context) - - journal_data = self.pool.get('account.journal').read(cr, uid, journal_id, ['company_id', 'currency'], context=context) - company_id = journal_data['company_id'] - currency_id = journal_data['currency'] or self.pool.get('res.company').browse(cr, uid, company_id[0], context=context).currency_id.id - return {'value': {'balance_start': balance_start, 'company_id': company_id, 'currency': currency_id}} + journal = self.pool.get('account.journal').browse(cr, uid, journal_id, context=context) + currency = journal.currency or journal.company_id.currency_id + res = {'balance_start': balance_start, 'company_id': journal.company_id.id, 'currency': currency.id} + if journal.type == 'cash': + res['cash_control'] = journal.cash_control + return {'value': res} def unlink(self, cr, uid, ids, context=None): stat = self.read(cr, uid, ids, ['state'], context=context) @@ -546,7 +550,7 @@ class account_bank_statement_line(osv.osv): _name = "account.bank.statement.line" _description = "Bank Statement Line" _columns = { - 'name': fields.char('OBI', required=True, help="Originator to Beneficiary Information"), + 'name': fields.char('Description', required=True), 'date': fields.date('Date', required=True), 'amount': fields.float('Amount', digits_compute=dp.get_precision('Account')), 'type': fields.selection([ diff --git a/addons/account/account_cash_statement.py b/addons/account/account_cash_statement.py index 8e3e250d41c..c1c5265d8c2 100644 --- a/addons/account/account_cash_statement.py +++ b/addons/account/account_cash_statement.py @@ -159,6 +159,10 @@ class account_cash_statement(osv.osv): context=context ) + opening_details_ids = self._get_cash_open_box_lines(cr, uid, journal_id, context) + if opening_details_ids: + result['value']['opening_details_ids'] = opening_details_ids + if not statement_ids: return result @@ -172,13 +176,14 @@ class account_cash_statement(osv.osv): store = { 'account.bank.statement': (lambda self, cr, uid, ids, context=None: ids, ['line_ids','move_line_ids'], 10), 'account.bank.statement.line': (_get_statement_from_line, ['amount'], 10), - }), + }, + help="Total of cash transaction lines."), 'closing_date': fields.datetime("Closed On"), 'details_ids' : fields.one2many('account.cashbox.line', 'bank_statement_id', string='CashBox Lines'), 'opening_details_ids' : fields.one2many('account.cashbox.line', 'bank_statement_id', string='Opening Cashbox Lines'), 'closing_details_ids' : fields.one2many('account.cashbox.line', 'bank_statement_id', string='Closing Cashbox Lines'), 'user_id': fields.many2one('res.users', 'Responsible', required=False), - 'difference' : fields.function(_compute_difference, method=True, string="Difference", type="float"), + 'difference' : fields.function(_compute_difference, method=True, string="Difference", type="float", help="Difference between the theoretical closing balance and the real closing balance."), 'last_closing_balance' : fields.function(_compute_last_closing_balance, method=True, string='Last Closing Balance', type='float'), } _defaults = { @@ -187,13 +192,12 @@ class account_cash_statement(osv.osv): 'user_id': lambda self, cr, uid, context=None: uid, } - def create(self, cr, uid, vals, context=None): - journal = False - if vals.get('journal_id'): - journal = self.pool.get('account.journal').browse(cr, uid, vals['journal_id'], context=context) - if journal and (journal.type == 'cash') and not vals.get('details_ids'): - vals['details_ids'] = [] - + def _get_cash_open_box_lines(self, cr, uid, journal_id, context): + details_ids = [] + if not journal_id: + return details_ids + journal = self.pool.get('account.journal').browse(cr, uid, journal_id, context=context) + if journal and (journal.type == 'cash'): last_pieces = None if journal.with_last_closing_balance == True: @@ -206,16 +210,19 @@ class account_cash_statement(osv.osv): last_pieces = dict( (line.pieces, line.number_closing) for line in last_bank_statement.details_ids ) - for value in journal.cashbox_line_ids: nested_values = { 'number_closing' : 0, 'number_opening' : last_pieces.get(value.pieces, 0) if isinstance(last_pieces, dict) else 0, 'pieces' : value.pieces } + details_ids.append([0, False, nested_values]) + return details_ids - vals['details_ids'].append([0, False, nested_values]) - + def create(self, cr, uid, vals, context=None): + journal_id = vals.get('journal_id') + if journal_id and not vals.get('opening_details_ids'): + vals['opening_details_ids'] = vals.get('opening_details_ids') or self._get_cash_open_box_lines(cr, uid, journal_id, context) res_id = super(account_cash_statement, self).create(cr, uid, vals, context=context) self._update_balances(cr, uid, [res_id], context) return res_id @@ -233,7 +240,10 @@ class account_cash_statement(osv.osv): @return: True on success, False otherwise """ - + if vals.get('journal_id', False): + cashbox_line_obj = self.pool.get('account.cashbox.line') + cashbox_ids = cashbox_line_obj.search(cr, uid, [('bank_statement_id', 'in', ids)], context=context) + cashbox_line_obj.unlink(cr, uid, cashbox_ids, context) res = super(account_cash_statement, self).write(cr, uid, ids, vals, context=context) self._update_balances(cr, uid, ids, context) return res diff --git a/addons/account/account_move_line.py b/addons/account/account_move_line.py index 0fc9d9e2227..b48e842caf5 100644 --- a/addons/account/account_move_line.py +++ b/addons/account/account_move_line.py @@ -26,7 +26,7 @@ from operator import itemgetter from lxml import etree -from openerp import netsvc +from openerp import workflow from openerp.osv import fields, osv, orm from openerp.tools.translate import _ import openerp.addons.decimal_precision as dp @@ -193,6 +193,8 @@ class account_move_line(osv.osv): if obj_line.analytic_account_id: if not obj_line.journal_id.analytic_journal_id: raise osv.except_osv(_('No Analytic Journal!'),_("You have to define an analytic journal on the '%s' journal!") % (obj_line.journal_id.name, )) + if obj_line.analytic_lines: + acc_ana_line_obj.unlink(cr,uid,[obj.id for obj in obj_line.analytic_lines]) vals_line = self._prepare_analytic_line(cr, uid, obj_line, context=context) acc_ana_line_obj.create(cr, uid, vals_line) return True @@ -311,13 +313,13 @@ class account_move_line(osv.osv): context = {} c = context.copy() c['initital_bal'] = True - sql = """SELECT l2.id, SUM(l1.debit-l1.credit) - FROM account_move_line l1, account_move_line l2 - WHERE l2.account_id = l1.account_id - AND l1.id <= l2.id - AND l2.id IN %s AND """ + \ - self._query_get(cr, uid, obj='l1', context=c) + \ - " GROUP BY l2.id" + sql = """SELECT l1.id, COALESCE(SUM(l2.debit-l2.credit), 0) + FROM account_move_line l1 LEFT JOIN account_move_line l2 + ON (l1.account_id = l2.account_id + AND l2.id <= l1.id + AND """ + \ + self._query_get(cr, uid, obj='l2', context=c) + \ + ") WHERE l1.id IN %s GROUP BY l1.id" cr.execute(sql, [tuple(ids)]) return dict(cr.fetchall()) @@ -847,18 +849,17 @@ class account_move_line(osv.osv): (tuple(ids), )) r = cr.fetchall() #TODO: move this check to a constraint in the account_move_reconcile object + if len(r) != 1: + raise osv.except_osv(_('Error'), _('Entries are not of the same account or already reconciled ! ')) if not unrec_lines: raise osv.except_osv(_('Error!'), _('Entry is already reconciled.')) account = account_obj.browse(cr, uid, account_id, context=context) + if not account.reconcile: + raise osv.except_osv(_('Error'), _('The account is not defined to be reconciled !')) if r[0][1] != None: raise osv.except_osv(_('Error!'), _('Some entries are already reconciled.')) - if context.get('fy_closing'): - # We don't want to generate any write-off when being called from the - # wizard used to close a fiscal year (and it doesn't give us any - # writeoff_acc_id). - pass - elif (not currency_obj.is_zero(cr, uid, account.company_id.currency_id, writeoff)) or \ + if (not currency_obj.is_zero(cr, uid, account.company_id.currency_id, writeoff)) or \ (account.currency_id and (not currency_obj.is_zero(cr, uid, account.currency_id, currency))): if not writeoff_acc_id: raise osv.except_osv(_('Warning!'), _('You have to provide an account for the write off/exchange difference entry.')) @@ -932,11 +933,10 @@ class account_move_line(osv.osv): 'line_id': map(lambda x: (4, x, False), ids), 'line_partial_ids': map(lambda x: (3, x, False), ids) }) - wf_service = netsvc.LocalService("workflow") # the id of the move.reconcile is written in the move.line (self) by the create method above # because of the way the line_id are defined: (4, x, False) for id in ids: - wf_service.trg_trigger(uid, 'account.move.line', id, cr) + workflow.trg_trigger(uid, 'account.move.line', id, cr) if lines and lines[0]: partner_id = lines[0].partner_id and lines[0].partner_id.id or False @@ -1198,7 +1198,7 @@ class account_move_line(osv.osv): break # Automatically convert in the account's secondary currency if there is one and # the provided values were not already multi-currency - if account.currency_id and (vals.get('amount_currency', False) is False) and account.currency_id.id != account.company_id.currency_id.id: + if account.currency_id and 'amount_currency' not in vals and account.currency_id.id != account.company_id.currency_id.id: vals['currency_id'] = account.currency_id.id ctx = {} if 'date' in vals: @@ -1208,20 +1208,6 @@ class account_move_line(osv.osv): if not ok: raise osv.except_osv(_('Bad Account!'), _('You cannot use this general account in this journal, check the tab \'Entry Controls\' on the related journal.')) - if vals.get('analytic_account_id',False): - if journal.analytic_journal_id: - vals['analytic_lines'] = [(0,0, { - 'name': vals['name'], - 'date': vals.get('date', time.strftime('%Y-%m-%d')), - 'account_id': vals.get('analytic_account_id', False), - 'unit_amount': vals.get('quantity', 1.0), - 'amount': vals.get('debit', 0.0) or vals.get('credit', 0.0), - 'general_account_id': vals.get('account_id', False), - 'journal_id': journal.analytic_journal_id.id, - 'ref': vals.get('ref', False), - 'user_id': uid - })] - result = super(account_move_line, self).create(cr, uid, vals, context=context) # CREATE Taxes if vals.get('account_tax_id', False): diff --git a/addons/account/account_unit_test.xml b/addons/account/account_unit_test.xml index 7795c2700cc..5fb1c55b669 100644 --- a/addons/account/account_unit_test.xml +++ b/addons/account/account_unit_test.xml @@ -8,7 +8,7 @@ draft - out_invoice + in_invoice Test invoice 1 diff --git a/addons/account/account_view.xml b/addons/account/account_view.xml index 7d350fdd2e1..7cbf0b27036 100644 --- a/addons/account/account_view.xml +++ b/addons/account/account_view.xml @@ -1211,6 +1211,7 @@ account.move.line + tree @@ -1598,7 +1599,6 @@ - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + + + +
+ + + + + + +
diff --git a/addons/account/data/account_data.xml b/addons/account/data/account_data.xml index 9d2e65a3a4c..723ec6da155 100644 --- a/addons/account/data/account_data.xml +++ b/addons/account/data/account_data.xml @@ -3,9 +3,15 @@ + SAL Sales sale + + PUR + Purchases + purchase + + + + + + + + + + - @@ -30,7 +38,6 @@ - @@ -40,7 +47,6 @@ - @@ -49,7 +55,6 @@ - @@ -58,7 +63,6 @@ - @@ -68,7 +72,6 @@ - @@ -76,7 +79,6 @@ - @@ -85,7 +87,6 @@ - @@ -94,7 +95,6 @@ - @@ -103,7 +103,6 @@ - @@ -112,7 +111,6 @@ - @@ -121,7 +119,6 @@ - diff --git a/addons/account/edi/invoice_action_data.xml b/addons/account/edi/invoice_action_data.xml index b3fe8362b8b..417169fa8cb 100644 --- a/addons/account/edi/invoice_action_data.xml +++ b/addons/account/edi/invoice_action_data.xml @@ -22,7 +22,7 @@ Invoice - Send by Email - ${object.user_id.email or object.company_id.email or 'noreply@localhost'} + ${(object.user_id.email or object.company_id.email or 'noreply@localhost')|safe} ${object.company_id.name} Invoice (Ref ${object.number or 'n/a'}) ${object.partner_id.id} diff --git a/addons/account/i18n/am.po b/addons/account/i18n/am.po new file mode 100644 index 00000000000..3085e9962ea --- /dev/null +++ b/addons/account/i18n/am.po @@ -0,0 +1,10849 @@ +# Amharic 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-11-27 11:23+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Amharic \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" + +#. module: account +#: model:process.transition,name:account.process_transition_supplierreconcilepaid0 +msgid "System payment" +msgstr "" + +#. module: account +#: sql_constraint:account.fiscal.position.account:0 +msgid "" +"An account fiscal position could be defined only once time on same accounts." +msgstr "" + +#. module: account +#: help:account.tax.code,sequence:0 +msgid "" +"Determine the display order in the report 'Accounting \\ Reporting \\ " +"Generic Reporting \\ Taxes \\ Taxes Report'" +msgstr "" + +#. module: account +#: view:account.move.reconcile:0 +msgid "Journal Entry Reconcile" +msgstr "" + +#. module: account +#: view:account.account:0 +#: view:account.bank.statement:0 +#: view:account.move.line:0 +msgid "Account Statistics" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Proforma/Open/Paid Invoices" +msgstr "" + +#. module: account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "ቀሪ" + +#. module: account +#: code:addons/account/account_bank_statement.py:369 +#, python-format +msgid "Journal item \"%s\" is not valid." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_invoiceimport0 +msgid "Import from invoice or payment" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 +#, python-format +msgid "Bad Account!" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Total Debit" +msgstr "" + +#. module: account +#: constraint:account.account.template:0 +msgid "" +"Error!\n" +"You cannot create recursive account templates." +msgstr "" + +#. module: account +#. openerp-web +#: view:account.automatic.reconcile:0 +#: field:account.move.line,reconcile_id:0 +#: view:account.move.line.reconcile:0 +#: view:account.move.line.reconcile.writeoff:0 +#: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 +#, python-format +msgid "Reconcile" +msgstr "" + +#. module: account +#: field:account.bank.statement,name:0 +#: field:account.bank.statement.line,ref:0 +#: field:account.entries.report,ref:0 +#: field:account.move,ref:0 +#: field:account.move.line,ref:0 +#: field:account.subscription,ref:0 +#: xsl:account.transfer:0 +#: field:cash.box.in,ref:0 +msgid "Reference" +msgstr "ማመሳከሪያ" + +#. module: account +#: help:account.payment.term,active:0 +msgid "" +"If the active field is set to False, it will allow you to hide the payment " +"term without removing it." +msgstr "" + +#. module: account +#: code:addons/account/account.py:641 +#: code:addons/account/account.py:686 +#: code:addons/account/account.py:781 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 +#: code:addons/account/account_move_line.py:98 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 +#: code:addons/account/wizard/account_fiscalyear_close.py:62 +#: code:addons/account/wizard/account_invoice_state.py:44 +#: code:addons/account/wizard/account_invoice_state.py:68 +#: code:addons/account/wizard/account_state_open.py:37 +#: code:addons/account/wizard/account_validate_account_move.py:39 +#: code:addons/account/wizard/account_validate_account_move.py:61 +#, python-format +msgid "Warning!" +msgstr "ማስጠንቀቅያ!" + +#. module: account +#: code:addons/account/account.py:3197 +#, python-format +msgid "Miscellaneous Journal" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 +#, python-format +msgid "" +"You have to set the 'End of Year Entries Journal' for this Fiscal Year " +"which is set after generating opening entries from 'Generate Opening " +"Entries'." +msgstr "" + +#. module: account +#: field:account.fiscal.position.account,account_src_id:0 +#: field:account.fiscal.position.account.template,account_src_id:0 +msgid "Account Source" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_period +msgid "" +"

\n" +" Click to add a fiscal period.\n" +"

\n" +" An accounting period typically is a month or a quarter. It\n" +" usually corresponds to the periods of the tax declaration.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: account +#: field:accounting.report,label_filter:0 +msgid "Column Label" +msgstr "" + +#. module: account +#: help:account.config.settings,code_digits:0 +msgid "No. of digits to use for account code" +msgstr "" + +#. module: account +#: help:account.analytic.journal,type:0 +msgid "" +"Gives the type of the analytic journal. When it needs for a document (eg: an " +"invoice) to create analytic entries, OpenERP will look for a matching " +"journal of the same type." +msgstr "" + +#. module: account +#: help:account.tax,account_analytic_collected_id:0 +msgid "" +"Set the analytic account that will be used by default on the invoice tax " +"lines for invoices. Leave empty if you don't want to use an analytic account " +"on the invoice tax lines by default." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_tax_template_form +#: model:ir.ui.menu,name:account.menu_action_account_tax_template_form +msgid "Tax Templates" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_move_line_reconcile_select +msgid "Move line reconcile select" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_supplierentriesreconcile0 +msgid "Accounting entries are an input of the reconciliation." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports +msgid "Belgian Reports" +msgstr "" + +#. module: account +#: model:mail.message.subtype,name:account.mt_invoice_validated +msgid "Validated" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_income_view1 +msgid "Income View" +msgstr "" + +#. module: account +#: help:account.account,user_type:0 +msgid "" +"Account Type is used for information purpose, to generate country-specific " +"legal reports, and set the rules to close a fiscal year and generate opening " +"entries." +msgstr "" + +#. module: account +#: field:account.config.settings,sale_refund_sequence_next:0 +msgid "Next credit note number" +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_voucher:0 +msgid "" +"This includes all the basic requirements of voucher entries for bank, cash, " +"sales, purchase, expense, contra, etc.\n" +" This installs the module account_voucher." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_use_model_create_entry +msgid "Manual Recurring" +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,allow_write_off:0 +msgid "Allow write off" +msgstr "" + +#. module: account +#: view:account.analytic.chart:0 +msgid "Select the Period for Analysis" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_invoice_tree3 +msgid "" +"

\n" +" Click to create a customer refund. \n" +"

\n" +" A refund is a document that credits an invoice completely " +"or\n" +" partially.\n" +"

\n" +" Instead of manually creating a customer refund, you\n" +" can generate it directly from the related customer invoice.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: help:account.installer,charts:0 +msgid "" +"Installs localized accounting charts to match as closely as possible the " +"accounting needs of your company based on your country." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_unreconcile +msgid "Account Unreconcile" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_budget:0 +msgid "Budget management" +msgstr "" + +#. module: account +#: view:product.template:0 +msgid "Purchase Properties" +msgstr "" + +#. module: account +#: help:account.financial.report,style_overwrite:0 +msgid "" +"You can set up here the format you want this record to be displayed. If you " +"leave the automatic formatting, it will be computed based on the financial " +"reports hierarchy (auto-computed field 'level')." +msgstr "" + +#. module: account +#: field:account.config.settings,group_multi_currency:0 +msgid "Allow multi currencies" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:77 +#, python-format +msgid "You must define an analytic journal of type '%s'!" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "June" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_automatic_reconcile.py:148 +#, python-format +msgid "You must select accounts to reconcile." +msgstr "" + +#. module: account +#: help:account.config.settings,group_analytic_accounting:0 +msgid "Allows you to use the analytic accounting." +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: field:account.invoice,user_id:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,user_id:0 +msgid "Salesperson" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: view:account.invoice:0 +msgid "Responsible" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_bank_accounts_wizard +msgid "account.bank.accounts.wizard" +msgstr "" + +#. module: account +#: field:account.move.line,date_created:0 +#: field:account.move.reconcile,create_date:0 +msgid "Creation date" +msgstr "" + +#. module: account +#: selection:account.journal,type:0 +msgid "Purchase Refund" +msgstr "" + +#. module: account +#: selection:account.journal,type:0 +msgid "Opening/Closing Situation" +msgstr "" + +#. module: account +#: help:account.journal,currency:0 +msgid "The currency used to enter statement" +msgstr "" + +#. module: account +#: field:account.journal,default_debit_account_id:0 +msgid "Default Debit Account" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Total Credit" +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_asset:0 +msgid "" +"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,\n" +" but not accounting (Journal Items, Chart of Accounts, ...)" +msgstr "" + +#. module: account +#: help:account.bank.statement.line,name:0 +msgid "Originator to Beneficiary Information" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 +#, python-format +msgid "Period :" +msgstr "" + +#. module: account +#: field:account.account.template,chart_template_id:0 +#: field:account.fiscal.position.template,chart_template_id:0 +#: field:account.tax.template,chart_template_id:0 +#: field:wizard.multi.charts.accounts,chart_template_id:0 +msgid "Chart Template" +msgstr "" + +#. module: account +#: selection:account.invoice.refund,filter_refund:0 +msgid "Modify: create refund, reconcile and create a new draft invoice" +msgstr "" + +#. module: account +#: help:account.config.settings,tax_calculation_rounding_method:0 +msgid "" +"If you select 'Round per line' : for each tax, the tax amount will first be " +"computed and rounded for each PO/SO/invoice line and then these rounded " +"amounts will be summed, leading to the total amount for that tax. If you " +"select 'Round globally': for each tax, the tax amount will be computed for " +"each PO/SO/invoice line, then these amounts will be summed and eventually " +"this total tax amount will be rounded. If you sell with tax included, you " +"should choose 'Round per line' because you certainly want the sum of your " +"tax-included line subtotals to be equal to the total amount with taxes." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" + +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Available Coins" +msgstr "" + +#. module: account +#: field:accounting.report,enable_filter:0 +msgid "Enable Comparison" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: field:account.automatic.reconcile,journal_id:0 +#: view:account.bank.statement:0 +#: field:account.bank.statement,journal_id:0 +#: field:account.bank.statement.line,journal_id:0 +#: report:account.central.journal:0 +#: view:account.entries.report:0 +#: field:account.entries.report,journal_id:0 +#: view:account.invoice:0 +#: field:account.invoice,journal_id:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,journal_id:0 +#: view:account.journal:0 +#: field:account.journal.cashbox.line,journal_id:0 +#: field:account.journal.period,journal_id:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: view:account.model:0 +#: field:account.model,journal_id:0 +#: view:account.move:0 +#: field:account.move,journal_id:0 +#: field:account.move.bank.reconcile,journal_id:0 +#: view:account.move.line:0 +#: field:account.move.line,journal_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,journal_id:0 +#: model:ir.actions.report.xml,name:account.account_journal +#: model:ir.model,name:account.model_account_journal +#: field:validate.account.move,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_invoice_confirm +msgid "Confirm the selected invoices" +msgstr "" + +#. module: account +#: field:account.addtmpl.wizard,cparent_id:0 +msgid "Parent target" +msgstr "" + +#. module: account +#: help:account.invoice.line,sequence:0 +msgid "Gives the sequence of this line when displaying the invoice." +msgstr "" + +#. module: account +#: field:account.bank.statement,account_id:0 +msgid "Account used in this journal" +msgstr "" + +#. module: account +#: help:account.aged.trial.balance,chart_account_id:0 +#: help:account.balance.report,chart_account_id:0 +#: help:account.central.journal,chart_account_id:0 +#: help:account.common.account.report,chart_account_id:0 +#: help:account.common.journal.report,chart_account_id:0 +#: help:account.common.partner.report,chart_account_id:0 +#: help:account.common.report,chart_account_id:0 +#: help:account.general.journal,chart_account_id:0 +#: help:account.partner.balance,chart_account_id:0 +#: help:account.partner.ledger,chart_account_id:0 +#: help:account.print.journal,chart_account_id:0 +#: help:account.report.general.ledger,chart_account_id:0 +#: help:account.vat.declaration,chart_account_id:0 +#: help:accounting.report,chart_account_id:0 +msgid "Select Charts of Accounts" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_invoice_refund +msgid "Invoice Refund" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Li." +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,unreconciled:0 +msgid "Not reconciled transactions" +msgstr "" + +#. module: account +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +msgid "Counterpart" +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,tax_ids:0 +#: field:account.fiscal.position.template,tax_ids:0 +msgid "Tax Mapping" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state +#: model:ir.ui.menu,name:account.menu_wizard_fy_close_state +msgid "Close a Fiscal Year" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 +msgid "The accountant confirms the statement." +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/xml/account_move_reconciliation.xml:31 +#, python-format +msgid "Nothing to reconcile" +msgstr "" + +#. module: account +#: field:account.config.settings,decimal_precision:0 +msgid "Decimal precision on journal entries" +msgstr "" + +#. module: account +#: selection:account.config.settings,period:0 +#: selection:account.installer,period:0 +msgid "3 Monthly" +msgstr "" + +#. module: account +#: field:ir.sequence,fiscal_ids:0 +msgid "Sequences" +msgstr "" + +#. module: account +#: field:account.financial.report,account_report_id:0 +#: selection:account.financial.report,type:0 +msgid "Report Value" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_validate_account_move.py:39 +#, python-format +msgid "" +"Specified journal does not have any account move entries in draft state for " +"this period." +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: view:account.fiscal.position.template:0 +msgid "Taxes Mapping" +msgstr "" + +#. module: account +#: report:account.central.journal:0 +msgid "Centralized Journal" +msgstr "" + +#. module: account +#: sql_constraint:account.sequence.fiscalyear:0 +msgid "Main Sequence must be different from current !" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_change_currency.py:64 +#: code:addons/account/wizard/account_change_currency.py:70 +#, python-format +msgid "Current currency is not configured properly." +msgstr "" + +#. module: account +#: field:account.journal,profit_account_id:0 +msgid "Profit Account" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1156 +#, python-format +msgid "No period found or more than one period found for the given date." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_report_account_type_sales +msgid "Report of the Sales by Account Type" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3201 +#, python-format +msgid "SAJ" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1591 +#, python-format +msgid "Cannot create move with currency different from .." +msgstr "" + +#. module: account +#: model:email.template,report_name:account.email_template_edi_invoice +msgid "" +"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " +"and 'draft' or ''}" +msgstr "" + +#. module: account +#: view:account.period:0 +#: view:account.period.close:0 +msgid "Close Period" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_common_partner_report +msgid "Account Common Partner Report" +msgstr "" + +#. module: account +#: field:account.fiscalyear.close,period_id:0 +msgid "Opening Entries Period" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_journal_period +msgid "Journal Period" +msgstr "" + +#. module: account +#: constraint:account.move:0 +msgid "" +"You cannot create more than one move per period on a centralized journal." +msgstr "" + +#. module: account +#: help:account.tax,account_analytic_paid_id:0 +msgid "" +"Set the analytic account that will be used by default on the invoice tax " +"lines for refunds. Leave empty if you don't want to use an analytic account " +"on the invoice tax lines by default." +msgstr "" + +#. module: account +#: view:account.account:0 +#: selection:account.aged.trial.balance,result_selection:0 +#: selection:account.common.partner.report,result_selection:0 +#: selection:account.partner.balance,result_selection:0 +#: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 +#: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 +#, python-format +msgid "Receivable Accounts" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Configure your company bank accounts" +msgstr "" + +#. module: account +#: view:account.invoice.refund:0 +msgid "Create Refund" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +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 "" + +#. module: account +#: model:ir.model,name:account.model_account_report_general_ledger +msgid "General Ledger Report" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Re-Open" +msgstr "" + +#. module: account +#: view:account.use.model:0 +msgid "Are you sure you want to create entries?" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:1361 +#, python-format +msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Print Invoice" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_invoice_refund.py:111 +#, python-format +msgid "" +"Cannot %s invoice which is already reconciled, invoice should be " +"unreconciled first. You can only refund this invoice." +msgstr "" + +#. module: account +#: selection:account.financial.report,display_detail:0 +msgid "Display children with hierarchy" +msgstr "" + +#. module: account +#: selection:account.payment.term.line,value:0 +#: selection:account.tax.template,type:0 +msgid "Percent" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_charts +msgid "Charts" +msgstr "" + +#. module: account +#: code:addons/account/project/wizard/project_account_analytic_line.py:47 +#: model:ir.model,name:account.model_project_account_analytic_line +#, python-format +msgid "Analytic Entries by line" +msgstr "" + +#. module: account +#: field:account.invoice.refund,filter_refund:0 +msgid "Refund Method" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_report +msgid "Financial Report" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: view:account.analytic.journal:0 +#: field:account.analytic.journal,type:0 +#: field:account.bank.statement.line,type:0 +#: field:account.financial.report,type:0 +#: field:account.invoice,type:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,type:0 +#: view:account.journal:0 +#: field:account.journal,type:0 +#: field:account.move.reconcile,type:0 +#: xsl:account.transfer:0 +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:826 +#, python-format +msgid "" +"Taxes are missing!\n" +"Click on compute button." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_subscription_line +msgid "Account Subscription Line" +msgstr "" + +#. module: account +#: help:account.invoice,reference:0 +msgid "The partner reference of this invoice." +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Supplier Invoices And Refunds" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:851 +#, python-format +msgid "Entry is already reconciled." +msgstr "" + +#. module: account +#: view:account.move.line.unreconcile.select:0 +#: view:account.unreconcile.reconcile:0 +#: model:ir.model,name:account.model_account_move_line_unreconcile_select +msgid "Unreconciliation" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_journal_report +msgid "Account Analytic Journal" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Send by Email" +msgstr "" + +#. module: account +#: help:account.central.journal,amount_currency:0 +#: help:account.common.journal.report,amount_currency:0 +#: help:account.general.journal,amount_currency:0 +#: help:account.print.journal,amount_currency:0 +msgid "" +"Print Report with the currency column if the currency differs from the " +"company currency." +msgstr "" + +#. module: account +#: report:account.analytic.account.quantity_cost_ledger:0 +msgid "J.C./Move name" +msgstr "" + +#. module: account +#: view:account.account:0 +msgid "Account Code and Name" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "September" +msgstr "" + +#. module: account +#: selection:account.subscription,period_type:0 +msgid "days" +msgstr "" + +#. module: account +#: help:account.account.template,nocreate:0 +msgid "" +"If checked, the new chart of accounts will not contain this by default." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_manual_reconcile +msgid "" +"

\n" +" No journal items found.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: code:addons/account/account.py:1677 +#, python-format +msgid "" +"You cannot unreconcile journal items if they has been generated by the " +" opening/closing fiscal " +"year process." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_subscription_form_new +msgid "New Subscription" +msgstr "" + +#. module: account +#: view:account.payment.term:0 +#: field:account.payment.term.line,value:0 +msgid "Computation" +msgstr "" + +#. module: account +#: field:account.journal.cashbox.line,pieces:0 +msgid "Values" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_tax_chart +#: model:ir.actions.act_window,name:account.action_tax_code_tree +#: model:ir.ui.menu,name:account.menu_action_tax_code_tree +msgid "Chart of Taxes" +msgstr "" + +#. module: account +#: view:account.fiscalyear:0 +msgid "Create 3 Months Periods" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Due" +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_journal_id:0 +msgid "Purchase journal" +msgstr "" + +#. module: account +#: model:mail.message.subtype,description:account.mt_invoice_paid +msgid "Invoice paid" +msgstr "" + +#. module: account +#: view:validate.account.move:0 +#: view:validate.account.move.lines:0 +msgid "Approve" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:account.move:0 +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: account +#: help:account.invoice,supplier_invoice_number:0 +msgid "The reference of this invoice as provided by the supplier." +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: selection:account.entries.report,type:0 +msgid "Consolidation" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_liability +#: model:account.financial.report,name:account.account_financial_report_liability0 +#: model:account.financial.report,name:account.account_financial_report_liabilitysum0 +msgid "Liability" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:899 +#, python-format +msgid "Please define sequence on the journal related to this invoice." +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Extended Filters..." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_central_journal +msgid "Centralizing Journal" +msgstr "" + +#. module: account +#: selection:account.journal,type:0 +msgid "Sale Refund" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_accountingstatemententries0 +msgid "Bank statement" +msgstr "" + +#. module: account +#: field:account.analytic.line,move_id:0 +msgid "Move Line" +msgstr "" + +#. module: account +#: help:account.move.line,tax_amount:0 +msgid "" +"If the Tax account is a tax code account, this field will contain the taxed " +"amount.If the tax account is base tax code, this field will contain the " +"basic amount(without tax)." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Purchases" +msgstr "" + +#. module: account +#: field:account.model,lines_id:0 +msgid "Model Entries" +msgstr "" + +#. module: account +#: field:account.account,code:0 +#: report:account.account.balance:0 +#: field:account.account.template,code:0 +#: field:account.account.type,code:0 +#: report:account.analytic.account.balance:0 +#: report:account.analytic.account.inverted.balance:0 +#: report:account.analytic.account.journal:0 +#: field:account.analytic.line,code:0 +#: field:account.fiscalyear,code:0 +#: report:account.general.journal:0 +#: field:account.journal,code:0 +#: report:account.partner.balance:0 +#: field:account.period,code:0 +msgid "Code" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Features" +msgstr "" + +#. module: account +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 +#: code:addons/account/account_move_line.py:195 +#, python-format +msgid "No Analytic Journal !" +msgstr "" + +#. module: account +#: report:account.partner.balance:0 +#: model:ir.actions.act_window,name:account.action_account_partner_balance +#: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance +#: model:ir.ui.menu,name:account.menu_account_partner_balance_report +msgid "Partner Balance" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_gain_loss +msgid "" +"

\n" +" Click to add an account.\n" +"

\n" +" When doing multi-currency transactions, you may loose or " +"gain\n" +" some amount due to changes of exchange rate. This menu " +"gives\n" +" you a forecast of the Gain or Loss you'd realized if those\n" +" transactions were ended today. Only for accounts having a\n" +" secondary currency set.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: field:account.bank.accounts.wizard,acc_name:0 +msgid "Account Name." +msgstr "" + +#. module: account +#: field:account.journal,with_last_closing_balance:0 +msgid "Opening With Last Closing Balance" +msgstr "" + +#. module: account +#: help:account.tax.code,notprintable:0 +msgid "" +"Check this box if you don't want any tax related to this tax code to appear " +"on invoices" +msgstr "" + +#. module: account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: account +#: field:account.report.general.ledger,landscape:0 +msgid "Landscape Mode" +msgstr "" + +#. module: account +#: help:account.fiscalyear.close,fy_id:0 +msgid "Select a Fiscal year to close" +msgstr "" + +#. module: account +#: help:account.account.template,user_type:0 +msgid "" +"These types are defined according to your country. The type contains more " +"information about the account and its specificities." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Refund " +msgstr "" + +#. module: account +#: code:addons/account/account_analytic_line.py:90 +#, python-format +msgid "There is no expense account defined for this product: \"%s\" (id:%d)." +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Applicability Options" +msgstr "" + +#. module: account +#: report:account.partner.balance:0 +msgid "In dispute" +msgstr "" + +#. module: account +#: view:account.journal:0 +#: model:ir.actions.act_window,name:account.action_view_bank_statement_tree +#: model:ir.ui.menu,name:account.journal_cash_move_lines +msgid "Cash Registers" +msgstr "" + +#. module: account +#: field:account.config.settings,sale_refund_journal_id:0 +msgid "Sale refund journal" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_view_bank_statement_tree +msgid "" +"

\n" +" Click to create a new cash log.\n" +"

\n" +" A Cash Register allows you to manage cash entries in your " +"cash\n" +" journals. This feature provides an easy way to follow up " +"cash\n" +" payments on a daily basis. You can enter the coins that are " +"in\n" +" your cash box, and then post entries when money comes in or\n" +" goes out of the cash box.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_bank +#: selection:account.bank.accounts.wizard,account_type:0 +#: code:addons/account/account.py:3092 +#, python-format +msgid "Bank" +msgstr "" + +#. module: account +#: field:account.period,date_start:0 +msgid "Start of Period" +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Refunds" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 +msgid "Confirm statement" +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Account Tax" +msgstr "" + +#. module: account +#: help:account.account,foreign_balance:0 +msgid "" +"Total amount (in Secondary currency) for transactions held in secondary " +"currency for this account." +msgstr "" + +#. module: account +#: field:account.fiscal.position.tax,tax_dest_id:0 +#: field:account.fiscal.position.tax.template,tax_dest_id:0 +msgid "Replacement Tax" +msgstr "" + +#. module: account +#: selection:account.move.line,centralisation:0 +msgid "Credit Centralisation" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_tax_code_template_form +#: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form +msgid "Tax Code Templates" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +msgid "" +"The amount expressed in the secondary currency must be positif when journal " +"item are debit and negatif when journal item are credit." +msgstr "" + +#. module: account +#: view:account.invoice.cancel:0 +msgid "Cancel Invoices" +msgstr "" + +#. module: account +#: help:account.journal,code:0 +msgid "The code will be displayed on reports." +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Taxes used in Purchases" +msgstr "" + +#. module: account +#: field:account.invoice.tax,tax_code_id:0 +#: field:account.tax,description:0 +#: view:account.tax.code:0 +#: field:account.tax.template,tax_code_id:0 +#: model:ir.model,name:account.model_account_tax_code +msgid "Tax Code" +msgstr "" + +#. module: account +#: field:account.account,currency_mode:0 +msgid "Outgoing Currencies Rate" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: field:account.config.settings,chart_template_id:0 +msgid "Template" +msgstr "" + +#. module: account +#: selection:account.analytic.journal,type:0 +msgid "Situation" +msgstr "" + +#. module: account +#: help:account.move.line,move_id:0 +msgid "The move of this entry line." +msgstr "" + +#. module: account +#: field:account.move.line.reconcile,trans_nbr:0 +msgid "# of Transaction" +msgstr "" + +#. module: account +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +msgid "Entry Label" +msgstr "" + +#. module: account +#: help:account.invoice,origin:0 +#: help:account.invoice.line,origin:0 +msgid "Reference of the document that produced this invoice." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: view:account.journal:0 +msgid "Others" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Draft Subscription" +msgstr "" + +#. module: account +#: view:account.account:0 +#: report:account.account.balance:0 +#: field:account.automatic.reconcile,writeoff_acc_id:0 +#: field:account.bank.statement.line,account_id:0 +#: view:account.entries.report:0 +#: field:account.entries.report,account_id:0 +#: field:account.invoice,account_id:0 +#: field:account.invoice.line,account_id:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,account_id:0 +#: field:account.journal,account_control_ids:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.model.line,account_id:0 +#: view:account.move.line:0 +#: field:account.move.line,account_id:0 +#: field:account.move.line.reconcile.select,account_id:0 +#: field:account.move.line.unreconcile.select,account_id:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,account_id:0 +#: model:ir.model,name:account.model_account_account +#: field:report.account.sales,account_id:0 +msgid "Account" +msgstr "" + +#. module: account +#: field:account.tax,include_base_amount:0 +msgid "Included in base amount" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +#: model:ir.actions.act_window,name:account.action_account_entries_report_all +#: model:ir.ui.menu,name:account.menu_action_account_entries_report_all +msgid "Entries Analysis" +msgstr "" + +#. module: account +#: field:account.account,level:0 +#: field:account.financial.report,level:0 +msgid "Level" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_change_currency.py:38 +#, python-format +msgid "You can only change currency for Draft Invoice." +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +#: field:account.invoice.line,invoice_line_tax_id:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: model:ir.actions.act_window,name:account.action_tax_form +#: model:ir.ui.menu,name:account.account_template_taxes +#: model:ir.ui.menu,name:account.menu_action_tax_form +#: model:ir.ui.menu,name:account.menu_tax_report +#: model:ir.ui.menu,name:account.next_id_27 +msgid "Taxes" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_financial_report.py:70 +#, python-format +msgid "Select a starting and an ending period" +msgstr "" + +#. module: account +#: model:account.financial.report,name:account.account_financial_report_profitandloss0 +#: model:ir.actions.act_window,name:account.action_account_report_pl +msgid "Profit and Loss" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_account_template +msgid "Templates for Accounts" +msgstr "" + +#. module: account +#: view:account.tax.code.template:0 +msgid "Search tax template" +msgstr "" + +#. module: account +#: view:account.move.reconcile:0 +#: model:ir.actions.act_window,name:account.action_account_reconcile_select +#: model:ir.actions.act_window,name:account.action_view_account_move_line_reconcile +msgid "Reconcile Entries" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_overdue +#: view:res.company:0 +msgid "Overdue Payments" +msgstr "" + +#. module: account +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +msgid "Initial Balance" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Reset to Draft" +msgstr "" + +#. module: account +#: view:account.aged.trial.balance:0 +#: view:account.common.report:0 +msgid "Report Options" +msgstr "" + +#. module: account +#: field:account.fiscalyear.close.state,fy_id:0 +msgid "Fiscal Year to Close" +msgstr "" + +#. module: account +#: field:account.config.settings,sale_sequence_prefix:0 +msgid "Invoice sequence" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_entries_report +msgid "Journal Items Analysis" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.next_id_22 +msgid "Partners" +msgstr "" + +#. module: account +#: help:account.bank.statement,state:0 +msgid "" +"When new statement is created the status will be 'Draft'.\n" +"And after getting confirmation from the bank it will be in 'Confirmed' " +"status." +msgstr "" + +#. module: account +#: field:account.invoice.report,state:0 +msgid "Invoice Status" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: model:ir.model,name:account.model_account_bank_statement +#: model:process.node,name:account.process_node_accountingstatemententries0 +#: model:process.node,name:account.process_node_bankstatement0 +#: model:process.node,name:account.process_node_supplierbankstatement0 +msgid "Bank Statement" +msgstr "" + +#. module: account +#: field:res.partner,property_account_receivable:0 +msgid "Account Receivable" +msgstr "" + +#. module: account +#: code:addons/account/account.py:612 +#: code:addons/account/account.py:767 +#: code:addons/account/account.py:768 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: selection:account.balance.report,display_account:0 +#: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 +#: selection:account.partner.balance,display_partner:0 +#: selection:account.report.general.ledger,display_account:0 +msgid "With balance is not equal to 0" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1483 +#, python-format +msgid "" +"There is no default debit account defined \n" +"on journal \"%s\"." +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Search Taxes" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_cost_ledger +msgid "Account Analytic Cost Ledger" +msgstr "" + +#. module: account +#: view:account.model:0 +msgid "Create entries" +msgstr "" + +#. module: account +#: field:account.entries.report,nbr:0 +msgid "# of Items" +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,max_amount:0 +msgid "Maximum write-off amount" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/xml/account_move_reconciliation.xml:10 +#, python-format +msgid "" +"There is nothing to reconcile. All invoices and payments\n" +" have been reconciled, your partner balance is clean." +msgstr "" + +#. module: account +#: field:account.chart.template,code_digits:0 +#: field:account.config.settings,code_digits:0 +#: field:wizard.multi.charts.accounts,code_digits:0 +msgid "# of Digits" +msgstr "" + +#. module: account +#: field:account.journal,entry_posted:0 +msgid "Skip 'Draft' State for Manual Entries" +msgstr "" + +#. module: account +#: code:addons/account/report/common_report_header.py:92 +#: code:addons/account/wizard/account_report_common.py:164 +#, python-format +msgid "Not implemented." +msgstr "" + +#. module: account +#: view:account.invoice.refund:0 +msgid "Credit Note" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "eInvoicing & Payments" +msgstr "" + +#. module: account +#: view:account.analytic.cost.ledger.journal.report:0 +msgid "Cost Ledger for Period" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "# of Entries " +msgstr "" + +#. module: account +#: help:account.fiscal.position,active:0 +msgid "" +"By unchecking the active field, you may hide a fiscal position without " +"deleting it." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_temp_range +msgid "A Temporary table used for Dashboard view" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree4 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree4 +msgid "Supplier Refunds" +msgstr "" + +#. module: account +#: field:account.tax.code,code:0 +#: field:account.tax.code.template,code:0 +msgid "Case Code" +msgstr "" + +#. module: account +#: field:account.config.settings,company_footer:0 +msgid "Bank accounts footer preview" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: selection:account.bank.statement,state:0 +#: selection:account.entries.report,type:0 +#: view:account.fiscalyear:0 +#: selection:account.fiscalyear,state:0 +#: selection:account.period,state:0 +msgid "Closed" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_recurrent_entries +msgid "Recurring Entries" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_template +msgid "Template for Fiscal Position" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Recurring" +msgstr "" + +#. module: account +#: field:account.journal,groups_id:0 +msgid "Groups" +msgstr "" + +#. module: account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Advanced Settings" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Search Bank Statements" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Unposted Journal Items" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +#: field:account.chart.template,property_account_payable:0 +msgid "Payable Account" +msgstr "" + +#. module: account +#: field:account.tax,account_paid_id:0 +#: field:account.tax.template,account_paid_id:0 +msgid "Refund Tax Account" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_ir_sequence +msgid "ir.sequence" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement,line_ids:0 +msgid "Statement lines" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +msgid "Date/Code" +msgstr "" + +#. module: account +#: field:account.analytic.line,general_account_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: account +#: field:res.partner,debit_limit:0 +msgid "Payable Limit" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_type_form +msgid "" +"

\n" +" Click to define a new account type.\n" +"

\n" +" An account type is used to determine how an account is used " +"in\n" +" each journal. The deferral method of an account type " +"determines\n" +" the process for the annual closing. Reports such as the " +"Balance\n" +" Sheet and the Profit and Loss report use the category\n" +" (profit/loss or balance sheet).\n" +"

\n" +" " +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 +#: model:ir.model,name:account.model_account_invoice +#: model:res.request.link,name:account.req_link_invoice +#, python-format +msgid "Invoice" +msgstr "" + +#. module: account +#: field:account.move,balance:0 +msgid "balance" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_analytic0 +#: model:process.node,note:account.process_node_analyticcost0 +msgid "Analytic costs to invoice" +msgstr "" + +#. module: account +#: view:ir.sequence:0 +msgid "Fiscal Year Sequence" +msgstr "" + +#. module: account +#: field:account.config.settings,group_analytic_accounting:0 +msgid "Analytic accounting" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Sub-Total :" +msgstr "" + +#. module: account +#: help:res.company,tax_calculation_rounding_method:0 +msgid "" +"If you select 'Round per Line' : for each tax, the tax amount will first be " +"computed and rounded for each PO/SO/invoice line and then these rounded " +"amounts will be summed, leading to the total amount for that tax. If you " +"select 'Round Globally': for each tax, the tax amount will be computed for " +"each PO/SO/invoice line, then these amounts will be summed and eventually " +"this total tax amount will be rounded. If you sell with tax included, you " +"should choose 'Round per line' because you certainly want the sum of your " +"tax-included line subtotals to be equal to the total amount with taxes." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all +#: view:report.account_type.sales:0 +msgid "Sales by Account Type" +msgstr "" + +#. module: account +#: model:account.payment.term,name:account.account_payment_term_15days +#: model:account.payment.term,note:account.account_payment_term_15days +msgid "15 Days" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.periodical_processing_invoicing +msgid "Invoicing" +msgstr "" + +#. module: account +#: code:addons/account/report/account_partner_balance.py:115 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:103 +#, python-format +msgid "" +"The journal must have centralized counterpart without the Skipping draft " +"state option checked." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:854 +#, python-format +msgid "Some entries are already reconciled." +msgstr "" + +#. module: account +#: field:account.tax.code,sum:0 +msgid "Year Sum" +msgstr "" + +#. module: account +#: view:account.change.currency:0 +msgid "This wizard will change the currency of the invoice" +msgstr "" + +#. module: account +#: view:account.installer:0 +msgid "" +"Select a configuration package to setup automatically your\n" +" taxes and chart of accounts." +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Pending Accounts" +msgstr "" + +#. module: account +#: view:account.open.closed.fiscalyear:0 +msgid "Cancel Fiscal Year Opening Entries" +msgstr "" + +#. module: account +#: report:account.journal.period.print.sale.purchase:0 +#: view:account.tax.template:0 +msgid "Tax Declaration" +msgstr "" + +#. module: account +#: help:account.journal.period,active:0 +msgid "" +"If the active field is set to False, it will allow you to hide the journal " +"period without removing it." +msgstr "" + +#. module: account +#: field:account.report.general.ledger,sortby:0 +msgid "Sort by" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_partner_account_move_all +msgid "Receivables & Payables" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_payment:0 +msgid "Manage payment orders" +msgstr "" + +#. module: account +#: view:account.period:0 +msgid "Duration" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement,last_closing_balance:0 +msgid "Last Closing Balance" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_common_journal_report +msgid "Account Common Journal Report" +msgstr "" + +#. module: account +#: selection:account.partner.balance,display_partner:0 +msgid "All Partners" +msgstr "" + +#. module: account +#: view:account.analytic.chart:0 +msgid "Analytic Account Charts" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Customer Ref:" +msgstr "" + +#. module: account +#: help:account.tax,base_code_id:0 +#: help:account.tax,ref_base_code_id:0 +#: help:account.tax,ref_tax_code_id:0 +#: help:account.tax,tax_code_id:0 +#: help:account.tax.template,base_code_id:0 +#: help:account.tax.template,ref_base_code_id:0 +#: help:account.tax.template,ref_tax_code_id:0 +#: help:account.tax.template,tax_code_id:0 +msgid "Use this code for the tax declaration." +msgstr "" + +#. module: account +#: help:account.period,special:0 +msgid "These periods can overlap." +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_draftstatement0 +msgid "Draft statement" +msgstr "" + +#. module: account +#: model:mail.message.subtype,description:account.mt_invoice_validated +msgid "Invoice validated" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_check_writing:0 +msgid "Pay your suppliers by check" +msgstr "" + +#. module: account +#: field:account.move.line.reconcile,credit:0 +msgid "Credit amount" +msgstr "" + +#. module: account +#: field:account.bank.statement,message_ids:0 +#: field:account.invoice,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: account +#: view:account.vat.declaration:0 +msgid "" +"This menu prints a tax declaration based on invoices or payments. Select one " +"or several periods of the fiscal year. The information required for a tax " +"declaration is automatically generated by OpenERP from invoices (or " +"payments, in some countries). This data is updated in real time. That’s very " +"useful because it enables you to preview at any time the tax that you owe at " +"the start and end of the month or quarter." +msgstr "" + +#. module: account +#: code:addons/account/account.py:409 +#: code:addons/account/account.py:414 +#: code:addons/account/account.py:431 +#: code:addons/account/account.py:634 +#: code:addons/account/account.py:636 +#: code:addons/account/account.py:930 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 +#: code:addons/account/account_analytic_line.py:89 +#: code:addons/account/account_analytic_line.py:98 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_cash_statement.py:256 +#: code:addons/account/account_cash_statement.py:300 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 +#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 +#: code:addons/account/report/common_report_header.py:92 +#: code:addons/account/wizard/account_change_currency.py:38 +#: code:addons/account/wizard/account_change_currency.py:59 +#: code:addons/account/wizard/account_change_currency.py:64 +#: code:addons/account/wizard/account_change_currency.py:70 +#: code:addons/account/wizard/account_financial_report.py:70 +#: code:addons/account/wizard/account_invoice_refund.py:109 +#: code:addons/account/wizard/account_invoice_refund.py:111 +#: code:addons/account/wizard/account_move_bank_reconcile.py:49 +#: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 +#: code:addons/account/wizard/account_report_common.py:158 +#: code:addons/account/wizard/account_report_common.py:164 +#: code:addons/account/wizard/account_use_model.py:44 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 +#, python-format +msgid "Error!" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_invoice_tree2 +msgid "" +"

\n" +" Click to record a new supplier invoice.\n" +"

\n" +" You can control the invoice from your supplier according to\n" +" what you purchased or received. OpenERP can also generate\n" +" draft invoices automatically from purchase orders or " +"receipts.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: sql_constraint:account.move.line:0 +msgid "Wrong credit or debit value in accounting entry !" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: model:ir.actions.act_window,name:account.action_account_invoice_report_all +#: model:ir.ui.menu,name:account.menu_action_account_invoice_report_all +msgid "Invoices Analysis" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_mail_compose_message +msgid "Email composition wizard" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_period_close +msgid "period close" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1058 +#, python-format +msgid "" +"This journal already contains items for this period, therefore you cannot " +"modify its company field." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form +msgid "Entries By Line" +msgstr "" + +#. module: account +#: field:account.vat.declaration,based_on:0 +msgid "Based on" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_bank_statement_tree +msgid "" +"

\n" +" Click to register a bank statement.\n" +"

\n" +" A bank statement is a summary of all financial transactions\n" +" occurring over a given period of time on a bank account. " +"You\n" +" should receive this periodicaly from your bank.\n" +"

\n" +" OpenERP allows you to reconcile a statement line directly " +"with\n" +" the related sale or puchase invoices.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: field:account.config.settings,currency_id:0 +msgid "Default company currency" +msgstr "" + +#. module: account +#: field:account.invoice,move_id:0 +#: field:account.invoice,move_name:0 +#: field:account.move.line,move_id:0 +msgid "Journal Entry" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Unpaid" +msgstr "" + +#. module: account +#: view:account.treasury.report:0 +#: model:ir.actions.act_window,name:account.action_account_treasury_report_all +#: model:ir.model,name:account.model_account_treasury_report +#: model:ir.ui.menu,name:account.menu_action_account_treasury_report_all +msgid "Treasury Analysis" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_journal_sale_purchase +msgid "Sale/Purchase Journal" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: field:account.invoice.tax,account_analytic_id:0 +msgid "Analytic account" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:406 +#, python-format +msgid "Please verify that an account is defined in the journal." +msgstr "" + +#. module: account +#: selection:account.entries.report,move_line_state:0 +msgid "Valid" +msgstr "" + +#. module: account +#: field:account.bank.statement,message_follower_ids:0 +#: field:account.invoice,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_print_journal +#: model:ir.model,name:account.model_account_print_journal +msgid "Account Print Journal" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_product_category +msgid "Product Category" +msgstr "" + +#. module: account +#: code:addons/account/account.py:656 +#, python-format +msgid "" +"You cannot change the type of account to '%s' type as it contains journal " +"items!" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_aged_trial_balance +msgid "Account Aged Trial balance Report" +msgstr "" + +#. module: account +#: view:account.fiscalyear.close.state:0 +msgid "Close Fiscal Year" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 +#, python-format +msgid "Journal :" +msgstr "" + +#. module: account +#: sql_constraint:account.fiscal.position.tax:0 +msgid "A tax fiscal position could be defined only once time on same taxes." +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Tax Definition" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +#: model:ir.actions.act_window,name:account.action_account_config +msgid "Configure Accounting" +msgstr "" + +#. module: account +#: field:account.invoice.report,uom_name:0 +msgid "Reference Unit of Measure" +msgstr "" + +#. module: account +#: help:account.journal,allow_date:0 +msgid "" +"If set to True then do not accept the entry if the entry date is not into " +"the period dates" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 +#, python-format +msgid "Good job!" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_asset:0 +msgid "Assets management" +msgstr "" + +#. module: account +#: view:account.account:0 +#: view:account.account.template:0 +#: selection:account.aged.trial.balance,result_selection:0 +#: selection:account.common.partner.report,result_selection:0 +#: selection:account.partner.balance,result_selection:0 +#: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 +#: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 +#, python-format +msgid "Payable Accounts" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +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 "" + +#. module: account +#: view:account.invoice:0 +#: view:report.invoice.created:0 +msgid "Untaxed Amount" +msgstr "" + +#. module: account +#: help:account.tax,active:0 +msgid "" +"If the active field is set to False, it will allow you to hide the tax " +"without removing it." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Analytic Journal Items related to a sale journal." +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Italic Text (smaller)" +msgstr "" + +#. module: account +#: help:account.journal,cash_control:0 +msgid "" +"If you want the journal should be control at opening/closing, check this " +"option" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: view:account.invoice:0 +#: selection:account.invoice,state:0 +#: view:account.invoice.report:0 +#: selection:account.invoice.report,state:0 +#: selection:account.journal.period,state:0 +#: view:account.subscription:0 +#: selection:account.subscription,state:0 +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: account +#: field:account.move.reconcile,line_partial_ids:0 +msgid "Partial Entry lines" +msgstr "" + +#. module: account +#: view:account.fiscalyear:0 +#: field:account.treasury.report,fiscalyear_id:0 +msgid "Fiscalyear" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_move_bank_reconcile.py:53 +#, python-format +msgid "Standard Encoding" +msgstr "" + +#. module: account +#: view:account.journal.select:0 +#: view:project.account.analytic.line:0 +msgid "Open Entries" +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_refund_sequence_next:0 +msgid "Next supplier credit note number" +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,account_ids:0 +msgid "Accounts to Reconcile" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_filestatement0 +msgid "Import of the statement in the system from an electronic file" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_importinvoice0 +msgid "Import from invoice" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "January" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "This F.Year" +msgstr "" + +#. module: account +#: view:account.tax.chart:0 +msgid "Account tax charts" +msgstr "" + +#. module: account +#: model:account.payment.term,name:account.account_payment_term_net +#: model:account.payment.term,note:account.account_payment_term_net +msgid "30 Net Days" +msgstr "" + +#. module: account +#: code:addons/account/account_cash_statement.py:256 +#, python-format +msgid "You do not have rights to open this %s journal !" +msgstr "" + +#. module: account +#: model:res.groups,name:account.group_supplier_inv_check_total +msgid "Check Total on supplier invoices" +msgstr "" + +#. module: account +#: selection:account.invoice,state:0 +#: view:account.invoice.report:0 +#: selection:account.invoice.report,state:0 +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account +#: help:account.account.template,type:0 +#: help:account.entries.report,type:0 +msgid "" +"This type is used to differentiate types with special effects in OpenERP: " +"view can not have entries, consolidation are accounts that can have children " +"accounts for multi-company consolidations, payable/receivable are for " +"partners accounts (for debit/credit computations), closed for depreciated " +"accounts." +msgstr "" + +#. module: account +#: view:account.chart.template:0 +msgid "Search Chart of Account Templates" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Customer Code" +msgstr "" + +#. module: account +#: view:account.account.type:0 +#: field:account.account.type,note:0 +#: report:account.invoice:0 +#: field:account.invoice,name:0 +#: field:account.invoice.line,name:0 +#: report:account.overdue:0 +#: field:account.payment.term,note:0 +#: view:account.tax.code:0 +#: field:account.tax.code,info:0 +#: view:account.tax.code.template:0 +#: field:account.tax.code.template,info:0 +#: field:analytic.entries.report,name:0 +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: account +#: field:account.tax,price_include:0 +#: field:account.tax.template,price_include:0 +msgid "Tax Included in Price" +msgstr "" + +#. module: account +#: view:account.subscription:0 +#: selection:account.subscription,state:0 +msgid "Running" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +#: field:product.category,property_account_income_categ:0 +#: field:product.template,property_account_income:0 +msgid "Income Account" +msgstr "" + +#. module: account +#: help:account.config.settings,default_sale_tax:0 +msgid "This sale tax will be assigned by default on new products." +msgstr "" + +#. module: account +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +msgid "Entries Sorted By" +msgstr "" + +#. module: account +#: field:account.change.currency,currency_id:0 +msgid "Change to" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "# of Products Qty " +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_product_template +msgid "Product Template" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,fiscalyear_id:0 +#: field:account.balance.report,fiscalyear_id:0 +#: report:account.central.journal:0 +#: field:account.central.journal,fiscalyear_id:0 +#: field:account.common.account.report,fiscalyear_id:0 +#: field:account.common.journal.report,fiscalyear_id:0 +#: field:account.common.partner.report,fiscalyear_id:0 +#: field:account.common.report,fiscalyear_id:0 +#: view:account.config.settings:0 +#: view:account.entries.report:0 +#: field:account.entries.report,fiscalyear_id:0 +#: view:account.fiscalyear:0 +#: field:account.fiscalyear,name:0 +#: report:account.general.journal:0 +#: field:account.general.journal,fiscalyear_id:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: field:account.journal.period,fiscalyear_id:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.open.closed.fiscalyear,fyear_id:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,fiscalyear_id:0 +#: field:account.partner.ledger,fiscalyear_id:0 +#: field:account.period,fiscalyear_id:0 +#: field:account.print.journal,fiscalyear_id:0 +#: field:account.report.general.ledger,fiscalyear_id:0 +#: field:account.sequence.fiscalyear,fiscalyear_id:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: report:account.vat.declaration:0 +#: field:account.vat.declaration,fiscalyear_id:0 +#: field:accounting.report,fiscalyear_id:0 +#: field:accounting.report,fiscalyear_id_cmp:0 +#: model:ir.model,name:account.model_account_fiscalyear +msgid "Fiscal Year" +msgstr "" + +#. module: account +#: help:account.aged.trial.balance,fiscalyear_id:0 +#: help:account.balance.report,fiscalyear_id:0 +#: help:account.central.journal,fiscalyear_id:0 +#: help:account.common.account.report,fiscalyear_id:0 +#: help:account.common.journal.report,fiscalyear_id:0 +#: help:account.common.partner.report,fiscalyear_id:0 +#: help:account.common.report,fiscalyear_id:0 +#: help:account.general.journal,fiscalyear_id:0 +#: help:account.partner.balance,fiscalyear_id:0 +#: help:account.partner.ledger,fiscalyear_id:0 +#: help:account.print.journal,fiscalyear_id:0 +#: help:account.report.general.ledger,fiscalyear_id:0 +#: help:account.vat.declaration,fiscalyear_id:0 +#: help:accounting.report,fiscalyear_id:0 +#: help:accounting.report,fiscalyear_id_cmp:0 +msgid "Keep empty for all open fiscal year" +msgstr "" + +#. module: account +#: code:addons/account/account.py:653 +#, python-format +msgid "" +"You cannot change the type of account from 'Closed' to any other type as it " +"contains journal items!" +msgstr "" + +#. module: account +#: field:account.invoice.report,account_line_id:0 +msgid "Account Line" +msgstr "" + +#. module: account +#: view:account.addtmpl.wizard:0 +msgid "Create an Account Based on this Template" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:933 +#, python-format +msgid "" +"Cannot create the invoice.\n" +"The related payment term is probably misconfigured as it gives a computed " +"amount greater than the total invoiced amount. In order to avoid rounding " +"issues, the latest line of your payment term must be of type 'balance'." +msgstr "" + +#. module: account +#: view:account.move:0 +#: model:ir.model,name:account.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account +#: field:account.sequence.fiscalyear,sequence_main_id:0 +msgid "Main Sequence" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:478 +#, python-format +msgid "" +"In order to delete a bank statement, you must first cancel it to delete " +"related journal items." +msgstr "" + +#. module: account +#: field:account.invoice.report,payment_term:0 +#: view:account.payment.term:0 +#: field:account.payment.term,name:0 +#: view:account.payment.term.line:0 +#: field:account.payment.term.line,payment_id:0 +#: model:ir.model,name:account.model_account_payment_term +msgid "Payment Term" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscal_position_form +#: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form +msgid "Fiscal Positions" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:579 +#, python-format +msgid "You cannot create journal items on a closed account %s %s." +msgstr "" + +#. module: account +#: field:account.period.close,sure:0 +msgid "Check this box" +msgstr "" + +#. module: account +#: view:account.common.report:0 +msgid "Filters" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_draftinvoices0 +#: model:process.node,note:account.process_node_supplierdraftinvoices0 +msgid "Draft state of an invoice" +msgstr "" + +#. module: account +#: view:product.category:0 +msgid "Account Properties" +msgstr "" + +#. module: account +#: selection:account.invoice.refund,filter_refund:0 +msgid "Create a draft refund" +msgstr "" + +#. module: account +#: view:account.partner.reconcile.process:0 +msgid "Partner Reconciliation" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Fin. Account" +msgstr "" + +#. module: account +#: field:account.tax,tax_code_id:0 +#: view:account.tax.code:0 +msgid "Account Tax Code" +msgstr "" + +#. module: account +#: model:account.payment.term,name:account.account_payment_term_advance +#: model:account.payment.term,note:account.account_payment_term_advance +msgid "30% Advance End 30 Days" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Unreconciled entries" +msgstr "" + +#. module: account +#: field:account.invoice.tax,base_code_id:0 +#: field:account.tax.template,base_code_id:0 +msgid "Base Code" +msgstr "" + +#. module: account +#: help:account.invoice.tax,sequence:0 +msgid "Gives the sequence order when displaying a list of invoice tax." +msgstr "" + +#. module: account +#: field:account.tax,base_sign:0 +#: field:account.tax,ref_base_sign:0 +#: field:account.tax.template,base_sign:0 +#: field:account.tax.template,ref_base_sign:0 +msgid "Base Code Sign" +msgstr "" + +#. module: account +#: selection:account.move.line,centralisation:0 +msgid "Debit Centralisation" +msgstr "" + +#. module: account +#: view:account.invoice.confirm:0 +#: model:ir.actions.act_window,name:account.action_account_invoice_confirm +msgid "Confirm Draft Invoices" +msgstr "" + +#. module: account +#: field:account.entries.report,day:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,day:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,day:0 +msgid "Day" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_renew_view +msgid "Accounts to Renew" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_model_line +msgid "Account Model Entries" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3202 +#, python-format +msgid "EXJ" +msgstr "" + +#. module: account +#: field:product.template,supplier_taxes_id:0 +msgid "Supplier Taxes" +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "Bank Details" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_move_journal_line +msgid "" +"

\n" +" Click to create a journal entry.\n" +"

\n" +" A journal entry consists of several journal items, each of\n" +" which is either a debit or a credit transaction.\n" +"

\n" +" OpenERP automatically creates one journal entry per " +"accounting\n" +" document: invoice, refund, supplier payment, bank " +"statements,\n" +" etc. So, you should record journal entries manually " +"only/mainly\n" +" for miscellaneous operations.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: help:account.invoice,payment_term:0 +msgid "" +"If you use payment terms, the due date will be computed automatically at the " +"generation of accounting entries. If you keep the payment term and the due " +"date empty, it means direct payment. The payment term may compute several " +"due dates, for example 50% now, 50% in one month." +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_sequence_next:0 +msgid "Next supplier invoice number" +msgstr "" + +#. module: account +#: view:account.analytic.cost.ledger.journal.report:0 +msgid "Select period" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_pp_statements +msgid "Statements" +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +msgid "Move Name" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_move_line_reconcile_writeoff +msgid "Account move line reconcile (writeoff)" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.conf_account_type_tax +#: report:account.invoice:0 +#: field:account.invoice,amount_tax:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.move.line,account_tax_id:0 +#: view:account.tax:0 +#: model:ir.model,name:account.model_account_tax +msgid "Tax" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: view:account.analytic.line:0 +#: field:account.bank.statement.line,analytic_account_id:0 +#: field:account.entries.report,analytic_account_id:0 +#: field:account.invoice.line,account_analytic_id:0 +#: field:account.model.line,analytic_account_id:0 +#: field:account.move.line,analytic_account_id:0 +#: field:account.move.line.reconcile.writeoff,analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account +#: field:account.config.settings,default_purchase_tax:0 +#: field:account.config.settings,purchase_tax:0 +msgid "Default purchase tax" +msgstr "" + +#. module: account +#: view:account.account:0 +#: field:account.financial.report,account_ids:0 +#: selection:account.financial.report,type:0 +#: view:account.journal:0 +#: model:ir.actions.act_window,name:account.action_account_form +#: model:ir.ui.menu,name:account.account_account_menu +#: model:ir.ui.menu,name:account.account_template_accounts +#: model:ir.ui.menu,name:account.menu_action_account_form +#: model:ir.ui.menu,name:account.menu_analytic +msgid "Accounts" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 +#, python-format +msgid "Configuration Error!" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:434 +#, python-format +msgid "Statement %s confirmed, journal items were created." +msgstr "" + +#. module: account +#: field:account.invoice.report,price_average:0 +#: field:account.invoice.report,user_currency_price_average:0 +msgid "Average Price" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Date:" +msgstr "" + +#. module: account +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +msgid "Label" +msgstr "" + +#. module: account +#: view:res.partner.bank:0 +msgid "Accounting Information" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Special Computation" +msgstr "" + +#. module: account +#: view:account.move.bank.reconcile:0 +#: model:ir.actions.act_window,name:account.action_account_bank_reconcile_tree +msgid "Bank reconciliation" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Disc.(%)" +msgstr "" + +#. module: account +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.overdue:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +msgid "Ref" +msgstr "" + +#. module: account +#: view:wizard.multi.charts.accounts:0 +msgid "Purchase Tax" +msgstr "" + +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or a tax code account." +msgstr "" + +#. module: account +#: sql_constraint:account.model.line:0 +msgid "Wrong credit or debit value in model, they must be positive!" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_reconciliation0 +#: model:process.node,note:account.process_node_supplierreconciliation0 +msgid "Comparison between accounting and payment entries" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_automatic_reconcile +msgid "Automatic Reconciliation" +msgstr "" + +#. module: account +#: field:account.invoice,reconciled:0 +msgid "Paid/Reconciled" +msgstr "" + +#. module: account +#: field:account.tax,ref_base_code_id:0 +#: field:account.tax.template,ref_base_code_id:0 +msgid "Refund Base Code" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_statement_tree +#: model:ir.ui.menu,name:account.menu_bank_statement_tree +msgid "Bank Statements" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_fiscalyear +msgid "" +"

\n" +" Click to start a new fiscal year.\n" +"

\n" +" Define your company's financial year according to your " +"needs. A\n" +" financial year is a period at the end of which a company's\n" +" accounts are made up (usually 12 months). The financial year " +"is\n" +" usually referred to by the date in which it ends. For " +"example,\n" +" if a company's financial year ends November 30, 2011, then\n" +" everything between December 1, 2010 and November 30, 2011\n" +" would be referred to as FY 2011.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: view:account.common.report:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: view:accounting.report:0 +msgid "Dates" +msgstr "" + +#. module: account +#: field:account.chart.template,parent_id:0 +msgid "Parent Chart Template" +msgstr "" + +#. module: account +#: field:account.tax,parent_id:0 +#: field:account.tax.template,parent_id:0 +msgid "Parent Tax Account" +msgstr "" + +#. module: account +#: view:account.aged.trial.balance:0 +#: model:ir.actions.act_window,name:account.action_account_aged_balance_view +#: model:ir.ui.menu,name:account.menu_aged_trial_balance +msgid "Aged Partner Balance" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_entriesreconcile0 +#: model:process.transition,name:account.process_transition_supplierentriesreconcile0 +msgid "Accounting entries" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +msgid "Account and Period must belong to the same company." +msgstr "" + +#. module: account +#: field:account.invoice.line,discount:0 +msgid "Discount (%)" +msgstr "" + +#. module: account +#: help:account.journal,entry_posted:0 +msgid "" +"Check this box if you don't want new journal entries to pass through the " +"'draft' state and instead goes directly to the 'posted state' without any " +"manual validation. \n" +"Note that journal entries that are automatically created by the system are " +"always skipping that state." +msgstr "" + +#. module: account +#: field:account.move.line.reconcile,writeoff:0 +msgid "Write-Off amount" +msgstr "" + +#. module: account +#: field:account.bank.statement,message_unread:0 +#: field:account.invoice,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_invoice_state.py:44 +#, python-format +msgid "" +"Selected invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-" +"Forma' state." +msgstr "" + +#. module: account +#: code:addons/account/account.py:1071 +#, python-format +msgid "You should choose the periods that belong to the same company." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all +#: view:report.account.sales:0 +#: view:report.account_type.sales:0 +msgid "Sales by Account" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1449 +#, python-format +msgid "You cannot delete a posted journal entry \"%s\"." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Accounting Period" +msgstr "" + +#. module: account +#: field:account.config.settings,sale_journal_id:0 +msgid "Sale journal" +msgstr "" + +#. module: account +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 +#: code:addons/account/account_move_line.py:195 +#, python-format +msgid "You have to define an analytic journal on the '%s' journal!" +msgstr "" + +#. module: account +#: code:addons/account/account.py:781 +#, python-format +msgid "" +"This journal already contains items, therefore you cannot modify its company " +"field." +msgstr "" + +#. module: account +#: code:addons/account/account.py:409 +#, python-format +msgid "" +"You need an Opening journal with centralisation checked to set the initial " +"balance." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_tax_code_list +#: model:ir.ui.menu,name:account.menu_action_tax_code_list +msgid "Tax codes" +msgstr "" + +#. module: account +#: view:account.account:0 +msgid "Unrealized Gains and losses" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_customer +#: model:ir.ui.menu,name:account.menu_finance_receivables +msgid "Customers" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.journal:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +msgid "Period to" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "August" +msgstr "" + +#. module: account +#: field:accounting.report,debit_credit:0 +msgid "Display Debit/Credit Columns" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "October" +msgstr "" + +#. module: account +#: help:account.move.line,quantity:0 +msgid "" +"The optional quantity expressed by this line, eg: number of product sold. " +"The quantity is not a legal requirement but is very useful for some reports." +msgstr "" + +#. module: account +#: view:account.unreconcile:0 +#: view:account.unreconcile.reconcile:0 +msgid "Unreconcile Transactions" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,only_one_chart_template:0 +msgid "Only One Chart Template Available" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +#: field:product.category,property_account_expense_categ:0 +#: field:product.template,property_account_expense:0 +msgid "Expense Account" +msgstr "" + +#. module: account +#: field:account.bank.statement,message_summary:0 +#: field:account.invoice,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: account +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" + +#. module: account +#: help:account.bank.statement,account_id:0 +msgid "" +"used in statement reconciliation domain, but shouldn't be used elswhere." +msgstr "" + +#. module: account +#: field:account.config.settings,date_stop:0 +msgid "End date" +msgstr "" + +#. module: account +#: field:account.invoice.tax,base_amount:0 +msgid "Base Code Amount" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,sale_tax:0 +msgid "Default Sale Tax" +msgstr "" + +#. module: account +#: help:account.model.line,date_maturity:0 +msgid "" +"The maturity date of the generated entries for this model. You can choose " +"between the creation date or the creation date of the entries plus the " +"partner payment terms." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_accounting +msgid "Financial Accounting" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_report_pl +msgid "Profit And Loss" +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,name:0 +#: field:account.fiscal.position.account,position_id:0 +#: field:account.fiscal.position.tax,position_id:0 +#: field:account.fiscal.position.tax.template,position_id:0 +#: view:account.fiscal.position.template:0 +#: field:account.invoice,fiscal_position:0 +#: field:account.invoice.report,fiscal_position:0 +#: model:ir.model,name:account.model_account_fiscal_position +#: field:res.partner,property_account_position:0 +msgid "Fiscal Position" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:823 +#, python-format +msgid "" +"Tax base different!\n" +"Click on compute to update the tax base." +msgstr "" + +#. module: account +#: field:account.partner.ledger,page_split:0 +msgid "One Partner Per Page" +msgstr "" + +#. module: account +#: field:account.account,child_parent_ids:0 +#: field:account.account.template,child_parent_ids:0 +msgid "Children" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: model:ir.actions.act_window,name:account.action_account_balance_menu +#: model:ir.actions.report.xml,name:account.account_account_balance +#: model:ir.ui.menu,name:account.menu_general_Balance_report +msgid "Trial Balance" +msgstr "" + +#. module: account +#: code:addons/account/account.py:431 +#, python-format +msgid "Unable to adapt the initial balance (negative value)." +msgstr "" + +#. module: account +#: selection:account.invoice,type:0 +#: selection:account.invoice.report,type:0 +#: model:process.process,name:account.process_process_invoiceprocess0 +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_open_closed_fiscalyear +msgid "Choose Fiscal Year" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +#: view:account.installer:0 +msgid "Date Range" +msgstr "" + +#. module: account +#: view:account.period:0 +msgid "Search Period" +msgstr "" + +#. module: account +#: view:account.change.currency:0 +msgid "Invoice Currency" +msgstr "" + +#. module: account +#: field:accounting.report,account_report_id:0 +#: model:ir.ui.menu,name:account.menu_account_financial_reports_tree +msgid "Account Reports" +msgstr "" + +#. module: account +#: field:account.payment.term,line_ids:0 +msgid "Terms" +msgstr "" + +#. module: account +#: field:account.chart.template,tax_template_ids:0 +msgid "Tax Template List" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal +msgid "Sale/Purchase Journals" +msgstr "" + +#. module: account +#: help:account.account,currency_mode:0 +msgid "" +"This will select how the current currency rate for outgoing transactions is " +"computed. In most countries the legal method is \"average\" but only a few " +"software systems are able to manage this. So if you import from another " +"software system you may have to use the rate at date. Incoming transactions " +"always use the rate at date." +msgstr "" + +#. module: account +#: code:addons/account/account.py:2678 +#, python-format +msgid "There is no parent code for the template account." +msgstr "" + +#. module: account +#: help:account.chart.template,code_digits:0 +#: help:wizard.multi.charts.accounts,code_digits:0 +msgid "No. of Digits to use for account code" +msgstr "" + +#. module: account +#: field:res.partner,property_supplier_payment_term:0 +msgid "Supplier Payment Term" +msgstr "" + +#. module: account +#: view:account.fiscalyear:0 +msgid "Search Fiscalyear" +msgstr "" + +#. module: account +#: selection:account.tax,applicable_type:0 +msgid "Always" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_accountant:0 +msgid "" +"Full accounting features: journals, legal statements, chart of accounts, etc." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Total Quantity" +msgstr "" + +#. module: account +#: field:account.move.line.reconcile.writeoff,writeoff_acc_id:0 +msgid "Write-Off account" +msgstr "" + +#. module: account +#: field:account.model.line,model_id:0 +#: view:account.subscription:0 +#: field:account.subscription,model_id:0 +msgid "Model" +msgstr "" + +#. module: account +#: help:account.invoice.tax,base_code_id:0 +msgid "The account basis of the tax declaration." +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: selection:account.entries.report,type:0 +#: selection:account.financial.report,type:0 +msgid "View" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 +#, python-format +msgid "BNK" +msgstr "" + +#. module: account +#: field:account.move.line,analytic_lines:0 +msgid "Analytic lines" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Proforma Invoices" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_electronicfile0 +msgid "Electronic File" +msgstr "" + +#. module: account +#: field:account.move.line,reconcile:0 +msgid "Reconcile Ref" +msgstr "" + +#. module: account +#: field:account.config.settings,has_chart_of_accounts:0 +msgid "Company has a chart of accounts" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_tax_code_template +msgid "Tax Code Template" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_partner_ledger +msgid "Account Partner Ledger" +msgstr "" + +#. module: account +#: model:email.template,body_html:account.email_template_edi_invoice +msgid "" +"\n" +"
\n" +"\n" +"

Hello ${object.partner_id.name},

\n" +"\n" +"

A new invoice is available for you:

\n" +" \n" +"

\n" +"   REFERENCES
\n" +"   Invoice number: ${object.number}
\n" +"   Invoice total: ${object.amount_total} " +"${object.currency_id.name}
\n" +"   Invoice date: ${object.date_invoice}
\n" +" % if object.origin:\n" +"   Order reference: ${object.origin}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Your contact: ${object.user_id.name}\n" +" % endif\n" +"

\n" +" \n" +" % if object.paypal_url:\n" +"
\n" +"

It is also possible to directly pay with Paypal:

\n" +" \n" +" \n" +" \n" +" % endif\n" +" \n" +"
\n" +"

If you have any question, do not hesitate to contact us.

\n" +"

Thank you for choosing ${object.company_id.name or 'us'}!

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

\n" +" ${object.company_id.name}

\n" +"
\n" +"
\n" +" \n" +" % if object.company_id.street:\n" +" ${object.company_id.street}
\n" +" % endif\n" +" % if object.company_id.street2:\n" +" ${object.company_id.street2}
\n" +" % endif\n" +" % if object.company_id.city or object.company_id.zip:\n" +" ${object.company_id.zip} ${object.company_id.city}
\n" +" % endif\n" +" % if object.company_id.country_id:\n" +" ${object.company_id.state_id and ('%s, ' % " +"object.company_id.state_id.name) or ''} ${object.company_id.country_id.name " +"or ''}
\n" +" % endif\n" +"
\n" +" % if object.company_id.phone:\n" +"
\n" +" Phone:  ${object.company_id.phone}\n" +"
\n" +" % endif\n" +" % if object.company_id.website:\n" +"
\n" +" Web : ${object.company_id.website}\n" +"
\n" +" %endif\n" +"

\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: account +#: view:account.period:0 +msgid "Account Period" +msgstr "" + +#. module: account +#: help:account.account,currency_id:0 +#: help:account.account.template,currency_id:0 +#: help:account.bank.accounts.wizard,currency_id:0 +msgid "Forces all moves for this account to have this secondary currency." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_validate_account_move_line +msgid "" +"This wizard will validate all journal entries of a particular journal and " +"period. Once journal entries are validated, you can not update them anymore." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_chart_template_form +#: model:ir.ui.menu,name:account.menu_action_account_chart_template_form +msgid "Chart of Accounts Templates" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Transactions" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_unreconcile_reconcile +msgid "Account Unreconcile Reconcile" +msgstr "" + +#. module: account +#: help:account.account.type,close_method:0 +msgid "" +"Set here the method that will be used to generate the end of year journal " +"entries for all the accounts of this type.\n" +"\n" +" 'None' means that nothing will be done.\n" +" 'Balance' will generally be used for cash accounts.\n" +" 'Detail' will copy each existing journal item of the previous year, even " +"the reconciled ones.\n" +" 'Unreconciled' will copy only the journal items that were unreconciled on " +"the first day of the new fiscal year." +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Keep empty to use the expense account" +msgstr "" + +#. module: account +#: field:account.aged.trial.balance,journal_ids:0 +#: field:account.analytic.cost.ledger.journal.report,journal:0 +#: field:account.balance.report,journal_ids:0 +#: field:account.central.journal,journal_ids:0 +#: field:account.common.account.report,journal_ids:0 +#: field:account.common.journal.report,journal_ids:0 +#: field:account.common.partner.report,journal_ids:0 +#: view:account.common.report:0 +#: field:account.common.report,journal_ids:0 +#: report:account.general.journal:0 +#: field:account.general.journal,journal_ids:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: view:account.journal.period:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,journal_ids:0 +#: field:account.partner.ledger,journal_ids:0 +#: view:account.print.journal:0 +#: field:account.print.journal,journal_ids:0 +#: field:account.report.general.ledger,journal_ids:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.vat.declaration,journal_ids:0 +#: field:accounting.report,journal_ids:0 +#: model:ir.actions.act_window,name:account.action_account_journal_form +#: model:ir.actions.act_window,name:account.action_account_journal_period_tree +#: model:ir.ui.menu,name:account.menu_account_print_journal +#: model:ir.ui.menu,name:account.menu_action_account_journal_form +#: model:ir.ui.menu,name:account.menu_journals +#: model:ir.ui.menu,name:account.menu_journals_report +msgid "Journals" +msgstr "" + +#. module: account +#: field:account.partner.reconcile.process,to_reconcile:0 +msgid "Remaining Partners" +msgstr "" + +#. module: account +#: view:account.subscription:0 +#: field:account.subscription,lines_id:0 +msgid "Subscription Lines" +msgstr "" + +#. module: account +#: selection:account.analytic.journal,type:0 +#: view:account.config.settings:0 +#: view:account.journal:0 +#: selection:account.journal,type:0 +#: view:account.model:0 +#: selection:account.tax,type_tax_use:0 +#: view:account.tax.template:0 +#: selection:account.tax.template,type_tax_use:0 +msgid "Purchase" +msgstr "" + +#. module: account +#: view:account.installer:0 +#: view:wizard.multi.charts.accounts:0 +msgid "Accounting Application Configuration" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_vat_declaration +msgid "Account Tax Declaration" +msgstr "" + +#. module: account +#: help:account.bank.statement,name:0 +msgid "" +"if you give the Name other then /, its created Accounting Entries Move will " +"be with same name as statement name. This allows the statement entries to " +"have the same references than the statement itself" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:1016 +#, python-format +msgid "" +"You cannot create an invoice on a centralized journal. Uncheck the " +"centralized counterpart box in the related journal from the configuration " +"menu." +msgstr "" + +#. module: account +#: field:account.bank.statement,balance_start:0 +#: field:account.treasury.report,starting_balance:0 +msgid "Starting Balance" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:1465 +#, python-format +msgid "No Partner Defined !" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_period_close +#: model:ir.actions.act_window,name:account.action_account_period_tree +#: model:ir.ui.menu,name:account.menu_action_account_period_close_tree +msgid "Close a Period" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.cashbox.line,subtotal_opening:0 +msgid "Opening Subtotal" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +msgid "" +"You cannot create journal items with a secondary currency without recording " +"both 'currency' and 'amount currency' field." +msgstr "" + +#. module: account +#: field:account.financial.report,display_detail:0 +msgid "Display details" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "VAT:" +msgstr "" + +#. module: account +#: help:account.analytic.line,amount_currency:0 +msgid "" +"The amount expressed in the related account currency if not equal to the " +"company one." +msgstr "" + +#. module: account +#: help:account.config.settings,paypal_account:0 +msgid "" +"Paypal account (email) for receiving online payments (credit card, etc.) If " +"you set a paypal account, the customer will be able to pay your invoices or " +"quotations with a button \"Pay with Paypal\" in automated emails or through " +"the OpenERP portal." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:536 +#, python-format +msgid "" +"Cannot find any account journal of %s type for this company.\n" +"\n" +"You can create one in the menu: \n" +"Configuration/Journals/Journals." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_unreconcile +#: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile +#: model:ir.actions.act_window,name:account.action_account_unreconcile_select +msgid "Unreconcile Entries" +msgstr "" + +#. module: account +#: field:account.tax.code,notprintable:0 +#: field:account.tax.code.template,notprintable:0 +msgid "Not Printable in Invoice" +msgstr "" + +#. module: account +#: report:account.vat.declaration:0 +#: field:account.vat.declaration,chart_tax_id:0 +msgid "Chart of Tax" +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Search Account Journal" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice +msgid "Pending Invoice" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: selection:account.subscription,period_type:0 +msgid "year" +msgstr "" + +#. module: account +#: field:account.config.settings,date_start:0 +msgid "Start date" +msgstr "" + +#. module: account +#: view:account.invoice.refund:0 +msgid "" +"You will be able to edit and validate this\n" +" credit note directly or keep it draft,\n" +" waiting for the document to be issued " +"by\n" +" your supplier/customer." +msgstr "" + +#. module: account +#: view:validate.account.move.lines:0 +msgid "" +"All selected journal entries will be validated and posted. It means you " +"won't be able to modify their accounting fields anymore." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:98 +#, python-format +msgid "" +"You have not supplied enough arguments to compute the initial balance, " +"please select a period and a journal in the context." +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_transfers +msgid "Transfers" +msgstr "" + +#. module: account +#: field:account.config.settings,expects_chart_of_accounts:0 +msgid "This company has its own chart of accounts" +msgstr "" + +#. module: account +#: view:account.chart:0 +msgid "Account charts" +msgstr "" + +#. module: account +#: view:cash.box.out:0 +#: model:ir.actions.act_window,name:account.action_cash_box_out +msgid "Take Money Out" +msgstr "" + +#. module: account +#: report:account.vat.declaration:0 +msgid "Tax Amount" +msgstr "" + +#. module: account +#: view:account.move:0 +msgid "Search Move" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_invoice_tree1 +msgid "" +"

\n" +" Click to create a customer invoice.\n" +"

\n" +" OpenERP's electronic invoicing allows to ease and fasten " +"the\n" +" collection of customer payments. Your customer receives the\n" +" invoice by email and he can pay online and/or import it\n" +" in his own system.\n" +"

\n" +" The discussions with your customer are automatically " +"displayed at\n" +" the bottom of each invoice.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: field:account.tax.code,name:0 +#: field:account.tax.code.template,name:0 +msgid "Tax Case Name" +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +#: model:process.node,name:account.process_node_draftinvoices0 +msgid "Draft Invoice" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Options" +msgstr "" + +#. module: account +#: field:account.aged.trial.balance,period_length:0 +msgid "Period Length (days)" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1363 +#, python-format +msgid "" +"You cannot modify a posted entry of this journal.\n" +"First you should set the journal to allow cancelling entries." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal +msgid "Print Sale/Purchase Journal" +msgstr "" + +#. module: account +#: view:account.installer:0 +msgid "Continue" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: field:account.invoice.report,categ_id:0 +msgid "Category of Product" +msgstr "" + +#. module: account +#: code:addons/account/account.py:930 +#, python-format +msgid "" +"There is no fiscal year defined for this date.\n" +"Please create one from the configuration of the accounting menu." +msgstr "" + +#. module: account +#: view:account.addtmpl.wizard:0 +#: model:ir.actions.act_window,name:account.action_account_addtmpl_wizard_form +msgid "Create Account" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:62 +#, python-format +msgid "The entries to reconcile should belong to the same company." +msgstr "" + +#. module: account +#: field:account.invoice.tax,tax_amount:0 +msgid "Tax Code Amount" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Unreconciled Journal Items" +msgstr "" + +#. module: account +#: selection:account.account.type,close_method:0 +msgid "Detail" +msgstr "" + +#. module: account +#: help:account.config.settings,default_purchase_tax:0 +msgid "This purchase tax will be assigned by default on new products." +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "VAT :" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: report:account.central.journal:0 +#: view:account.config.settings:0 +#: report:account.general.journal:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 +#: report:account.partner.balance:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: model:ir.actions.act_window,name:account.action_account_chart +#: model:ir.actions.act_window,name:account.action_account_tree +#: model:ir.ui.menu,name:account.menu_action_account_tree2 +msgid "Chart of Accounts" +msgstr "" + +#. module: account +#: view:account.tax.chart:0 +msgid "(If you do not select period it will take all open periods)" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_journal_cashbox_line +msgid "account.journal.cashbox.line" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_partner_reconcile_process +msgid "Reconcilation Process partner by partner" +msgstr "" + +#. module: account +#: view:account.chart:0 +msgid "(If you do not select Fiscal year it will take all open fiscal years)" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,filter:0 +#: report:account.analytic.account.journal:0 +#: view:account.analytic.line:0 +#: selection:account.balance.report,filter:0 +#: field:account.bank.statement,date:0 +#: field:account.bank.statement.line,date:0 +#: selection:account.central.journal,filter:0 +#: selection:account.common.account.report,filter:0 +#: selection:account.common.journal.report,filter:0 +#: selection:account.common.partner.report,filter:0 +#: selection:account.common.report,filter:0 +#: view:account.entries.report:0 +#: field:account.entries.report,date:0 +#: selection:account.general.journal,filter:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: field:account.invoice.refund,date:0 +#: field:account.invoice.report,date:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: view:account.move:0 +#: field:account.move,date:0 +#: field:account.move.line.reconcile.writeoff,date_p:0 +#: report:account.overdue:0 +#: selection:account.partner.balance,filter:0 +#: selection:account.partner.ledger,filter:0 +#: selection:account.print.journal,filter:0 +#: selection:account.print.journal,sort_selection:0 +#: selection:account.report.general.ledger,filter:0 +#: selection:account.report.general.ledger,sortby:0 +#: field:account.subscription.line,date:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: xsl:account.transfer:0 +#: selection:account.vat.declaration,filter:0 +#: selection:accounting.report,filter:0 +#: selection:accounting.report,filter_cmp:0 +#: field:analytic.entries.report,date:0 +msgid "Date" +msgstr "" + +#. module: account +#: view:account.move:0 +msgid "Post" +msgstr "" + +#. module: account +#: view:account.unreconcile:0 +#: view:account.unreconcile.reconcile:0 +msgid "Unreconcile" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +msgid "Chart of Accounts Template" +msgstr "" + +#. module: account +#: code:addons/account/account.py:2358 +#, python-format +msgid "" +"Maturity date of entry line generated by model line '%s' of model '%s' is " +"based on partner payment term!\n" +"Please define partner on it!" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: selection:account.balance.report,display_account:0 +#: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 +#: selection:account.report.general.ledger,display_account:0 +#: selection:account.tax,type_tax_use:0 +#: selection:account.tax.template,type_tax_use:0 +msgid "All" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_reporting_budgets +msgid "Budgets" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,filter:0 +#: selection:account.balance.report,filter:0 +#: selection:account.central.journal,filter:0 +#: selection:account.common.account.report,filter:0 +#: selection:account.common.journal.report,filter:0 +#: selection:account.common.partner.report,filter:0 +#: selection:account.common.report,filter:0 +#: selection:account.general.journal,filter:0 +#: selection:account.partner.balance,filter:0 +#: selection:account.partner.ledger,filter:0 +#: selection:account.print.journal,filter:0 +#: selection:account.report.general.ledger,filter:0 +#: selection:account.vat.declaration,filter:0 +#: selection:accounting.report,filter:0 +#: selection:accounting.report,filter_cmp:0 +msgid "No Filters" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: model:res.groups,name:account.group_proforma_invoices +msgid "Pro-forma Invoices" +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "History" +msgstr "" + +#. module: account +#: help:account.tax,applicable_type:0 +#: help:account.tax.template,applicable_type:0 +msgid "" +"If not applicable (computed through a Python code), the tax won't appear on " +"the invoice." +msgstr "" + +#. module: account +#: field:account.config.settings,group_check_supplier_invoice_total:0 +msgid "Check the total of supplier invoices" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Applicable Code (if type=code)" +msgstr "" + +#. module: account +#: help:account.period,state:0 +msgid "" +"When monthly periods are created. The status is 'Draft'. At the end of " +"monthly period it is in 'Done' status." +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: field:account.invoice.report,product_qty:0 +msgid "Qty" +msgstr "" + +#. module: account +#: help:account.tax.code,sign:0 +msgid "" +"You can specify here the coefficient that will be used when consolidating " +"the amount of this case into its parent. For example, set 1/-1 if you want " +"to add/substract it." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Search Analytic Lines" +msgstr "" + +#. module: account +#: field:res.partner,property_account_payable:0 +msgid "Account Payable" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:88 +#, python-format +msgid "The periods to generate opening entries cannot be found." +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_supplierpaymentorder0 +msgid "Payment Order" +msgstr "" + +#. module: account +#: help:account.account.template,reconcile:0 +msgid "" +"Check this option if you want the user to reconcile entries in this account." +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: field:account.invoice.line,price_unit:0 +msgid "Unit Price" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_tree1 +msgid "Analytic Items" +msgstr "" + +#. module: account +#: field:analytic.entries.report,nbr:0 +msgid "#Entries" +msgstr "" + +#. module: account +#: view:account.state.open:0 +msgid "Open Invoice" +msgstr "" + +#. module: account +#: field:account.invoice.tax,factor_tax:0 +msgid "Multipication factor Tax code" +msgstr "" + +#. module: account +#: field:account.config.settings,complete_tax_set:0 +msgid "Complete set of taxes" +msgstr "" + +#. module: account +#: field:account.account,name:0 +#: field:account.account.template,name:0 +#: report:account.analytic.account.inverted.balance:0 +#: field:account.chart.template,name:0 +#: field:account.model.line,name:0 +#: field:account.move.line,name:0 +#: field:account.move.reconcile,name:0 +#: field:account.subscription,name:0 +msgid "Name" +msgstr "" + +#. module: account +#: code:addons/account/installer.py:115 +#, python-format +msgid "No unconfigured company !" +msgstr "" + +#. module: account +#: field:res.company,expects_chart_of_accounts:0 +msgid "Expects a Chart of Accounts" +msgstr "" + +#. module: account +#: field:account.move.line,date:0 +msgid "Effective date" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:100 +#, python-format +msgid "The journal must have default credit and debit account." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_tree +#: model:ir.ui.menu,name:account.menu_action_bank_tree +msgid "Setup your Bank Accounts" +msgstr "" + +#. module: account +#: xsl:account.transfer:0 +msgid "Partner ID" +msgstr "" + +#. module: account +#: help:account.bank.statement,message_ids:0 +#: help:account.invoice,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: account +#: help:account.journal,analytic_journal_id:0 +msgid "Journal for analytic entries" +msgstr "" + +#. module: account +#: constraint:account.aged.trial.balance:0 +#: constraint:account.balance.report:0 +#: constraint:account.central.journal:0 +#: constraint:account.common.account.report:0 +#: constraint:account.common.journal.report:0 +#: constraint:account.common.partner.report:0 +#: constraint:account.common.report:0 +#: constraint:account.general.journal:0 +#: constraint:account.partner.balance:0 +#: constraint:account.partner.ledger:0 +#: constraint:account.print.journal:0 +#: constraint:account.report.general.ledger:0 +#: constraint:account.vat.declaration:0 +#: constraint:accounting.report:0 +msgid "" +"The fiscalyear, periods or chart of account chosen have to belong to the " +"same company." +msgstr "" + +#. module: account +#: help:account.tax.code.template,notprintable:0 +msgid "" +"Check this box if you don't want any tax related to this tax Code to appear " +"on invoices." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#, python-format +msgid "You cannot use an inactive account." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.open_board_account +#: model:ir.ui.menu,name:account.menu_account_config +#: model:ir.ui.menu,name:account.menu_board_account +#: model:ir.ui.menu,name:account.menu_finance +#: model:ir.ui.menu,name:account.menu_finance_reporting +#: model:process.node,name:account.process_node_accountingentries0 +#: model:process.node,name:account.process_node_supplieraccountingentries0 +#: view:product.product:0 +#: view:product.template:0 +#: view:res.partner:0 +msgid "Accounting" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Journal Entries with period in current year" +msgstr "" + +#. module: account +#: field:account.account,child_consol_ids:0 +msgid "Consolidated Children" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:573 +#: code:addons/account/wizard/account_invoice_refund.py:146 +#, python-format +msgid "Insufficient Data!" +msgstr "" + +#. module: account +#: help:account.account,unrealized_gain_loss:0 +msgid "" +"Value of Loss or Gain due to changes in exchange rate when doing multi-" +"currency transactions." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "General Accounting" +msgstr "" + +#. module: account +#: help:account.fiscalyear.close,journal_id:0 +msgid "" +"The best practice here is to use a journal dedicated to contain the opening " +"entries of all fiscal years. Note that you should define it with default " +"debit/credit accounts, of type 'situation' and with a centralized " +"counterpart." +msgstr "" + +#. module: account +#: view:account.installer:0 +msgid "title" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:account.subscription:0 +msgid "Set to Draft" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_subscription_form +msgid "Recurring Lines" +msgstr "" + +#. module: account +#: field:account.partner.balance,display_partner:0 +msgid "Display Partners" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Validate" +msgstr "" + +#. module: account +#: model:account.financial.report,name:account.account_financial_report_assets0 +msgid "Assets" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Accounting & Finance" +msgstr "" + +#. module: account +#: view:account.invoice.confirm:0 +msgid "Confirm Invoices" +msgstr "" + +#. module: account +#: selection:account.account,currency_mode:0 +msgid "Average Rate" +msgstr "" + +#. module: account +#: field:account.balance.report,display_account:0 +#: field:account.common.account.report,display_account:0 +#: field:account.report.general.ledger,display_account:0 +msgid "Display Accounts" +msgstr "" + +#. module: account +#: view:account.state.open:0 +msgid "(Invoice should be unreconciled if you want to open it)" +msgstr "" + +#. module: account +#: field:account.tax,account_analytic_collected_id:0 +msgid "Invoice Tax Analytic Account" +msgstr "" + +#. module: account +#: field:account.chart,period_from:0 +msgid "Start period" +msgstr "" + +#. module: account +#: field:account.tax,name:0 +#: field:account.tax.template,name:0 +#: report:account.vat.declaration:0 +msgid "Tax Name" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +#: model:ir.ui.menu,name:account.menu_finance_configuration +msgid "Configuration" +msgstr "" + +#. module: account +#: model:account.payment.term,name:account.account_payment_term +#: model:account.payment.term,note:account.account_payment_term +msgid "30 Days End of Month" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_balance +#: model:ir.actions.report.xml,name:account.account_analytic_account_balance +msgid "Analytic Balance" +msgstr "" + +#. module: account +#: help:res.partner,property_payment_term:0 +msgid "" +"This payment term will be used instead of the default one for sale orders " +"and customer invoices" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "" +"If you put \"%(year)s\" in the prefix, it will be replaced by the current " +"year." +msgstr "" + +#. module: account +#: help:account.account,active:0 +msgid "" +"If the active field is set to False, it will allow you to hide the account " +"without removing it." +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Posted Journal Items" +msgstr "" + +#. module: account +#: field:account.move.line,blocked:0 +msgid "No Follow-up" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Search Tax Templates" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation +msgid "Draft Entries" +msgstr "" + +#. module: account +#: help:account.config.settings,decimal_precision:0 +msgid "" +"As an example, a decimal precision of 2 will allow journal entries like: " +"9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " +"0.0231 EUR." +msgstr "" + +#. module: account +#: field:account.account,shortcut:0 +#: field:account.account.template,shortcut:0 +msgid "Shortcut" +msgstr "" + +#. module: account +#: view:account.account:0 +#: field:account.account,user_type:0 +#: view:account.account.template:0 +#: field:account.account.template,user_type:0 +#: view:account.account.type:0 +#: field:account.account.type,name:0 +#: field:account.bank.accounts.wizard,account_type:0 +#: field:account.entries.report,user_type:0 +#: selection:account.financial.report,type:0 +#: model:ir.model,name:account.model_account_account_type +#: field:report.account.receivable,type:0 +#: field:report.account_type.sales,user_type:0 +msgid "Account Type" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Close CashBox" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_invoice_cancel +msgid "Cancel the Selected Invoices" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:424 +#, python-format +msgid "You have to assign an analytic journal on the '%s' journal!" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_supplieranalyticcost0 +msgid "" +"Analytic costs (timesheets, some purchased products, ...) come from analytic " +"accounts. These generate draft supplier invoices." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_bank_tree +msgid "" +"

\n" +" Click to setup a new bank account. \n" +"

\n" +" Configure your company's bank account and select those that " +"must\n" +" appear on the report footer.\n" +"

\n" +" If you use the accounting application of OpenERP, journals and\n" +" accounts will be created automatically based on these data.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: constraint:account.tax.code.template:0 +msgid "" +"Error!\n" +"You cannot create recursive Tax Codes." +msgstr "" + +#. module: account +#: constraint:account.period:0 +msgid "" +"Error!\n" +"The duration of the Period(s) is/are invalid." +msgstr "" + +#. module: account +#: field:account.entries.report,month:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,month:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,month:0 +#: field:report.account.sales,month:0 +#: field:report.account_type.sales,month:0 +msgid "Month" +msgstr "" + +#. module: account +#: code:addons/account/account.py:668 +#, python-format +msgid "You cannot change the code of account which contains journal items!" +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_sequence_prefix:0 +msgid "Supplier invoice sequence" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 +#, python-format +msgid "" +"Cannot find a chart of account, you should create one from Settings\\" +"Configuration\\Accounting menu." +msgstr "" + +#. module: account +#: field:account.entries.report,product_uom_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,product_uom_id:0 +msgid "Product Unit of Measure" +msgstr "" + +#. module: account +#: field:res.company,paypal_account:0 +msgid "Paypal Account" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Acc.Type" +msgstr "" + +#. module: account +#: selection:account.journal,type:0 +msgid "Bank and Checks" +msgstr "" + +#. module: account +#: field:account.account.template,note:0 +msgid "Note" +msgstr "" + +#. module: account +#: selection:account.financial.report,sign:0 +msgid "Reverse balance sign" +msgstr "" + +#. module: account +#: selection:account.account.type,report_type:0 +#: code:addons/account/account.py:191 +#, python-format +msgid "Balance Sheet (Liability account)" +msgstr "" + +#. module: account +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.cashbox.line,subtotal_closing:0 +msgid "Closing Subtotal" +msgstr "" + +#. module: account +#: field:account.tax,base_code_id:0 +msgid "Account Base Code" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:864 +#, python-format +msgid "" +"You have to provide an account for the write off/exchange difference entry." +msgstr "" + +#. module: account +#: help:res.company,paypal_account:0 +msgid "Paypal username (usually email) for receiving online payments." +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,target_move:0 +#: selection:account.balance.report,target_move:0 +#: selection:account.central.journal,target_move:0 +#: selection:account.chart,target_move:0 +#: selection:account.common.account.report,target_move:0 +#: selection:account.common.journal.report,target_move:0 +#: selection:account.common.partner.report,target_move:0 +#: selection:account.common.report,target_move:0 +#: selection:account.general.journal,target_move:0 +#: selection:account.partner.balance,target_move:0 +#: selection:account.partner.ledger,target_move:0 +#: selection:account.print.journal,target_move:0 +#: selection:account.report.general.ledger,target_move:0 +#: selection:account.tax.chart,target_move:0 +#: selection:account.vat.declaration,target_move:0 +#: selection:accounting.report,target_move:0 +#: code:addons/account/report/common_report_header.py:68 +#, python-format +msgid "All Posted Entries" +msgstr "" + +#. module: account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: account +#: help:account.analytic.balance,empty_acc:0 +msgid "Check if you want to display Accounts with 0 balance too." +msgstr "" + +#. module: account +#: field:account.move.reconcile,opening_reconciliation:0 +msgid "Opening Entries Reconciliation" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/xml/account_move_reconciliation.xml:24 +#, python-format +msgid "Last Reconciliation:" +msgstr "" + +#. module: account +#: selection:account.move.line,state:0 +msgid "Balanced" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_importinvoice0 +msgid "Statement from invoice or payment" +msgstr "" + +#. module: account +#: code:addons/account/installer.py:115 +#, python-format +msgid "" +"There is currently no company without chart of account. The wizard will " +"therefore not be executed." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_wizard_multi_chart +msgid "Set Your Accounting Options" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_chart +msgid "Account chart" +msgstr "" + +#. module: account +#: field:account.invoice,reference_type:0 +msgid "Payment Reference" +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Main Title 1 (bold, underlined)" +msgstr "" + +#. module: account +#: report:account.analytic.account.balance:0 +#: report:account.central.journal:0 +msgid "Account Name" +msgstr "" + +#. module: account +#: help:account.fiscalyear.close,report_name:0 +msgid "Give name of the new entries" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account +#: field:account.account,exchange_rate:0 +msgid "Exchange Rate" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_paymentorderreconcilation0 +msgid "Bank statements are entered in the system." +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_reconcile.py:122 +#, python-format +msgid "Reconcile Writeoff" +msgstr "" + +#. module: account +#: view:account.account.template:0 +#: view:account.chart.template:0 +msgid "Account Template" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Closing Balance" +msgstr "" + +#. module: account +#: field:account.chart.template,visible:0 +msgid "Can be Visible?" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_journal_select +msgid "Account Journal Select" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Credit Notes" +msgstr "" + +#. module: account +#: view:account.move.line:0 +#: model:ir.actions.act_window,name:account.action_account_manual_reconcile +msgid "Journal Items to Reconcile" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_tax_template +msgid "Templates for Taxes" +msgstr "" + +#. module: account +#: sql_constraint:account.period:0 +msgid "The name of the period must be unique per company!" +msgstr "" + +#. module: account +#: help:wizard.multi.charts.accounts,currency_id:0 +msgid "Currency as per company's country." +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Tax Computation" +msgstr "" + +#. module: account +#: view:wizard.multi.charts.accounts:0 +msgid "res_config_contents" +msgstr "" + +#. module: account +#: help:account.chart.template,visible:0 +msgid "" +"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." +msgstr "" + +#. module: account +#: view:account.use.model:0 +msgid "Create Entries From Models" +msgstr "" + +#. module: account +#: field:account.account,reconcile:0 +#: field:account.account.template,reconcile:0 +msgid "Allow Reconciliation" +msgstr "" + +#. module: account +#: constraint:account.account:0 +msgid "" +"Error!\n" +"You cannot create an account which has parent account of different company." +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:658 +#, python-format +msgid "" +"Cannot find any account journal of %s type for this company.\n" +"\n" +"You can create one in the menu: \n" +"Configuration\\Journals\\Journals." +msgstr "" + +#. module: account +#: report:account.vat.declaration:0 +msgid "Based On" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3204 +#, python-format +msgid "ECNJ" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_cost_ledger_journal_report +msgid "Account Analytic Cost Ledger For Journal Report" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_model_form +msgid "Recurring Models" +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Children/Sub Taxes" +msgstr "" + +#. module: account +#: xsl:account.transfer:0 +msgid "Change" +msgstr "" + +#. module: account +#: field:account.journal,type_control_ids:0 +msgid "Type Controls" +msgstr "" + +#. module: account +#: help:account.journal,default_credit_account_id:0 +msgid "It acts as a default account for credit amount" +msgstr "" + +#. module: account +#: view:cash.box.out:0 +msgid "Describe why you take money from the cash register:" +msgstr "" + +#. module: account +#: selection:account.invoice,state:0 +#: selection:account.invoice.report,state:0 +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: account +#: help:account.config.settings,group_proforma_invoices:0 +msgid "Allows you to put invoices in pro-forma state." +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Unit Of Currency Definition" +msgstr "" + +#. module: account +#: help:account.partner.ledger,amount_currency:0 +#: help:account.report.general.ledger,amount_currency:0 +msgid "" +"It adds the currency column on report if the currency differs from the " +"company currency." +msgstr "" + +#. module: account +#: code:addons/account/account.py:3394 +#, python-format +msgid "Purchase Tax %.2f%%" +msgstr "" + +#. module: account +#: view:account.subscription.generate:0 +#: model:ir.actions.act_window,name:account.action_account_subscription_generate +#: model:ir.ui.menu,name:account.menu_generate_subscription +msgid "Generate Entries" +msgstr "" + +#. module: account +#: help:account.vat.declaration,chart_tax_id:0 +msgid "Select Charts of Taxes" +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,account_ids:0 +#: field:account.fiscal.position.template,account_ids:0 +msgid "Account Mapping" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Confirmed" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Cancelled Invoice" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "My Invoices" +msgstr "" + +#. module: account +#: selection:account.bank.statement,state:0 +msgid "New" +msgstr "" + +#. module: account +#: view:wizard.multi.charts.accounts:0 +msgid "Sale Tax" +msgstr "" + +#. module: account +#: field:account.tax,ref_tax_code_id:0 +#: field:account.tax.template,ref_tax_code_id:0 +msgid "Refund Tax Code" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Invoice " +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_income:0 +msgid "Income Account on Product Template" +msgstr "" + +#. module: account +#: help:account.journal.period,state:0 +msgid "" +"When journal period is created. The status is 'Draft'. If a report is " +"printed it comes to 'Printed' status. When all transactions are done, it " +"comes in 'Done' status." +msgstr "" + +#. module: account +#: code:addons/account/account.py:3205 +#, python-format +msgid "MISC" +msgstr "" + +#. module: account +#: field:account.fiscalyear.close,fy2_id:0 +msgid "New Fiscal Year" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:account.tax:0 +#: view:account.tax.template:0 +#: selection:account.vat.declaration,based_on:0 +#: model:ir.actions.act_window,name:account.act_res_partner_2_account_invoice_opened +#: model:ir.actions.act_window,name:account.action_invoice_tree +#: model:ir.actions.report.xml,name:account.account_invoices +#: view:report.invoice.created:0 +#: field:res.partner,invoice_ids:0 +msgid "Invoices" +msgstr "" + +#. module: account +#: help:account.config.settings,expects_chart_of_accounts:0 +msgid "Check this box if this company is a legal entity." +msgstr "" + +#. module: account +#: model:account.account.type,name:account.conf_account_type_chk +#: selection:account.bank.accounts.wizard,account_type:0 +msgid "Check" +msgstr "" + +#. module: account +#: view:account.aged.trial.balance:0 +#: view:account.analytic.balance:0 +#: view:account.analytic.chart:0 +#: view:account.analytic.cost.ledger:0 +#: view:account.analytic.cost.ledger.journal.report:0 +#: view:account.analytic.inverted.balance:0 +#: view:account.analytic.journal.report:0 +#: view:account.automatic.reconcile:0 +#: view:account.change.currency:0 +#: view:account.chart:0 +#: view:account.common.report:0 +#: view:account.config.settings:0 +#: view:account.fiscalyear.close:0 +#: view:account.fiscalyear.close.state:0 +#: view:account.invoice.cancel:0 +#: view:account.invoice.confirm:0 +#: view:account.invoice.refund:0 +#: view:account.journal.select:0 +#: view:account.move.bank.reconcile:0 +#: view:account.move.line.reconcile:0 +#: view:account.move.line.reconcile.select:0 +#: view:account.move.line.reconcile.writeoff:0 +#: view:account.move.line.unreconcile.select:0 +#: view:account.open.closed.fiscalyear:0 +#: view:account.period.close:0 +#: view:account.state.open:0 +#: view:account.subscription.generate:0 +#: view:account.tax.chart:0 +#: view:account.unreconcile:0 +#: view:account.use.model:0 +#: view:account.vat.declaration:0 +#: view:cash.box.in:0 +#: view:cash.box.out:0 +#: view:project.account.analytic.line:0 +#: view:validate.account.move:0 +#: view:validate.account.move.lines:0 +msgid "or" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Invoiced" +msgstr "" + +#. module: account +#: view:account.move:0 +msgid "Posted Journal Entries" +msgstr "" + +#. module: account +#: view:account.use.model:0 +msgid "Use Model" +msgstr "" + +#. module: account +#: help:account.invoice,partner_bank_id:0 +msgid "" +"Bank Account Number to which the invoice will be paid. A Company bank " +"account if this is a Customer Invoice or Supplier Refund, otherwise a " +"Partner bank account number." +msgstr "" + +#. module: account +#: field:account.partner.reconcile.process,today_reconciled:0 +msgid "Partners Reconciled Today" +msgstr "" + +#. module: account +#: help:account.invoice.tax,tax_code_id:0 +msgid "The tax basis of the tax declaration." +msgstr "" + +#. module: account +#: view:account.addtmpl.wizard:0 +msgid "Add" +msgstr "" + +#. module: account +#: selection:account.invoice,state:0 +#: report:account.overdue:0 +#: model:mail.message.subtype,name:account.mt_invoice_paid +msgid "Paid" +msgstr "" + +#. module: account +#: field:account.invoice,tax_line:0 +msgid "Tax Lines" +msgstr "" + +#. module: account +#: help:account.move.line,statement_id:0 +msgid "The bank statement used for bank reconciliation" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 +msgid "Draft invoices are validated. " +msgstr "" + +#. module: account +#: help:account.tax,account_collected_id:0 +msgid "" +"Set the account that will be set by default on invoice tax lines for " +"invoices. Leave empty to use the expense account." +msgstr "" + +#. module: account +#: code:addons/account/account.py:890 +#, python-format +msgid "Opening Period" +msgstr "" + +#. module: account +#: view:account.move:0 +msgid "Journal Entries to Review" +msgstr "" + +#. module: account +#: selection:res.company,tax_calculation_rounding_method:0 +msgid "Round Globally" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: view:account.subscription:0 +msgid "Compute" +msgstr "" + +#. module: account +#: field:account.tax,type_tax_use:0 +msgid "Tax Application" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:922 +#, python-format +msgid "" +"Please verify the price of the invoice !\n" +"The encoded total does not match the computed total." +msgstr "" + +#. module: account +#: field:account.account,active:0 +#: field:account.analytic.journal,active:0 +#: field:account.fiscal.position,active:0 +#: field:account.journal.period,active:0 +#: field:account.payment.term,active:0 +#: field:account.tax,active:0 +msgid "Active" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.journal,cash_control:0 +msgid "Cash Control" +msgstr "" + +#. module: account +#: field:account.analytic.balance,date2:0 +#: field:account.analytic.cost.ledger,date2:0 +#: field:account.analytic.cost.ledger.journal.report,date2:0 +#: field:account.analytic.inverted.balance,date2:0 +#: field:account.analytic.journal.report,date2:0 +msgid "End of period" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_supplierpaymentorder0 +msgid "Payment of invoices" +msgstr "" + +#. module: account +#: sql_constraint:account.invoice:0 +msgid "Invoice Number must be unique per Company!" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_receivable_graph +msgid "Balance by Type of Account" +msgstr "" + +#. module: account +#: code:addons/account/account_cash_statement.py:301 +#, python-format +msgid "There is no %s Account on the journal %s." +msgstr "" + +#. module: account +#: model:res.groups,name:account.group_account_user +msgid "Accountant" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_treasury_report_all +msgid "" +"From this view, have an analysis of your treasury. It sums the balance of " +"every accounting entries made on liquidity accounts per period." +msgstr "" + +#. module: account +#: model:res.groups,name:account.group_account_manager +msgid "Financial Manager" +msgstr "" + +#. module: account +#: field:account.journal,group_invoice_lines:0 +msgid "Group Invoice Lines" +msgstr "" + +#. module: account +#: view:account.automatic.reconcile:0 +msgid "Close" +msgstr "" + +#. module: account +#: field:account.bank.statement.line,move_ids:0 +msgid "Moves" +msgstr "" + +#. module: account +#: field:account.bank.statement,details_ids:0 +#: view:account.journal:0 +msgid "CashBox Lines" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_vat_declaration +msgid "Account Vat Declaration" +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_accountant:0 +msgid "" +"If you do not check this box, you will be able to do invoicing & payments, " +"but not accounting (Journal Items, Chart of Accounts, ...)" +msgstr "" + +#. module: account +#: view:account.period:0 +msgid "To Close" +msgstr "" + +#. module: account +#: field:account.treasury.report,date:0 +msgid "Beginning of Period Date" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.account_template_folder +msgid "Templates" +msgstr "" + +#. module: account +#: field:account.invoice.tax,name:0 +msgid "Tax Description" +msgstr "" + +#. module: account +#: field:account.tax,child_ids:0 +msgid "Child Tax Accounts" +msgstr "" + +#. module: account +#: help:account.tax,price_include:0 +#: help:account.tax.template,price_include:0 +msgid "" +"Check this if the price you use on the product and invoices includes this " +"tax." +msgstr "" + +#. module: account +#: report:account.analytic.account.balance:0 +msgid "Analytic Balance -" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,target_move:0 +#: field:account.balance.report,target_move:0 +#: report:account.central.journal:0 +#: field:account.central.journal,target_move:0 +#: field:account.chart,target_move:0 +#: field:account.common.account.report,target_move:0 +#: field:account.common.journal.report,target_move:0 +#: field:account.common.partner.report,target_move:0 +#: field:account.common.report,target_move:0 +#: report:account.general.journal:0 +#: field:account.general.journal,target_move:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,target_move:0 +#: field:account.partner.ledger,target_move:0 +#: field:account.print.journal,target_move:0 +#: field:account.report.general.ledger,target_move:0 +#: field:account.tax.chart,target_move:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.vat.declaration,target_move:0 +#: field:accounting.report,target_move:0 +msgid "Target Moves" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1454 +#, python-format +msgid "" +"Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: help:account.cashbox.line,number_opening:0 +msgid "Opening Unit Numbers" +msgstr "" + +#. module: account +#: field:account.subscription,period_type:0 +msgid "Period Type" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: field:account.invoice,payment_ids:0 +#: selection:account.vat.declaration,based_on:0 +msgid "Payments" +msgstr "" + +#. module: account +#: field:account.subscription.line,move_id:0 +msgid "Entry" +msgstr "" + +#. module: account +#: field:account.tax,python_compute_inv:0 +#: field:account.tax.template,python_compute_inv:0 +msgid "Python Code (reverse)" +msgstr "" + +#. module: account +#: field:account.invoice,payment_term:0 +#: model:ir.actions.act_window,name:account.action_payment_term_form +#: model:ir.ui.menu,name:account.menu_action_payment_term_form +msgid "Payment Terms" +msgstr "" + +#. module: account +#: help:account.chart.template,complete_tax_set:0 +msgid "" +"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" +msgstr "" + +#. module: account +#: view:account.financial.report:0 +#: field:account.financial.report,children_ids:0 +#: model:ir.model,name:account.model_account_financial_report +msgid "Account Report" +msgstr "" + +#. module: account +#: field:account.entries.report,year:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,year:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,year:0 +#: view:report.account.sales:0 +#: field:report.account.sales,name:0 +#: view:report.account_type.sales:0 +#: field:report.account_type.sales,name:0 +msgid "Year" +msgstr "" + +#. module: account +#: help:account.invoice,sent:0 +msgid "It indicates that the invoice has been sent." +msgstr "" + +#. module: account +#: field:account.tax.template,description:0 +msgid "Internal Name" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1185 +#, python-format +msgid "" +"Cannot create an automatic sequence for this piece.\n" +"Put a sequence in the journal definition for automatic numbering or create a " +"sequence manually for this piece." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Pro Forma Invoice " +msgstr "" + +#. module: account +#: selection:account.subscription,period_type:0 +msgid "month" +msgstr "" + +#. module: account +#: view:account.move.line:0 +#: field:account.partner.reconcile.process,next_partner_id:0 +msgid "Next Partner to Reconcile" +msgstr "" + +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + +#. module: account +#: model:account.financial.report,name:account.account_financial_report_balancesheet0 +#: model:ir.actions.act_window,name:account.action_account_report_bs +#: model:ir.ui.menu,name:account.menu_account_report_bs +msgid "Balance Sheet" +msgstr "" + +#. module: account +#: selection:account.account.type,report_type:0 +#: code:addons/account/account.py:188 +#, python-format +msgid "Profit & Loss (Income account)" +msgstr "" + +#. module: account +#: field:account.journal,allow_date:0 +msgid "Check Date in Period" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.final_accounting_reports +msgid "Accounting Reports" +msgstr "" + +#. module: account +#: field:account.move,line_id:0 +#: view:analytic.entries.report:0 +#: model:ir.actions.act_window,name:account.action_move_line_form +msgid "Entries" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "This Period" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Compute Code (if type=code)" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:508 +#, python-format +msgid "" +"Cannot find a chart of accounts for this company, you should create one." +msgstr "" + +#. module: account +#: selection:account.analytic.journal,type:0 +#: view:account.config.settings:0 +#: view:account.journal:0 +#: selection:account.journal,type:0 +#: view:account.model:0 +#: selection:account.tax,type_tax_use:0 +#: view:account.tax.template:0 +#: selection:account.tax.template,type_tax_use:0 +msgid "Sale" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_automatic_reconcile +msgid "Automatic Reconcile" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: field:account.bank.statement.line,amount:0 +#: report:account.invoice:0 +#: field:account.invoice.line,price_subtotal:0 +#: field:account.invoice.tax,amount:0 +#: view:account.move:0 +#: field:account.move,amount:0 +#: view:account.move.line:0 +#: field:account.tax,amount:0 +#: field:account.tax.template,amount:0 +#: xsl:account.transfer:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,amount:0 +#: field:cash.box.in,amount:0 +#: field:cash.box.out,amount:0 +msgid "Amount" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:41 +#, python-format +msgid "End of Fiscal Year Entry" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_customerinvoice0 +#: model:process.transition,name:account.process_transition_paymentorderreconcilation0 +#: model:process.transition,name:account.process_transition_statemententries0 +#: model:process.transition,name:account.process_transition_suppliercustomerinvoice0 +#: model:process.transition,name:account.process_transition_suppliervalidentries0 +#: model:process.transition,name:account.process_transition_validentries0 +msgid "Validation" +msgstr "" + +#. module: account +#: help:account.bank.statement,message_summary:0 +#: help:account.invoice,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: account +#: field:account.tax,child_depend:0 +#: field:account.tax.template,child_depend:0 +msgid "Tax on Children" +msgstr "" + +#. module: account +#: help:res.partner,last_reconciliation_date:0 +msgid "" +"Date on which the partner accounting entries were fully reconciled last " +"time. It differs from the date of the last reconciliation made for this " +"partner, as here we depict the fact that nothing more was to be reconciled " +"at this date. This can be achieved in 2 ways: either the last debit/credit " +"entry was reconciled, either the user pressed the button \"Fully " +"Reconciled\" in the manual reconciliation process" +msgstr "" + +#. module: account +#: field:account.journal,update_posted:0 +msgid "Allow Cancelling Entries" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_use_model.py:44 +#, python-format +msgid "" +"Maturity date of entry line generated by model line '%s' is based on partner " +"payment term!\n" +"Please define partner on it!" +msgstr "" + +#. module: account +#: field:account.tax.code,sign:0 +msgid "Coefficent for parent" +msgstr "" + +#. module: account +#: report:account.partner.balance:0 +msgid "(Account/Partner) Name" +msgstr "" + +#. module: account +#: field:account.partner.reconcile.process,progress:0 +msgid "Progress" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,bank_accounts_id:0 +msgid "Cash and Banks" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_installer +msgid "account.installer" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Recompute taxes and total" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1116 +#, python-format +msgid "You cannot modify/delete a journal with entries for this period." +msgstr "" + +#. module: account +#: field:account.tax.template,include_base_amount:0 +msgid "Include in Base Amount" +msgstr "" + +#. module: account +#: field:account.invoice,supplier_invoice_number:0 +msgid "Supplier Invoice Number" +msgstr "" + +#. module: account +#: help:account.payment.term.line,days:0 +msgid "" +"Number of days to add before computation of the day of month.If Date=15/01, " +"Number of Days=22, Day of Month=-1, then the due date is 28/02." +msgstr "" + +#. module: account +#: view:account.payment.term.line:0 +msgid "Amount Computation" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1105 +#, python-format +msgid "You can not add/modify entries in a closed period %s of journal %s." +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Entry Controls" +msgstr "" + +#. module: account +#: view:account.analytic.chart:0 +#: view:project.account.analytic.line:0 +msgid "(Keep empty to open the current situation)" +msgstr "" + +#. module: account +#: field:account.analytic.balance,date1:0 +#: field:account.analytic.cost.ledger,date1:0 +#: field:account.analytic.cost.ledger.journal.report,date1:0 +#: field:account.analytic.inverted.balance,date1:0 +#: field:account.analytic.journal.report,date1:0 +msgid "Start of period" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_asset_view1 +msgid "Asset View" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_common_account_report +msgid "Account Common Account Report" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: view:account.bank.statement:0 +#: selection:account.bank.statement,state:0 +#: view:account.fiscalyear:0 +#: selection:account.fiscalyear,state:0 +#: selection:account.invoice,state:0 +#: selection:account.invoice.report,state:0 +#: selection:account.period,state:0 +#: selection:report.invoice.created,state:0 +msgid "Open" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +#: model:ir.ui.menu,name:account.menu_analytic_accounting +msgid "Analytic Accounting" +msgstr "" + +#. module: account +#: help:account.payment.term.line,value:0 +msgid "" +"Select here the kind of valuation related to this payment term line. Note " +"that you should have your last line with the type 'Balance' to ensure that " +"the whole amount will be treated." +msgstr "" + +#. module: account +#: field:account.partner.ledger,initial_balance:0 +#: field:account.report.general.ledger,initial_balance:0 +msgid "Include Initial Balances" +msgstr "" + +#. module: account +#: view:account.invoice.tax:0 +msgid "Tax Codes" +msgstr "" + +#. module: account +#: selection:account.invoice,type:0 +#: selection:account.invoice.report,type:0 +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: account +#: field:account.tax,ref_tax_sign:0 +#: field:account.tax,tax_sign:0 +#: field:account.tax.template,ref_tax_sign:0 +#: field:account.tax.template,tax_sign:0 +msgid "Tax Code Sign" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: account +#: field:account.fiscalyear,end_journal_period_id:0 +msgid "End of Year Entries Journal" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Draft Refund " +msgstr "" + +#. module: account +#: view:cash.box.in:0 +msgid "Fill in this form if you put money in the cash register:" +msgstr "" + +#. module: account +#: view:account.payment.term.line:0 +#: field:account.payment.term.line,value_amount:0 +msgid "Amount To Pay" +msgstr "" + +#. module: account +#: help:account.partner.reconcile.process,to_reconcile:0 +msgid "" +"This is the remaining partners for who you should check if there is " +"something to reconcile or not. This figure already count the current partner " +"as reconciled." +msgstr "" + +#. module: account +#: view:account.subscription.line:0 +msgid "Subscription lines" +msgstr "" + +#. module: account +#: field:account.entries.report,quantity:0 +msgid "Products Quantity" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +#: selection:account.entries.report,move_state:0 +#: view:account.move:0 +#: selection:account.move,state:0 +#: view:account.move.line:0 +msgid "Unposted" +msgstr "" + +#. module: account +#: view:account.change.currency:0 +#: model:ir.actions.act_window,name:account.action_account_change_currency +#: model:ir.model,name:account.model_account_change_currency +msgid "Change Currency" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_accountingentries0 +#: model:process.node,note:account.process_node_supplieraccountingentries0 +msgid "Accounting entries." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Payment Date" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement,opening_details_ids:0 +msgid "Opening Cashbox Lines" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: model:ir.actions.act_window,name:account.action_account_analytic_account_form +#: model:ir.ui.menu,name:account.account_analytic_def_account +msgid "Analytic Accounts" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Customer Invoices And Refunds" +msgstr "" + +#. module: account +#: field:account.analytic.line,amount_currency:0 +#: field:account.entries.report,amount_currency:0 +#: field:account.model.line,amount_currency:0 +#: field:account.move.line,amount_currency:0 +msgid "Amount Currency" +msgstr "" + +#. module: account +#: selection:res.company,tax_calculation_rounding_method:0 +msgid "Round per Line" +msgstr "" + +#. module: account +#: report:account.analytic.account.balance:0 +#: report:account.analytic.account.inverted.balance:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +#: report:account.invoice:0 +#: field:account.invoice.line,quantity:0 +#: field:account.model.line,quantity:0 +#: field:account.move.line,quantity:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,unit_amount:0 +#: field:report.account.sales,quantity:0 +#: field:report.account_type.sales,quantity:0 +msgid "Quantity" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Number (Move)" +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Normal Text" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_paymentreconcile0 +msgid "Payment entries are the second input of the reconciliation." +msgstr "" + +#. module: account +#: help:res.partner,property_supplier_payment_term:0 +msgid "" +"This payment term will be used instead of the default one for purchase " +"orders and supplier invoices" +msgstr "" + +#. module: account +#: help:account.automatic.reconcile,power:0 +msgid "" +"Number of partial amounts that can be combined to find a balance point can " +"be chosen as the power of the automatic reconciliation" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_report_aged_partner_balance.py:56 +#, python-format +msgid "You must set a period length greater than 0." +msgstr "" + +#. module: account +#: view:account.fiscal.position.template:0 +#: field:account.fiscal.position.template,name:0 +msgid "Fiscal Position Template" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Draft Refund" +msgstr "" + +#. module: account +#: view:account.analytic.chart:0 +#: view:account.chart:0 +#: view:account.tax.chart:0 +msgid "Open Charts" +msgstr "" + +#. module: account +#: field:account.central.journal,amount_currency:0 +#: field:account.common.journal.report,amount_currency:0 +#: field:account.general.journal,amount_currency:0 +#: field:account.partner.ledger,amount_currency:0 +#: field:account.print.journal,amount_currency:0 +#: field:account.report.general.ledger,amount_currency:0 +msgid "With Currency" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Open CashBox" +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Automatic formatting" +msgstr "" + +#. module: account +#: view:account.move.line.reconcile:0 +msgid "Reconcile With Write-Off" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +msgid "You cannot create journal items on an account of type view." +msgstr "" + +#. module: account +#: selection:account.payment.term.line,value:0 +#: selection:account.tax,type:0 +msgid "Fixed Amount" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1056 +#, python-format +msgid "You cannot change the tax, you should remove and recreate lines." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_automatic_reconcile +msgid "Account Automatic Reconcile" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Journal Item" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscalyear_close +#: model:ir.ui.menu,name:account.menu_wizard_fy_close +msgid "Generate Opening Entries" +msgstr "" + +#. module: account +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "" + +#. module: account +#: view:account.payment.term.line:0 +msgid "Due Date Computation" +msgstr "" + +#. module: account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: account +#: view:account.analytic.journal:0 +#: field:account.analytic.journal.report,analytic_account_journal_id:0 +#: model:ir.actions.act_window,name:account.action_account_analytic_journal_form +#: model:ir.ui.menu,name:account.account_def_analytic_journal +msgid "Analytic Journals" +msgstr "" + +#. module: account +#: field:account.account,child_id:0 +msgid "Child Accounts" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1117 +#, python-format +msgid "Move name (id): %s (%s)" +msgstr "" + +#. module: account +#: view:account.move.line.reconcile:0 +#: code:addons/account/account_move_line.py:879 +#, python-format +msgid "Write-Off" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "entries" +msgstr "" + +#. module: account +#: field:res.partner,debit:0 +msgid "Total Payable" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_income +#: model:account.financial.report,name:account.account_financial_report_income0 +msgid "Income" +msgstr "" + +#. module: account +#: selection:account.bank.statement.line,type:0 +#: view:account.config.settings:0 +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:390 +#, python-format +msgid "Supplier" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "March" +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +msgid "Account n°" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:95 +#, python-format +msgid "Free Reference" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,result_selection:0 +#: selection:account.common.partner.report,result_selection:0 +#: selection:account.partner.balance,result_selection:0 +#: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 +#: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 +#, python-format +msgid "Receivable and Payable Accounts" +msgstr "" + +#. module: account +#: field:account.fiscal.position.account.template,position_id:0 +msgid "Fiscal Mapping" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Select Company" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_state_open +#: model:ir.model,name:account.model_account_state_open +msgid "Account State Open" +msgstr "" + +#. module: account +#: report:account.analytic.account.quantity_cost_ledger:0 +msgid "Max Qty:" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: model:ir.actions.act_window,name:account.action_account_invoice_refund +msgid "Refund Invoice" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_entries_report_all +msgid "" +"From this view, have an analysis of your different financial accounts. The " +"document shows your debit and credit taking in consideration some criteria " +"you can choose by using the search tool." +msgstr "" + +#. module: account +#: help:account.partner.reconcile.process,progress:0 +msgid "" +"Shows you the progress made today on the reconciliation process. Given by \n" +"Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)" +msgstr "" + +#. module: account +#: field:account.invoice,period_id:0 +#: field:account.invoice.report,period_id:0 +#: field:report.account.sales,period_id:0 +#: field:report.account_type.sales,period_id:0 +msgid "Force Period" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_form +msgid "" +"

\n" +" Click to add an account.\n" +"

\n" +" An account is part of a ledger allowing your company\n" +" to register all kinds of debit and credit transactions.\n" +" Companies present their annual accounts in two main parts: " +"the\n" +" balance sheet and the income statement (profit and loss\n" +" account). The annual accounts of a company are required by " +"law\n" +" to disclose a certain amount of information.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: field:account.invoice.report,nbr:0 +msgid "# of Lines" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "(update)" +msgstr "" + +#. module: account +#: field:account.aged.trial.balance,filter:0 +#: field:account.balance.report,filter:0 +#: field:account.central.journal,filter:0 +#: field:account.common.account.report,filter:0 +#: field:account.common.journal.report,filter:0 +#: field:account.common.partner.report,filter:0 +#: field:account.common.report,filter:0 +#: field:account.general.journal,filter:0 +#: field:account.partner.balance,filter:0 +#: field:account.partner.ledger,filter:0 +#: field:account.print.journal,filter:0 +#: field:account.report.general.ledger,filter:0 +#: field:account.vat.declaration,filter:0 +#: field:accounting.report,filter:0 +#: field:accounting.report,filter_cmp:0 +msgid "Filter by" +msgstr "" + +#. module: account +#: code:addons/account/account.py:2334 +#, python-format +msgid "You have a wrong expression \"%(...)s\" in your model !" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Compute Code for Taxes Included Prices" +msgstr "" + +#. module: account +#: help:account.bank.statement,balance_end:0 +msgid "Balance as calculated based on Starting Balance and transaction lines" +msgstr "" + +#. module: account +#: field:account.journal,loss_account_id:0 +msgid "Loss Account" +msgstr "" + +#. module: account +#: field:account.tax,account_collected_id:0 +#: field:account.tax.template,account_collected_id:0 +msgid "Invoice Tax Account" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_general_journal +#: model:ir.model,name:account.model_account_general_journal +msgid "Account General Journal" +msgstr "" + +#. module: account +#: help:account.move,state:0 +msgid "" +"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." +msgstr "" + +#. module: account +#: field:account.payment.term.line,days:0 +msgid "Number of Days" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1357 +#, python-format +msgid "" +"You cannot validate this journal entry because account \"%s\" does not " +"belong to chart of accounts \"%s\"." +msgstr "" + +#. module: account +#: view:account.financial.report:0 +msgid "Report" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_tax_template +msgid "Template Tax Fiscal Position" +msgstr "" + +#. module: account +#: help:account.tax,name:0 +msgid "This name will be displayed on reports" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +msgid "Printing date" +msgstr "" + +#. module: account +#: selection:account.account.type,close_method:0 +#: selection:account.tax,type:0 +#: selection:account.tax.template,type:0 +msgid "None" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree3 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree3 +msgid "Customer Refunds" +msgstr "" + +#. module: account +#: field:account.account,foreign_balance:0 +msgid "Foreign Balance" +msgstr "" + +#. module: account +#: field:account.journal.period,name:0 +msgid "Journal-Period Name" +msgstr "" + +#. module: account +#: field:account.invoice.tax,factor_base:0 +msgid "Multipication factor for Base code" +msgstr "" + +#. module: account +#: help:account.journal,company_id:0 +msgid "Company related to this journal" +msgstr "" + +#. module: account +#: help:account.config.settings,group_multi_currency:0 +msgid "Allows you multi currency environment" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Running Subscription" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Fiscal Position Remark :" +msgstr "" + +#. module: account +#: view:analytic.entries.report:0 +#: model:ir.actions.act_window,name:account.action_analytic_entries_report +#: model:ir.ui.menu,name:account.menu_action_analytic_entries_report +msgid "Analytic Entries Analysis" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,direction_selection:0 +msgid "Past" +msgstr "" + +#. module: account +#: help:res.partner.bank,journal_id:0 +msgid "" +"This journal will be created automatically for this bank account when you " +"save the record" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Analytic Entry" +msgstr "" + +#. module: account +#: view:res.company:0 +#: field:res.company,overdue_msg:0 +msgid "Overdue Payments Message" +msgstr "" + +#. module: account +#: field:account.entries.report,date_created:0 +msgid "Date Created" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form +msgid "account.analytic.line.extended" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_supplierreconcilepaid0 +msgid "" +"As soon as the reconciliation is done, the invoice's state turns to “done” " +"(i.e. paid) in the system." +msgstr "" + +#. module: account +#: view:account.chart.template:0 +#: field:account.chart.template,account_root_id:0 +msgid "Root Account" +msgstr "" + +#. module: account +#: field:res.partner,last_reconciliation_date:0 +msgid "Latest Reconciliation Date" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: model:ir.model,name:account.model_account_analytic_line +msgid "Analytic Line" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_action_model_form +msgid "Models" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:1124 +#, python-format +msgid "" +"You cannot cancel an invoice which is partially paid. You need to " +"unreconcile related payment entries first." +msgstr "" + +#. module: account +#: field:product.template,taxes_id:0 +msgid "Customer Taxes" +msgstr "" + +#. module: account +#: help:account.model,name:0 +msgid "This is a model for recurring accounting entries" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,sale_tax_rate:0 +msgid "Sales Tax(%)" +msgstr "" + +#. module: account +#: view:account.tax.code:0 +msgid "Reporting Configuration" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_invoice_tree4 +msgid "" +"

\n" +" Click to register a refund you received from a supplier.\n" +"

\n" +" Instead of creating the supplier refund manually, you can " +"generate\n" +" refunds and reconcile them directly from the related " +"supplier invoice.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: field:account.tax,type:0 +#: field:account.tax.template,type:0 +msgid "Tax Type" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_template_form +#: model:ir.ui.menu,name:account.menu_action_account_template_form +msgid "Account Templates" +msgstr "" + +#. module: account +#: help:account.config.settings,complete_tax_set:0 +#: help:wizard.multi.charts.accounts,complete_tax_set:0 +msgid "" +"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" +msgstr "" + +#. module: account +#: report:account.vat.declaration:0 +msgid "Tax Statement" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_res_company +msgid "Companies" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Open and Paid Invoices" +msgstr "" + +#. module: account +#: selection:account.financial.report,display_detail:0 +msgid "Display children flat" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Bank & Cash" +msgstr "" + +#. module: account +#: help:account.fiscalyear.close.state,fy_id:0 +msgid "Select a fiscal year to close" +msgstr "" + +#. module: account +#: help:account.chart.template,tax_template_ids:0 +msgid "List of all the taxes that have to be installed by the wizard" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_intracom +msgid "IntraCom" +msgstr "" + +#. module: account +#: view:account.move.line.reconcile.writeoff:0 +msgid "Information addendum" +msgstr "" + +#. module: account +#: field:account.chart,fiscalyear:0 +#: view:account.fiscalyear:0 +msgid "Fiscal year" +msgstr "" + +#. module: account +#: view:account.move.reconcile:0 +msgid "Partial Reconcile Entries" +msgstr "" + +#. module: account +#: view:account.aged.trial.balance:0 +#: view:account.analytic.balance:0 +#: view:account.analytic.chart:0 +#: view:account.analytic.cost.ledger:0 +#: view:account.analytic.cost.ledger.journal.report:0 +#: view:account.analytic.inverted.balance:0 +#: view:account.analytic.journal.report:0 +#: view:account.automatic.reconcile:0 +#: view:account.change.currency:0 +#: view:account.chart:0 +#: view:account.common.report:0 +#: view:account.config.settings:0 +#: view:account.fiscalyear.close:0 +#: view:account.fiscalyear.close.state:0 +#: view:account.invoice.cancel:0 +#: view:account.invoice.confirm:0 +#: view:account.invoice.refund:0 +#: view:account.journal.select:0 +#: view:account.move.bank.reconcile:0 +#: view:account.move.line.reconcile:0 +#: view:account.move.line.reconcile.select:0 +#: view:account.move.line.reconcile.writeoff:0 +#: view:account.move.line.unreconcile.select:0 +#: view:account.period.close:0 +#: view:account.state.open:0 +#: view:account.subscription.generate:0 +#: view:account.tax.chart:0 +#: view:account.unreconcile:0 +#: view:account.use.model:0 +#: view:account.vat.declaration:0 +#: view:cash.box.in:0 +#: view:cash.box.out:0 +#: view:project.account.analytic.line:0 +#: view:validate.account.move:0 +#: view:validate.account.move.lines:0 +msgid "Cancel" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: model:account.account.type,name:account.data_account_type_receivable +#: selection:account.entries.report,type:0 +msgid "Receivable" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +msgid "You cannot create journal items on closed account." +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:633 +#, python-format +msgid "Invoice line account's company and invoice's compnay does not match." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Other Info" +msgstr "" + +#. module: account +#: field:account.journal,default_credit_account_id:0 +msgid "Default Credit Account" +msgstr "" + +#. module: account +#: help:account.analytic.line,currency_id:0 +msgid "The related account currency if not equal to the company one." +msgstr "" + +#. module: account +#: code:addons/account/installer.py:69 +#, python-format +msgid "Custom" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Current" +msgstr "" + +#. module: account +#: field:account.journal,cashbox_line_ids:0 +msgid "CashBox" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_cash_equity +#: model:account.account.type,name:account.conf_account_type_equity +msgid "Equity" +msgstr "" + +#. module: account +#: field:account.journal,internal_account_id:0 +msgid "Internal Transfers Account" +msgstr "" + +#. module: account +#: code:addons/account/wizard/pos_box.py:32 +#, python-format +msgid "Please check that the field 'Journal' is set on the Bank Statement" +msgstr "" + +#. module: account +#: selection:account.tax,type:0 +msgid "Percentage" +msgstr "" + +#. module: account +#: selection:account.config.settings,tax_calculation_rounding_method:0 +msgid "Round globally" +msgstr "" + +#. module: account +#: selection:account.report.general.ledger,sortby:0 +msgid "Journal & Partner" +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,power:0 +msgid "Power" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3465 +#, python-format +msgid "Cannot generate an unused journal code." +msgstr "" + +#. module: account +#: view:project.account.analytic.line:0 +msgid "View Account Analytic Lines" +msgstr "" + +#. module: account +#: field:account.invoice,internal_number:0 +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: account +#: field:account.bank.statement,difference:0 +msgid "Difference" +msgstr "" + +#. module: account +#: help:account.tax,include_base_amount:0 +msgid "" +"Indicates if the amount of tax must be included in the base amount for the " +"computation of the next taxes" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_partner_reconcile +msgid "Reconciliation: Go to Next Partner" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance +#: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance +msgid "Inverted Analytic Balance" +msgstr "" + +#. module: account +#: field:account.tax.template,applicable_type:0 +msgid "Applicable Type" +msgstr "" + +#. module: account +#: help:account.invoice,date_due:0 +msgid "" +"If you use payment terms, the due date will be computed automatically at the " +"generation of accounting entries. The payment term may compute several due " +"dates, for example 50% now and 50% in one month, but if you want to force a " +"due date, make sure that the payment term is not set on the invoice. If you " +"keep the payment term and the due date empty, it means direct payment." +msgstr "" + +#. module: account +#: code:addons/account/account.py:414 +#, python-format +msgid "" +"There is no opening/closing period defined, please create one to set the " +"initial balance." +msgstr "" + +#. module: account +#: help:account.tax.template,sequence:0 +msgid "" +"The sequence field is used to order the taxes lines from lower sequences to " +"higher ones. The order is important if you have a tax that has several tax " +"children. In this case, the evaluation order is important." +msgstr "" + +#. module: account +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 +#: code:addons/account/wizard/account_automatic_reconcile.py:148 +#: code:addons/account/wizard/account_fiscalyear_close.py:88 +#: code:addons/account/wizard/account_fiscalyear_close.py:99 +#: code:addons/account/wizard/account_fiscalyear_close.py:102 +#: code:addons/account/wizard/account_report_aged_partner_balance.py:56 +#: code:addons/account/wizard/account_report_aged_partner_balance.py:58 +#, python-format +msgid "User Error!" +msgstr "" + +#. module: account +#: view:account.open.closed.fiscalyear:0 +msgid "Discard" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: view:account.journal:0 +msgid "Liquidity" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form +#: model:ir.ui.menu,name:account.account_analytic_journal_entries +msgid "Analytic Journal Items" +msgstr "" + +#. module: account +#: field:account.config.settings,has_default_company:0 +msgid "Has default company" +msgstr "" + +#. module: account +#: view:account.fiscalyear.close:0 +msgid "" +"This wizard will generate the end of year journal entries of selected fiscal " +"year. Note that you can run this wizard many times for the same fiscal year: " +"it will simply replace the old opening entries with the new ones." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_bank_and_cash +msgid "Bank and Cash" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_analytic_entries_report +msgid "" +"From this view, have an analysis of your different analytic entries " +"following the analytic account you defined matching your business need. Use " +"the tool search to analyse information about analytic entries generated in " +"the system." +msgstr "" + +#. module: account +#: sql_constraint:account.journal:0 +msgid "The name of the journal must be unique per company !" +msgstr "" + +#. module: account +#: field:account.account.template,nocreate:0 +msgid "Optional create" +msgstr "" + +#. module: account +#: code:addons/account/account.py:686 +#, python-format +msgid "" +"You cannot change the owner company of an account that already contains " +"journal items." +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: selection:account.invoice,type:0 +#: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 +#: selection:report.invoice.created,type:0 +#, python-format +msgid "Supplier Refund" +msgstr "" + +#. module: account +#: field:account.bank.statement,move_line_ids:0 +msgid "Entry lines" +msgstr "" + +#. module: account +#: field:account.move.line,centralisation:0 +msgid "Centralisation" +msgstr "" + +#. module: account +#: view:account.account:0 +#: view:account.account.template:0 +#: view:account.analytic.account:0 +#: view:account.analytic.journal:0 +#: view:account.analytic.line:0 +#: view:account.bank.statement:0 +#: view:account.chart.template:0 +#: view:account.entries.report:0 +#: view:account.financial.report:0 +#: view:account.fiscalyear:0 +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: view:account.journal:0 +#: view:account.model:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: view:account.subscription:0 +#: view:account.tax.code.template:0 +#: view:analytic.entries.report:0 +msgid "Group By..." +msgstr "" + +#. module: account +#: code:addons/account/account.py:1024 +#, python-format +msgid "" +"There is no period defined for this date: %s.\n" +"Please create one." +msgstr "" + +#. module: account +#: field:account.analytic.line,product_uom_id:0 +#: field:account.invoice.line,uos_id:0 +#: field:account.move.line,product_uom_id:0 +msgid "Unit of Measure" +msgstr "" + +#. module: account +#: help:account.journal,group_invoice_lines:0 +msgid "" +"If this box is checked, the system will try to group the accounting lines " +"when generating them from invoices." +msgstr "" + +#. module: account +#: field:account.installer,has_default_company:0 +msgid "Has Default Company" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_sequence_fiscalyear +msgid "account.sequence.fiscalyear" +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +#: view:account.analytic.journal:0 +#: field:account.analytic.line,journal_id:0 +#: field:account.journal,analytic_journal_id:0 +#: model:ir.actions.act_window,name:account.action_account_analytic_journal +#: model:ir.actions.report.xml,name:account.analytic_journal_print +#: model:ir.model,name:account.model_account_analytic_journal +#: model:ir.ui.menu,name:account.account_analytic_journal_print +msgid "Analytic Journal" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Reconciled" +msgstr "" + +#. module: account +#: constraint:account.payment.term.line:0 +msgid "" +"Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " +"2%." +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: field:account.invoice.tax,base:0 +msgid "Base" +msgstr "" + +#. module: account +#: field:account.model,name:0 +msgid "Model Name" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_expense_categ:0 +msgid "Expense Category Account" +msgstr "" + +#. module: account +#: sql_constraint:account.tax:0 +msgid "Tax Name must be unique per company!" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Cash Transactions" +msgstr "" + +#. module: account +#: view:account.unreconcile:0 +msgid "" +"If you unreconcile transactions, you must also verify all the actions that " +"are linked to those transactions because they will not be disabled" +msgstr "" + +#. module: account +#: view:account.account.template:0 +#: view:account.bank.statement:0 +#: field:account.bank.statement.line,note:0 +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,note:0 +#: field:account.fiscal.position.template,note:0 +msgid "Notes" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_analytic_entries_report +msgid "Analytic Entries Statistics" +msgstr "" + +#. module: account +#: code:addons/account/account_analytic_line.py:142 +#: code:addons/account/account_move_line.py:955 +#, python-format +msgid "Entries: " +msgstr "" + +#. module: account +#: help:res.partner.bank,currency_id:0 +msgid "Currency of the related account journal." +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +msgid "" +"You cannot provide a secondary currency if it is the same than the company " +"one." +msgstr "" + +#. module: account +#: selection:account.tax.template,applicable_type:0 +msgid "True" +msgstr "" + +#. module: account +#: selection:account.account.type,report_type:0 +#: code:addons/account/account.py:190 +#, python-format +msgid "Balance Sheet (Asset account)" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_draftstatement0 +msgid "State is draft" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Next Partner Entries to reconcile" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Fax :" +msgstr "" + +#. module: account +#: help:res.partner,property_account_receivable:0 +msgid "" +"This account will be used instead of the default one as the receivable " +"account for the current partner" +msgstr "" + +#. module: account +#: field:account.tax,python_applicable:0 +#: field:account.tax,python_compute:0 +#: selection:account.tax,type:0 +#: selection:account.tax.template,applicable_type:0 +#: field:account.tax.template,python_applicable:0 +#: field:account.tax.template,python_compute:0 +#: selection:account.tax.template,type:0 +msgid "Python Code" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Journal Entries with period in current period" +msgstr "" + +#. module: account +#: help:account.journal,update_posted:0 +msgid "" +"Check this box if you want to allow the cancellation the entries related to " +"this journal or of the invoice related to this journal" +msgstr "" + +#. module: account +#: view:account.fiscalyear.close:0 +msgid "Create" +msgstr "" + +#. module: account +#: model:process.transition.action,name:account.process_transition_action_createentries0 +msgid "Create entry" +msgstr "" + +#. module: account +#: selection:account.account.type,report_type:0 +#: code:addons/account/account.py:189 +#, python-format +msgid "Profit & Loss (Expense account)" +msgstr "" + +#. module: account +#: field:account.bank.statement,total_entry_encoding:0 +msgid "Total Transactions" +msgstr "" + +#. module: account +#: code:addons/account/account.py:636 +#, python-format +msgid "You cannot remove an account that contains journal items." +msgstr "" + +#. module: account +#: code:addons/account/account.py:1024 +#: code:addons/account/account_move_line.py:1105 +#, python-format +msgid "Error !" +msgstr "" + +#. module: account +#: field:account.financial.report,style_overwrite:0 +msgid "Financial Report Style" +msgstr "" + +#. module: account +#: selection:account.financial.report,sign:0 +msgid "Preserve balance sign" +msgstr "" + +#. module: account +#: view:account.vat.declaration:0 +#: model:ir.actions.report.xml,name:account.account_vat_declaration +#: model:ir.ui.menu,name:account.menu_account_vat_declaration +msgid "Taxes Report" +msgstr "" + +#. module: account +#: selection:account.journal.period,state:0 +msgid "Printed" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Project line" +msgstr "" + +#. module: account +#: field:account.invoice.tax,manual:0 +msgid "Manual" +msgstr "" + +#. module: account +#: selection:account.invoice.refund,filter_refund:0 +msgid "Cancel: create refund and reconcile" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_report_aged_partner_balance.py:58 +#, python-format +msgid "You must set a start date." +msgstr "" + +#. module: account +#: view:account.automatic.reconcile:0 +msgid "" +"For an invoice to be considered as paid, the invoice entries must be " +"reconciled with counterparts, usually payments. With the automatic " +"reconciliation functionality, OpenERP makes its own search for entries to " +"reconcile in a series of accounts. It finds entries for each partner where " +"the amounts correspond." +msgstr "" + +#. module: account +#: view:account.move:0 +#: field:account.move,to_check:0 +msgid "To Review" +msgstr "" + +#. module: account +#: help:account.partner.ledger,initial_balance:0 +#: help:account.report.general.ledger,initial_balance:0 +msgid "" +"If you selected to filter by date or period, this field allow you to add a " +"row to display the amount of debit/credit/balance that precedes the filter " +"you've set." +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: view:account.move:0 +#: model:ir.actions.act_window,name:account.action_move_journal_line +#: model:ir.ui.menu,name:account.menu_action_move_journal_line_form +#: model:ir.ui.menu,name:account.menu_finance_entries +msgid "Journal Entries" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_invoice_refund.py:147 +#, python-format +msgid "No period found on the invoice." +msgstr "" + +#. module: account +#: help:account.partner.ledger,page_split:0 +msgid "Display Ledger Report with One partner per page" +msgstr "" + +#. module: account +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +msgid "JRNL" +msgstr "" + +#. module: account +#: view:account.state.open:0 +msgid "Yes" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,target_move:0 +#: selection:account.balance.report,target_move:0 +#: selection:account.central.journal,target_move:0 +#: selection:account.chart,target_move:0 +#: selection:account.common.account.report,target_move:0 +#: selection:account.common.journal.report,target_move:0 +#: selection:account.common.partner.report,target_move:0 +#: selection:account.common.report,target_move:0 +#: selection:account.general.journal,target_move:0 +#: selection:account.partner.balance,target_move:0 +#: selection:account.partner.ledger,target_move:0 +#: selection:account.print.journal,target_move:0 +#: selection:account.report.general.ledger,target_move:0 +#: selection:account.tax.chart,target_move:0 +#: selection:account.vat.declaration,target_move:0 +#: selection:accounting.report,target_move:0 +#: code:addons/account/report/common_report_header.py:67 +#, python-format +msgid "All Entries" +msgstr "" + +#. module: account +#: constraint:account.move.reconcile:0 +msgid "You can only reconcile journal items with the same partner." +msgstr "" + +#. module: account +#: view:account.journal.select:0 +msgid "Journal Select" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: code:addons/account/account.py:422 +#: code:addons/account/account.py:434 +#, python-format +msgid "Opening Balance" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_move_reconcile +msgid "Account Reconciliation" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_tax +msgid "Taxes Fiscal Position" +msgstr "" + +#. module: account +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: model:ir.actions.act_window,name:account.action_account_general_ledger_menu +#: model:ir.actions.report.xml,name:account.account_general_ledger +#: model:ir.actions.report.xml,name:account.account_general_ledger_landscape +#: model:ir.ui.menu,name:account.menu_general_ledger +msgid "General Ledger" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_paymentorderbank0 +msgid "The payment order is sent to the bank." +msgstr "" + +#. module: account +#: help:account.move,to_check:0 +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 +#: field:account.chart.template,complete_tax_set:0 +#: field:wizard.multi.charts.accounts,complete_tax_set:0 +msgid "Complete Set of Taxes" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_validate_account_move.py:61 +#, python-format +msgid "" +"Selected Entry Lines does not have any account move enties in draft state." +msgstr "" + +#. module: account +#: view:account.chart.template:0 +msgid "Properties" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_tax_chart +msgid "Account tax chart" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +#: report:account.central.journal:0 +#: report:account.general.journal:0 +#: report:account.invoice:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: report:account.partner.balance:0 +msgid "Total:" +msgstr "" + +#. module: account +#: constraint:account.journal:0 +msgid "" +"Configuration error!\n" +"The currency chosen should be shared by the default accounts too." +msgstr "" + +#. module: account +#: code:addons/account/account.py:2304 +#, python-format +msgid "" +"You can specify year, month and date in the name of the model using the " +"following labels:\n" +"\n" +"%(year)s: To Specify Year \n" +"%(month)s: To Specify Month \n" +"%(date)s: Current Date\n" +"\n" +"e.g. My model on %(date)s" +msgstr "" + +#. module: account +#: field:account.invoice,paypal_url:0 +msgid "Paypal Url" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_voucher:0 +msgid "Manage customer payments" +msgstr "" + +#. module: account +#: help:report.invoice.created,origin:0 +msgid "Reference of the document that generated this invoice report." +msgstr "" + +#. module: account +#: field:account.tax.code,child_ids:0 +#: field:account.tax.code.template,child_ids:0 +msgid "Child Codes" +msgstr "" + +#. module: account +#: constraint:account.fiscalyear:0 +msgid "" +"Error!\n" +"The start date of a fiscal year must precede its end date." +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Taxes used in Sales" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree1 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree1 +msgid "Customer Invoices" +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Misc" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Sales" +msgstr "" + +#. module: account +#: selection:account.invoice.report,state:0 +#: selection:account.journal.period,state:0 +#: selection:account.subscription,state:0 +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1319 +#, python-format +msgid "" +"You cannot validate a non-balanced entry.\n" +"Make sure you have configured payment terms properly.\n" +"The latest payment term line should be of the \"Balance\" type." +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_invoicemanually0 +msgid "A statement with manual entries becomes a draft statement." +msgstr "" + +#. module: account +#: view:account.aged.trial.balance:0 +msgid "" +"Aged Partner Balance is a more detailed report of your receivables by " +"intervals. When opening that report, OpenERP asks for the name of the " +"company, the fiscal period and the size of the interval to be analyzed (in " +"days). OpenERP then calculates a table of credit balance by period. So if " +"you request an interval of 30 days OpenERP generates an analysis of " +"creditors for the past month, past two months, and so on. " +msgstr "" + +#. module: account +#: field:account.invoice,origin:0 +#: field:account.invoice.line,origin:0 +#: field:report.invoice.created,origin:0 +msgid "Source Document" +msgstr "" + +#. module: account +#: help:account.config.settings,company_footer:0 +msgid "Bank accounts as printed in the footer of each printed document" +msgstr "" + +#. module: account +#: constraint:account.account:0 +msgid "" +"Configuration Error!\n" +"You cannot define children to an account with internal type different of " +"\"View\"." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_accounting_report +msgid "Accounting Report" +msgstr "" + +#. module: account +#: field:account.analytic.line,currency_id:0 +msgid "Account Currency" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Taxes:" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:458 +#, python-format +msgid "" +"You can not delete an invoice which is not cancelled. You should refund it " +"instead." +msgstr "" + +#. module: account +#: help:account.tax,amount:0 +msgid "For taxes of type percentage, enter % ratio between 0-1." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy +msgid "Financial Reports Hierarchy" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation +msgid "Monthly Turnover" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Analytic Lines" +msgstr "" + +#. module: account +#: field:account.analytic.journal,line_ids:0 +#: field:account.tax.code,line_ids:0 +msgid "Lines" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Account Tax Template" +msgstr "" + +#. module: account +#: view:account.journal.select:0 +msgid "Are you sure you want to open Journal Entries?" +msgstr "" + +#. module: account +#: view:account.state.open:0 +msgid "Are you sure you want to open this invoice ?" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_expense_opening:0 +msgid "Opening Entries Expense Account" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Customer Reference" +msgstr "" + +#. module: account +#: field:account.account.template,parent_id:0 +msgid "Parent Account Template" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Price" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement,closing_details_ids:0 +msgid "Closing Cashbox Lines" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement.line,statement_id:0 +#: field:account.move.line,statement_id:0 +#: model:process.process,name:account.process_process_statementprocess0 +msgid "Statement" +msgstr "" + +#. module: account +#: help:account.journal,default_debit_account_id:0 +msgid "It acts as a default account for debit amount" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Posted entries" +msgstr "" + +#. module: account +#: help:account.payment.term.line,value_amount:0 +msgid "For percent enter a ratio between 0-1." +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +#: field:account.invoice,date_invoice:0 +#: field:report.invoice.created,date_invoice:0 +msgid "Invoice Date" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Group by year of Invoice Date" +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_tax_rate:0 +msgid "Purchase tax (%)" +msgstr "" + +#. module: account +#: help:res.partner,credit:0 +msgid "Total amount this customer owes you." +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Unbalanced Journal Items" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.open_account_charts_modules +msgid "Chart Templates" +msgstr "" + +#. module: account +#: field:account.journal.period,icon:0 +msgid "Icon" +msgstr "" + +#. module: account +#: view:account.use.model:0 +msgid "Ok" +msgstr "" + +#. module: account +#: field:account.chart.template,tax_code_root_id:0 +msgid "Root Tax Code" +msgstr "" + +#. module: account +#: help:account.journal,centralisation:0 +msgid "" +"Check this box to determine that each entry of this journal won't create a " +"new counterpart but will share the same counterpart. This is used in fiscal " +"year closing." +msgstr "" + +#. module: account +#: field:account.bank.statement,closing_date:0 +msgid "Closed On" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,purchase_tax:0 +msgid "Default Purchase Tax" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_income_opening:0 +msgid "Opening Entries Income Account" +msgstr "" + +#. module: account +#: field:account.config.settings,group_proforma_invoices:0 +msgid "Allow pro-forma invoices" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Confirm" +msgstr "" + +#. module: account +#: help:account.tax,domain:0 +#: help:account.tax.template,domain:0 +msgid "" +"This field is only used if you develop your own module allowing developers " +"to create specific taxes in a custom domain." +msgstr "" + +#. module: account +#: field:account.invoice,reference:0 +#: field:account.invoice.line,invoice_id:0 +msgid "Invoice Reference" +msgstr "" + +#. module: account +#: field:account.fiscalyear.close,report_name:0 +msgid "Name of new entries" +msgstr "" + +#. module: account +#: view:account.use.model:0 +msgid "Create Entries" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_cash_box_out +msgid "cash.box.out" +msgstr "" + +#. module: account +#: help:account.config.settings,currency_id:0 +msgid "Main currency of the company." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_reports +msgid "Reporting" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/account_move_line.py:780 +#: code:addons/account/static/src/js/account_move_reconciliation.js:90 +#, python-format +msgid "Warning" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_analytic_open +msgid "Contracts/Analytic Accounts" +msgstr "" + +#. module: account +#: view:account.journal:0 +#: field:res.partner.bank,journal_id:0 +msgid "Account Journal" +msgstr "" + +#. module: account +#: field:account.config.settings,tax_calculation_rounding_method:0 +msgid "Tax calculation rounding method" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_paidinvoice0 +#: model:process.node,name:account.process_node_supplierpaidinvoice0 +msgid "Paid invoice" +msgstr "" + +#. module: account +#: view:account.invoice.refund:0 +msgid "" +"Use this option if you want to cancel an invoice you should not\n" +" have issued. The credit note will be " +"created, validated and reconciled\n" +" with the invoice. You will not be able " +"to modify the credit note." +msgstr "" + +#. module: account +#: help:account.partner.reconcile.process,next_partner_id:0 +msgid "" +"This field shows you the next partner that will be automatically chosen by " +"the system to go through the reconciliation process, based on the latest day " +"it have been reconciled." +msgstr "" + +#. module: account +#: field:account.move.line.reconcile.writeoff,comment:0 +msgid "Comment" +msgstr "" + +#. module: account +#: field:account.tax,domain:0 +#: field:account.tax.template,domain:0 +msgid "Domain" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_use_model +msgid "Use model" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1490 +#, python-format +msgid "" +"There is no default credit account defined \n" +"on journal \"%s\"." +msgstr "" + +#. module: account +#: view:account.invoice.line:0 +#: field:account.invoice.tax,invoice_id:0 +#: model:ir.model,name:account.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Customer And Supplier Refunds" +msgstr "" + +#. module: account +#: field:account.financial.report,sign:0 +msgid "Sign on Reports" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_analytic_account_tree2 +msgid "" +"

\n" +" Click to add a new analytic account.\n" +"

\n" +" The normal chart of accounts has a structure defined by the\n" +" legal requirement of the country. The analytic chart of\n" +" accounts structure should reflect your own business needs " +"in\n" +" term of costs/revenues reporting.\n" +"

\n" +" They are usually structured by contracts, projects, products " +"or\n" +" departements. Most of the OpenERP operations (invoices,\n" +" timesheets, expenses, etc) generate analytic entries on the\n" +" related account.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_view +msgid "Root/View" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3206 +#, python-format +msgid "OPEJ" +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account +#: selection:account.entries.report,move_line_state:0 +#: view:account.move.line:0 +#: selection:account.move.line,state:0 +msgid "Unbalanced" +msgstr "" + +#. module: account +#: selection:account.move.line,centralisation:0 +msgid "Normal" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_email_templates +#: model:ir.ui.menu,name:account.menu_email_templates +msgid "Email Templates" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Optional Information" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: field:account.bank.statement,user_id:0 +#: view:account.journal:0 +#: field:account.journal,user_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,user_id:0 +msgid "User" +msgstr "" + +#. module: account +#: selection:account.account,currency_mode:0 +msgid "At Date" +msgstr "" + +#. module: account +#: help:account.move.line,date_maturity:0 +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_multi_currency +msgid "Multi-Currencies" +msgstr "" + +#. module: account +#: field:account.model.line,date_maturity:0 +msgid "Maturity Date" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3193 +#, python-format +msgid "Sales Journal" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1185 +#, python-format +msgid "No piece number !" +msgstr "" + +#. module: account +#: view:account.financial.report:0 +#: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy +msgid "Account Reports Hierarchy" +msgstr "" + +#. module: account +#: help:account.account.template,chart_template_id:0 +msgid "" +"This optional field allow you to link an account template to a specific " +"chart template that may differ from the one its root parent belongs to. This " +"allow you to define chart templates that extend another and complete it with " +"few new accounts (You don't need to define the whole structure that is " +"common to both several times)." +msgstr "" + +#. module: account +#: view:account.move:0 +msgid "Unposted Journal Entries" +msgstr "" + +#. module: account +#: help:account.invoice.refund,date:0 +msgid "" +"This date will be used as the invoice date for credit note and period will " +"be chosen accordingly!" +msgstr "" + +#. module: account +#: view:product.template:0 +msgid "Sales Properties" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3541 +#, python-format +msgid "" +"You have to set a code for the bank account defined on the selected chart of " +"accounts." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_manual_reconcile +msgid "Manual Reconciliation" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Total amount due:" +msgstr "" + +#. module: account +#: field:account.analytic.chart,to_date:0 +#: field:project.account.analytic.line,to_date:0 +msgid "To" +msgstr "" + +#. module: account +#: selection:account.move.line,centralisation:0 +#: code:addons/account/account.py:1541 +#, python-format +msgid "Currency Adjustment" +msgstr "" + +#. module: account +#: field:account.fiscalyear.close,fy_id:0 +msgid "Fiscal Year to close" +msgstr "" + +#. module: account +#: view:account.invoice.cancel:0 +#: model:ir.actions.act_window,name:account.action_account_invoice_cancel +msgid "Cancel Selected Invoices" +msgstr "" + +#. module: account +#: help:account.account.type,report_type:0 +msgid "" +"This field is used to generate legal reports: profit and loss, balance sheet." +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "May" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:820 +#, python-format +msgid "Global taxes defined, but they are not in invoice lines !" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: account +#: help:account.model.line,sequence:0 +msgid "" +"The sequence field is used to order the resources from lower sequences to " +"higher ones." +msgstr "" + +#. module: account +#: field:account.move.line,amount_residual_currency:0 +msgid "Residual Amount in Currency" +msgstr "" + +#. module: account +#: field:account.config.settings,sale_refund_sequence_prefix:0 +msgid "Credit note sequence" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_validate_account_move +#: model:ir.actions.act_window,name:account.action_validate_account_move_line +#: model:ir.ui.menu,name:account.menu_validate_account_moves +#: view:validate.account.move:0 +#: view:validate.account.move.lines:0 +msgid "Post Journal Entries" +msgstr "" + +#. module: account +#: selection:account.bank.statement.line,type:0 +#: view:account.config.settings:0 +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:388 +#, python-format +msgid "Customer" +msgstr "" + +#. module: account +#: field:account.financial.report,name:0 +msgid "Report Name" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_cash +#: selection:account.analytic.journal,type:0 +#: selection:account.bank.accounts.wizard,account_type:0 +#: selection:account.entries.report,type:0 +#: selection:account.journal,type:0 +#: code:addons/account/account.py:3092 +#, python-format +msgid "Cash" +msgstr "" + +#. module: account +#: field:account.fiscal.position.account,account_dest_id:0 +#: field:account.fiscal.position.account.template,account_dest_id:0 +msgid "Account Destination" +msgstr "" + +#. module: account +#: help:account.invoice.refund,filter_refund:0 +msgid "" +"Refund base on this type. You can not Modify and Cancel if the invoice is " +"already reconciled" +msgstr "" + +#. module: account +#: field:account.bank.statement.line,sequence:0 +#: field:account.financial.report,sequence:0 +#: field:account.invoice.line,sequence:0 +#: field:account.invoice.tax,sequence:0 +#: field:account.model.line,sequence:0 +#: field:account.sequence.fiscalyear,sequence_id:0 +#: field:account.tax,sequence:0 +#: field:account.tax.code,sequence:0 +#: field:account.tax.template,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: account +#: field:account.config.settings,paypal_account:0 +msgid "Paypal account" +msgstr "" + +#. module: account +#: selection:account.print.journal,sort_selection:0 +msgid "Journal Entry Number" +msgstr "" + +#. module: account +#: view:account.financial.report:0 +msgid "Parent Report" +msgstr "" + +#. module: account +#: constraint:account.account:0 +#: constraint:account.tax.code:0 +msgid "" +"Error!\n" +"You cannot create recursive accounts." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_cash_box_in +msgid "cash.box.in" +msgstr "" + +#. module: account +#: help:account.invoice,move_id:0 +msgid "Link to the automatically generated Journal Items." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account +#: selection:account.config.settings,period:0 +#: selection:account.installer,period:0 +msgid "Monthly" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_asset +msgid "Asset" +msgstr "" + +#. module: account +#: field:account.bank.statement,balance_end:0 +msgid "Computed Balance" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/js/account_move_reconciliation.js:89 +#, python-format +msgid "You must choose at least one record." +msgstr "" + +#. module: account +#: field:account.account,parent_id:0 +#: field:account.financial.report,parent_id:0 +msgid "Parent" +msgstr "" + +#. module: account +#: code:addons/account/account_cash_statement.py:292 +#, python-format +msgid "Profit" +msgstr "" + +#. module: account +#: help:account.payment.term.line,days2:0 +msgid "" +"Day of the month, set -1 for the last day of the current month. If it's " +"positive, it gives the day of the next month. Set 0 for net days (otherwise " +"it's based on the beginning of the month)." +msgstr "" + +#. module: account +#: view:account.move.line.reconcile:0 +msgid "Reconciliation Transactions" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_legal_statement +msgid "Legal Reports" +msgstr "" + +#. module: account +#: field:account.tax.code,sum_period:0 +msgid "Period Sum" +msgstr "" + +#. module: account +#: help:account.tax,sequence:0 +msgid "" +"The sequence field is used to order the tax lines from the lowest sequences " +"to the higher ones. The order is important if you have a tax with several " +"tax children. In this case, the evaluation order is important." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_cashbox_line +msgid "CashBox Line" +msgstr "" + +#. module: account +#: field:account.installer,charts:0 +msgid "Accounting Package" +msgstr "" + +#. module: account +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: model:ir.actions.act_window,name:account.action_account_partner_ledger +#: model:ir.actions.report.xml,name:account.account_3rdparty_ledger +#: model:ir.actions.report.xml,name:account.account_3rdparty_ledger_other +#: model:ir.ui.menu,name:account.menu_account_partner_ledger +msgid "Partner Ledger" +msgstr "" + +#. module: account +#: selection:account.tax.template,type:0 +msgid "Fixed" +msgstr "" + +#. module: account +#: code:addons/account/account.py:653 +#: code:addons/account/account.py:656 +#: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: account +#: help:account.bank.statement,message_unread:0 +#: help:account.invoice,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account +#: field:res.company,tax_calculation_rounding_method:0 +msgid "Tax Calculation Rounding Method" +msgstr "" + +#. module: account +#: field:account.entries.report,move_line_state:0 +msgid "State of Move Line" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_move_line_reconcile +msgid "Account move line reconcile" +msgstr "" + +#. module: account +#: view:account.subscription.generate:0 +#: model:ir.model,name:account.model_account_subscription_generate +msgid "Subscription Compute" +msgstr "" + +#. module: account +#: view:account.move.line.unreconcile.select:0 +msgid "Open for Unreconciliation" +msgstr "" + +#. module: account +#: field:account.bank.statement.line,partner_id:0 +#: view:account.entries.report:0 +#: field:account.entries.report,partner_id:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: view:account.invoice:0 +#: field:account.invoice,partner_id:0 +#: field:account.invoice.line,partner_id:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,partner_id:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.model.line,partner_id:0 +#: view:account.move:0 +#: field:account.move,partner_id:0 +#: view:account.move.line:0 +#: field:account.move.line,partner_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,partner_id:0 +#: model:ir.model,name:account.model_res_partner +#: field:report.invoice.created,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account +#: help:account.change.currency,currency_id:0 +msgid "Select a currency to apply on the invoice" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:901 +#, python-format +msgid "No Invoice Lines !" +msgstr "" + +#. module: account +#: view:account.financial.report:0 +msgid "Report Type" +msgstr "" + +#. module: account +#: help:account.open.closed.fiscalyear,fyear_id:0 +msgid "" +"Select Fiscal Year which you want to remove entries for its End of year " +"entries journal" +msgstr "" + +#. module: account +#: field:account.tax.template,type_tax_use:0 +msgid "Tax Use In" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:382 +#, python-format +msgid "" +"The statement balance is incorrect !\n" +"The expected balance (%.2f) is different than the computed one. (%.2f)" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:420 +#, python-format +msgid "The account entries lines are not in valid state." +msgstr "" + +#. module: account +#: field:account.account.type,close_method:0 +msgid "Deferral Method" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_electronicfile0 +msgid "Automatic entry" +msgstr "" + +#. module: account +#: help:account.account,reconcile:0 +msgid "" +"Check this box if this account allows reconciliation of journal items." +msgstr "" + +#. module: account +#: report:account.analytic.account.inverted.balance:0 +msgid "Inverted Analytic Balance -" +msgstr "" + +#. module: account +#: help:account.move.reconcile,opening_reconciliation:0 +msgid "" +"Is this reconciliation produced by the opening of a new fiscal year ?." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: model:ir.actions.act_window,name:account.action_account_analytic_line_form +msgid "Analytic Entries" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Associated Partner" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:1465 +#, python-format +msgid "You must first select a partner !" +msgstr "" + +#. module: account +#: field:account.invoice,comment:0 +msgid "Additional Information" +msgstr "" + +#. module: account +#: field:account.invoice.report,residual:0 +#: field:account.invoice.report,user_currency_residual:0 +msgid "Total Residual" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Opening Cash Control" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_invoiceinvoice0 +#: model:process.node,note:account.process_node_supplierinvoiceinvoice0 +msgid "Invoice's state is Open" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: view:account.bank.statement:0 +#: field:account.bank.statement,state:0 +#: field:account.entries.report,move_state:0 +#: view:account.fiscalyear:0 +#: field:account.fiscalyear,state:0 +#: view:account.invoice:0 +#: field:account.invoice,state:0 +#: view:account.invoice.report:0 +#: field:account.journal.period,state:0 +#: field:account.move,state:0 +#: view:account.move.line:0 +#: field:account.move.line,state:0 +#: field:account.period,state:0 +#: view:account.subscription:0 +#: field:account.subscription,state:0 +#: field:report.invoice.created,state:0 +msgid "Status" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +#: model:ir.actions.act_window,name:account.action_account_analytic_cost +#: model:ir.actions.report.xml,name:account.account_analytic_account_cost_ledger +msgid "Cost Ledger" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "No Fiscal Year Defined for This Company" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Proforma" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +msgid "J.C. /Move name" +msgstr "" + +#. module: account +#: help:account.tax.template,include_base_amount:0 +msgid "" +"Set if the amount of tax must be included in the base amount before " +"computing the next taxes." +msgstr "" + +#. module: account +#: code:addons/account/account.py:3196 +#, python-format +msgid "Purchase Refund Journal" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1333 +#, python-format +msgid "Please define a sequence on the journal." +msgstr "" + +#. module: account +#: help:account.tax.template,amount:0 +msgid "For Tax Type percent enter % ratio between 0-1." +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Current Accounts" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Group by Invoice Date" +msgstr "" + +#. module: account +#: help:account.journal,user_id:0 +msgid "The user responsible for this journal" +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_followup:0 +msgid "" +"This allows to automate letters for unpaid invoices, with multi-level " +"recalls.\n" +" This installs the module account_followup." +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,period_id:0 +#: view:account.bank.statement:0 +#: field:account.bank.statement,period_id:0 +#: view:account.entries.report:0 +#: field:account.entries.report,period_id:0 +#: view:account.fiscalyear:0 +#: report:account.general.ledger_landscape:0 +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: field:account.journal.period,period_id:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: view:account.move:0 +#: field:account.move,period_id:0 +#: view:account.move.line:0 +#: field:account.move.line,period_id:0 +#: view:account.period:0 +#: field:account.subscription,period_nbr:0 +#: field:account.tax.chart,period_id:0 +#: field:account.treasury.report,period_id:0 +#: field:validate.account.move,period_id:0 +msgid "Period" +msgstr "" + +#. module: account +#: help:account.account,adjusted_balance:0 +msgid "" +"Total amount (in Company currency) for transactions held in secondary " +"currency for this account." +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Net Total:" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_report_common.py:158 +#, python-format +msgid "Select a starting and an ending period." +msgstr "" + +#. module: account +#: field:account.config.settings,sale_sequence_next:0 +msgid "Next invoice number" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_generic_reporting +msgid "Generic Reporting" +msgstr "" + +#. module: account +#: field:account.move.line.reconcile.writeoff,journal_id:0 +msgid "Write-Off Journal" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_income_categ:0 +msgid "Income Category Account" +msgstr "" + +#. module: account +#: field:account.account,adjusted_balance:0 +msgid "Adjusted Balance" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form +#: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form_template +msgid "Fiscal Position Templates" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Int.Type" +msgstr "" + +#. module: account +#: field:account.move.line,tax_amount:0 +msgid "Tax/Base Amount" +msgstr "" + +#. module: account +#: view:account.open.closed.fiscalyear:0 +msgid "" +"This wizard will remove the end of year journal entries of selected fiscal " +"year. Note that you can run this wizard many times for the same fiscal year." +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Tel. :" +msgstr "" + +#. module: account +#: field:account.account,company_currency_id:0 +msgid "Company Currency" +msgstr "" + +#. module: account +#: field:account.aged.trial.balance,chart_account_id:0 +#: field:account.balance.report,chart_account_id:0 +#: field:account.central.journal,chart_account_id:0 +#: field:account.common.account.report,chart_account_id:0 +#: field:account.common.journal.report,chart_account_id:0 +#: field:account.common.partner.report,chart_account_id:0 +#: field:account.common.report,chart_account_id:0 +#: view:account.config.settings:0 +#: field:account.general.journal,chart_account_id:0 +#: field:account.partner.balance,chart_account_id:0 +#: field:account.partner.ledger,chart_account_id:0 +#: field:account.print.journal,chart_account_id:0 +#: field:account.report.general.ledger,chart_account_id:0 +#: field:account.vat.declaration,chart_account_id:0 +#: field:accounting.report,chart_account_id:0 +msgid "Chart of Account" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_paymententries0 +#: model:process.transition,name:account.process_transition_reconcilepaid0 +msgid "Payment" +msgstr "" + +#. module: account +#: view:account.automatic.reconcile:0 +msgid "Reconciliation Result" +msgstr "" + +#. module: account +#: field:account.bank.statement,balance_end_real:0 +#: field:account.treasury.report,ending_balance:0 +msgid "Ending Balance" +msgstr "" + +#. module: account +#: field:account.journal,centralisation:0 +msgid "Centralized Counterpart" +msgstr "" + +#. module: account +#: help:account.move.line,blocked:0 +msgid "" +"You can check this box to mark this journal item as a litigation with the " +"associated partner" +msgstr "" + +#. module: account +#: field:account.move.line,reconcile_partial_id:0 +#: view:account.move.line.reconcile:0 +msgid "Partial Reconcile" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_inverted_balance +msgid "Account Analytic Inverted Balance" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_common_report +msgid "Account Common Report" +msgstr "" + +#. module: account +#: view:account.invoice.refund:0 +msgid "" +"Use this option if you want to cancel an invoice and create a new\n" +" one. The credit note will be created, " +"validated and reconciled\n" +" with the current invoice. A new, draft, " +"invoice will be created \n" +" so that you can edit it." +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_filestatement0 +msgid "Automatic import of the bank sta" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:381 +#, python-format +msgid "Unknown Error!" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_move_bank_reconcile +msgid "Move bank reconcile" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Apply" +msgstr "" + +#. module: account +#: field:account.financial.report,account_type_ids:0 +#: model:ir.actions.act_window,name:account.action_account_type_form +#: model:ir.ui.menu,name:account.menu_action_account_type_form +msgid "Account Types" +msgstr "" + +#. module: account +#: model:email.template,subject:account.email_template_edi_invoice +msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1210 +#, python-format +msgid "" +"You cannot use this general account in this journal, check the tab 'Entry " +"Controls' on the related journal." +msgstr "" + +#. module: account +#: field:account.account.type,report_type:0 +msgid "P&L / BS Category" +msgstr "" + +#. module: account +#: view:account.automatic.reconcile:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: view:account.move.line.reconcile:0 +#: view:account.move.line.reconcile.select:0 +#: code:addons/account/wizard/account_move_line_reconcile_select.py:45 +#: model:ir.ui.menu,name:account.periodical_processing_reconciliation +#: model:process.node,name:account.process_node_reconciliation0 +#: model:process.node,name:account.process_node_supplierreconciliation0 +#, python-format +msgid "Reconciliation" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Keep empty to use the income account" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "" +"This button only appears when the state of the invoice is 'paid' (showing " +"that it has been fully reconciled) and auto-computed boolean 'reconciled' is " +"False (depicting that it's not the case anymore). In other words, the " +"invoice has been dereconciled and it does not fit anymore the 'paid' state. " +"You should press this button to re-open it and let it continue its normal " +"process after having resolved the eventual exceptions it may have created." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_journal_form +msgid "" +"

\n" +" Click to add a journal.\n" +"

\n" +" A journal is used to record transactions of all accounting " +"data\n" +" related to the day-to-day business.\n" +"

\n" +" A typical company may use one journal per payment method " +"(cash,\n" +" bank accounts, checks), one purchase journal, one sale " +"journal\n" +" and one for miscellaneous information.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscalyear_close_state +msgid "Fiscalyear Close state" +msgstr "" + +#. module: account +#: field:account.invoice.refund,journal_id:0 +msgid "Refund Journal" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: report:account.central.journal:0 +#: report:account.general.journal:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.partner.balance:0 +msgid "Filter By" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_period_close.py:51 +#, python-format +msgid "" +"In order to close a period, you must first post related journal entries." +msgstr "" + +#. module: account +#: view:account.entries.report:0 +#: view:board.board:0 +#: model:ir.actions.act_window,name:account.action_company_analysis_tree +msgid "Company Analysis" +msgstr "" + +#. module: account +#: help:account.invoice,account_id:0 +msgid "The partner account used for this invoice." +msgstr "" + +#. module: account +#: code:addons/account/account.py:3391 +#, python-format +msgid "Tax %.2f%%" +msgstr "" + +#. module: account +#: field:account.tax.code,parent_id:0 +#: view:account.tax.code.template:0 +#: field:account.tax.code.template,parent_id:0 +msgid "Parent Code" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_payment_term_line +msgid "Payment Term Line" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3194 +#, python-format +msgid "Purchase Journal" +msgstr "" + +#. module: account +#: field:account.invoice,amount_untaxed:0 +msgid "Subtotal" +msgstr "" + +#. module: account +#: view:account.vat.declaration:0 +msgid "Print Tax Statement" +msgstr "" + +#. module: account +#: view:account.model.line:0 +msgid "Journal Entry Model Line" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: field:account.invoice,date_due:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,date_due:0 +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_supplier +#: model:ir.ui.menu,name:account.menu_finance_payables +msgid "Suppliers" +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Accounts Type Allowed (empty for no control)" +msgstr "" + +#. module: account +#: help:account.move.line,amount_residual:0 +msgid "" +"The residual amount on a receivable or payable of a journal entry expressed " +"in the company currency." +msgstr "" + +#. module: account +#: view:account.tax.code:0 +msgid "Statistics" +msgstr "" + +#. module: account +#: field:account.analytic.chart,from_date:0 +#: field:project.account.analytic.line,from_date:0 +msgid "From" +msgstr "" + +#. module: account +#: help:accounting.report,debit_credit:0 +msgid "" +"This option allows you to get more details about the way your balances are " +"computed. Because it is space consuming, we do not allow to use it while " +"doing a comparison." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscalyear_close +msgid "Fiscalyear Close" +msgstr "" + +#. module: account +#: sql_constraint:account.account:0 +msgid "The code of the account must be unique per company !" +msgstr "" + +#. module: account +#: help:product.category,property_account_expense_categ:0 +#: help:product.template,property_account_expense:0 +msgid "This account will be used to value outgoing stock using cost price." +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened +msgid "Unpaid Invoices" +msgstr "" + +#. module: account +#: field:account.move.line.reconcile,debit:0 +msgid "Debit amount" +msgstr "" + +#. module: account +#: view:account.aged.trial.balance:0 +#: view:account.analytic.balance:0 +#: view:account.analytic.cost.ledger:0 +#: view:account.analytic.cost.ledger.journal.report:0 +#: view:account.analytic.inverted.balance:0 +#: view:account.analytic.journal.report:0 +#: view:account.common.report:0 +#: view:account.invoice:0 +msgid "Print" +msgstr "" + +#. module: account +#: view:account.period.close:0 +msgid "Are you sure?" +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Accounts Allowed (empty for no control)" +msgstr "" + +#. module: account +#: field:account.config.settings,sale_tax_rate:0 +msgid "Sales tax (%)" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 +#: model:ir.actions.act_window,name:account.action_account_analytic_chart +#: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 +msgid "Chart of Analytic Accounts" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_subscription_form +msgid "" +"

\n" +" Click to define a new recurring entry.\n" +"

\n" +" A recurring entry occurs on a recurrent basis from a " +"specific\n" +" date, i.e. corresponding to the signature of a contract or " +"an\n" +" agreement with a customer or a supplier. You can create " +"such\n" +" entries to automate the postings in the system.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: view:account.journal:0 +#: model:ir.ui.menu,name:account.menu_configuration_misc +msgid "Miscellaneous" +msgstr "" + +#. module: account +#: help:res.partner,debit:0 +msgid "Total amount you have to pay to this supplier." +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_analytic0 +#: model:process.node,name:account.process_node_analyticcost0 +msgid "Analytic Costs" +msgstr "" + +#. module: account +#: field:account.analytic.journal,name:0 +#: report:account.general.journal:0 +#: field:account.journal,name:0 +msgid "Journal Name" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:829 +#, python-format +msgid "Entry \"%s\" is not valid !" +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Smallest Text" +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_check_writing:0 +msgid "" +"This allows you to check writing and printing.\n" +" This installs the module account_check_writing." +msgstr "" + +#. module: account +#: model:res.groups,name:account.group_account_invoice +msgid "Invoicing & Payments" +msgstr "" + +#. module: account +#: help:account.invoice,internal_number:0 +msgid "" +"Unique number of the invoice, computed automatically when the invoice is " +"created." +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_expense +#: model:account.financial.report,name:account.account_financial_report_expense0 +msgid "Expense" +msgstr "" + +#. module: account +#: help:account.chart,fiscalyear:0 +msgid "Keep empty for all open fiscal years" +msgstr "" + +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "" +"The amount expressed in an optional other currency if it is a multi-currency " +"entry." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1006 +#, python-format +msgid "The account move (%s) for centralisation has been confirmed." +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +#: field:account.bank.statement,currency:0 +#: report:account.central.journal:0 +#: view:account.entries.report:0 +#: field:account.entries.report,currency_id:0 +#: report:account.general.journal:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: field:account.invoice,currency_id:0 +#: field:account.invoice.report,currency_id:0 +#: field:account.journal,currency:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.model.line,currency_id:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: field:account.move.line,currency_id:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:analytic.entries.report,currency_id:0 +#: model:ir.model,name:account.model_res_currency +#: field:report.account.sales,currency_id:0 +#: field:report.account_type.sales,currency_id:0 +#: field:report.invoice.created,currency_id:0 +#: field:res.partner.bank,currency_id:0 +#: field:wizard.multi.charts.accounts,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account +#: help:account.invoice.refund,journal_id:0 +msgid "" +"You can select here the journal to use for the credit note that will be " +"created. If you leave that field empty, it will use the same journal as the " +"current invoice." +msgstr "" + +#. module: account +#: help:account.bank.statement.line,sequence:0 +msgid "" +"Gives the sequence order when displaying a list of bank statement lines." +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_validentries0 +msgid "Accountant validates the accounting entries coming from the invoice." +msgstr "" + +#. module: account +#: view:account.entries.report:0 +#: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open +msgid "Reconciled entries" +msgstr "" + +#. module: account +#: code:addons/account/account.py:2334 +#, python-format +msgid "Wrong model !" +msgstr "" + +#. module: account +#: view:account.tax.code.template:0 +#: view:account.tax.template:0 +msgid "Tax Template" +msgstr "" + +#. module: account +#: field:account.invoice.refund,period:0 +msgid "Force period" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_partner_balance +msgid "Print Account Partner Balance" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1121 +#, python-format +msgid "" +"You cannot do this modification on a reconciled entry. You can just change " +"some non legal fields or you must unreconcile first.\n" +"%s." +msgstr "" + +#. module: account +#: help:account.financial.report,sign:0 +msgid "" +"For accounts that are typically more debited than credited and that you " +"would like to print as negative amounts in your reports, you should reverse " +"the sign of the balance; e.g.: Expense account. The same applies for " +"accounts that are typically more credited than debited and that you would " +"like to print as positive amounts in your reports; e.g.: Income account." +msgstr "" + +#. module: account +#: field:res.partner,contract_ids:0 +msgid "Contracts" +msgstr "" + +#. module: account +#: field:account.cashbox.line,bank_statement_id:0 +#: field:account.entries.report,reconcile_id:0 +#: field:account.financial.report,balance:0 +#: field:account.financial.report,credit:0 +#: field:account.financial.report,debit:0 +msgid "unknown" +msgstr "" + +#. module: account +#: field:account.fiscalyear.close,journal_id:0 +#: code:addons/account/account.py:3198 +#, python-format +msgid "Opening Entries Journal" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_customerinvoice0 +msgid "Draft invoices are checked, validated and printed." +msgstr "" + +#. module: account +#: field:account.bank.statement,message_is_follower:0 +#: field:account.invoice,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: account +#: view:account.move:0 +#: field:account.move,narration:0 +#: field:account.move.line,narration:0 +msgid "Internal Note" +msgstr "" + +#. module: account +#: constraint:account.account:0 +msgid "" +"Configuration Error!\n" +"You cannot select an account type with a deferral method different of " +"\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." +msgstr "" + +#. module: account +#: field:account.config.settings,has_fiscal_year:0 +msgid "Company has a fiscal year" +msgstr "" + +#. module: account +#: help:account.tax,child_depend:0 +#: help:account.tax.template,child_depend:0 +msgid "" +"Set if the tax computation is based on the computation of child taxes rather " +"than on the total amount." +msgstr "" + +#. module: account +#: code:addons/account/account.py:634 +#, python-format +msgid "You cannot deactivate an account that contains journal items." +msgstr "" + +#. module: account +#: selection:account.tax,applicable_type:0 +msgid "Given by Python Code" +msgstr "" + +#. module: account +#: field:account.analytic.journal,code:0 +msgid "Journal Code" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: field:account.move.line,amount_residual:0 +msgid "Residual Amount" +msgstr "" + +#. module: account +#: field:account.invoice,move_lines:0 +#: field:account.move.reconcile,line_id:0 +msgid "Entry Lines" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_open_journal_button +msgid "Open Journal" +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +msgid "KI" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.journal:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +msgid "Period from" +msgstr "" + +#. module: account +#: field:account.cashbox.line,pieces:0 +msgid "Unit of Currency" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3195 +#, python-format +msgid "Sales Refund Journal" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Information" +msgstr "" + +#. module: account +#: view:account.invoice.confirm:0 +msgid "" +"Once draft invoices are confirmed, you will not be able\n" +" to modify them. The invoices will receive a unique\n" +" number and journal items will be created in your " +"chart\n" +" of accounts." +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_bankstatement0 +msgid "Registered payment" +msgstr "" + +#. module: account +#: view:account.fiscalyear.close.state:0 +msgid "Close states of Fiscal year and periods" +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_refund_journal_id:0 +msgid "Purchase refund journal" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Product Information" +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: model:ir.ui.menu,name:account.next_id_40 +msgid "Analytic" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_invoiceinvoice0 +#: model:process.node,name:account.process_node_supplierinvoiceinvoice0 +msgid "Create Invoice" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_configuration_installer +msgid "Configure Accounting Data" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,purchase_tax_rate:0 +msgid "Purchase Tax(%)" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:901 +#, python-format +msgid "Please create some invoice lines." +msgstr "" + +#. module: account +#: code:addons/account/wizard/pos_box.py:36 +#, python-format +msgid "" +"Please check that the field 'Internal Transfers Account' is set on the " +"payment method '%s'." +msgstr "" + +#. module: account +#: field:account.vat.declaration,display_detail:0 +msgid "Display Detail" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3203 +#, python-format +msgid "SCNJ" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_analyticinvoice0 +msgid "" +"Analytic costs (timesheets, some purchased products, ...) come from analytic " +"accounts. These generate draft invoices." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: view:analytic.entries.report:0 +msgid "My Entries" +msgstr "" + +#. module: account +#: help:account.invoice,state:0 +msgid "" +" * The 'Draft' status is used when a user is encoding a new and unconfirmed " +"Invoice. \n" +"* The 'Pro-forma' when invoice is in Pro-forma status,invoice does not have " +"an invoice number. \n" +"* The 'Open' status is used when user create invoice,a invoice number is " +"generated.Its in open status till user does not pay invoice. \n" +"* The 'Paid' status is set automatically when the invoice is paid. Its " +"related journal entries may or may not be reconciled. \n" +"* The 'Cancelled' status is used when user cancel invoice." +msgstr "" + +#. module: account +#: field:account.period,date_stop:0 +#: model:ir.ui.menu,name:account.menu_account_end_year_treatments +msgid "End of Period" +msgstr "" + +#. module: account +#: field:account.account,financial_report_ids:0 +#: field:account.account.template,financial_report_ids:0 +#: model:ir.actions.act_window,name:account.action_account_financial_report_tree +#: model:ir.actions.act_window,name:account.action_account_report +#: model:ir.ui.menu,name:account.menu_account_reports +msgid "Financial Reports" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_liability_view1 +msgid "Liability View" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,period_from:0 +#: field:account.balance.report,period_from:0 +#: report:account.central.journal:0 +#: field:account.central.journal,period_from:0 +#: field:account.common.account.report,period_from:0 +#: field:account.common.journal.report,period_from:0 +#: field:account.common.partner.report,period_from:0 +#: field:account.common.report,period_from:0 +#: report:account.general.journal:0 +#: field:account.general.journal,period_from:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,period_from:0 +#: field:account.partner.ledger,period_from:0 +#: field:account.print.journal,period_from:0 +#: field:account.report.general.ledger,period_from:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: report:account.vat.declaration:0 +#: field:account.vat.declaration,period_from:0 +#: field:accounting.report,period_from:0 +#: field:accounting.report,period_from_cmp:0 +msgid "Start Period" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_central_journal +msgid "Central Journal" +msgstr "" + +#. module: account +#: field:account.aged.trial.balance,direction_selection:0 +msgid "Analysis Direction" +msgstr "" + +#. module: account +#: field:res.partner,ref_companies:0 +msgid "Companies that refers to partner" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Ask Refund" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Total credit" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_suppliervalidentries0 +msgid "Accountant validates the accounting entries coming from the invoice. " +msgstr "" + +#. module: account +#: field:account.subscription,period_total:0 +msgid "Number of Periods" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Document: Customer account statement" +msgstr "" + +#. module: account +#: view:account.account.template:0 +msgid "Receivale Accounts" +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_refund_sequence_prefix:0 +msgid "Supplier credit note sequence" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_state_open.py:37 +#, python-format +msgid "Invoice is already reconciled." +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_payment:0 +msgid "" +"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." +msgstr "" + +#. module: account +#: xsl:account.transfer:0 +msgid "Document" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +#: field:account.chart.template,property_account_receivable:0 +msgid "Receivable Account" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#, python-format +msgid "To reconcile the entries company should be the same for all entries." +msgstr "" + +#. module: account +#: field:account.account,balance:0 +#: report:account.account.balance:0 +#: selection:account.account.type,close_method:0 +#: report:account.analytic.account.balance:0 +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.inverted.balance:0 +#: report:account.central.journal:0 +#: field:account.entries.report,balance:0 +#: report:account.general.journal:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: field:account.invoice,residual:0 +#: field:account.move.line,balance:0 +#: report:account.partner.balance:0 +#: selection:account.payment.term.line,value:0 +#: selection:account.tax,type:0 +#: selection:account.tax.template,type:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.treasury.report,balance:0 +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_supplierbankstatement0 +msgid "Manually or automatically entered in the system" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: report:account.general.ledger_landscape:0 +msgid "Display Account" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: model:account.account.type,name:account.data_account_type_payable +#: selection:account.entries.report,type:0 +msgid "Payable" +msgstr "" + +#. module: account +#: view:board.board:0 +msgid "Account Board" +msgstr "" + +#. module: account +#: view:account.model:0 +#: field:account.model,legend:0 +msgid "Legend" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_entriesreconcile0 +msgid "Accounting entries are the first input of the reconciliation." +msgstr "" + +#. module: account +#: view:account.fiscalyear.close:0 +msgid "Generate Fiscal Year Opening Entries" +msgstr "" + +#. module: account +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +msgid "Filters By" +msgstr "" + +#. module: account +#: field:account.cashbox.line,number_closing:0 +#: field:account.cashbox.line,number_opening:0 +msgid "Number of Units" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_manually0 +#: model:process.transition,name:account.process_transition_invoicemanually0 +msgid "Manual entry" +msgstr "" + +#. module: account +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: field:analytic.entries.report,move_id:0 +msgid "Move" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:478 +#: code:addons/account/wizard/account_period_close.py:51 +#, python-format +msgid "Invalid Action!" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Date / Period" +msgstr "" + +#. module: account +#: report:account.central.journal:0 +msgid "A/C No." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement +msgid "Bank statements" +msgstr "" + +#. module: account +#: constraint:account.period:0 +msgid "" +"Error!\n" +"The period is invalid. Either some periods are overlapping or the period's " +"dates are not matching the scope of the fiscal year." +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "There is nothing due with this customer." +msgstr "" + +#. module: account +#: help:account.tax,account_paid_id:0 +msgid "" +"Set the account that will be set by default on invoice tax lines for " +"refunds. Leave empty to use the expense account." +msgstr "" + +#. module: account +#: help:account.addtmpl.wizard,cparent_id:0 +msgid "" +"Creates an account with the selected template under this existing parent." +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Source" +msgstr "" + +#. module: account +#: selection:account.model.line,date_maturity:0 +msgid "Date of the day" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_move_bank_reconcile.py:49 +#, python-format +msgid "" +"You have to define the bank account\n" +"in the journal definition for reconciliation." +msgstr "" + +#. module: account +#: help:account.journal,sequence_id:0 +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: account +#: field:account.invoice,sent:0 +msgid "Sent" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_common_menu +msgid "Common Report" +msgstr "" + +#. module: account +#: field:account.config.settings,default_sale_tax:0 +#: field:account.config.settings,sale_tax:0 +msgid "Default sale tax" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Balance :" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1587 +#, python-format +msgid "Cannot create moves for different companies." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_periodical_processing +msgid "Periodic Processing" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Customer And Supplier Invoices" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_paymententries0 +#: model:process.transition,name:account.process_transition_paymentorderbank0 +#: model:process.transition,name:account.process_transition_paymentreconcile0 +msgid "Payment entries" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "July" +msgstr "" + +#. module: account +#: view:account.account:0 +msgid "Chart of accounts" +msgstr "" + +#. module: account +#: field:account.subscription.line,subscription_id:0 +msgid "Subscription" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_balance +msgid "Account Analytic Balance" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,period_to:0 +#: field:account.balance.report,period_to:0 +#: report:account.central.journal:0 +#: field:account.central.journal,period_to:0 +#: field:account.common.account.report,period_to:0 +#: field:account.common.journal.report,period_to:0 +#: field:account.common.partner.report,period_to:0 +#: field:account.common.report,period_to:0 +#: report:account.general.journal:0 +#: field:account.general.journal,period_to:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,period_to:0 +#: field:account.partner.ledger,period_to:0 +#: field:account.print.journal,period_to:0 +#: field:account.report.general.ledger,period_to:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: report:account.vat.declaration:0 +#: field:account.vat.declaration,period_to:0 +#: field:accounting.report,period_to:0 +#: field:accounting.report,period_to_cmp:0 +msgid "End Period" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_expense_view1 +msgid "Expense View" +msgstr "" + +#. module: account +#: field:account.move.line,date_maturity:0 +msgid "Due date" +msgstr "" + +#. module: account +#: model:account.payment.term,name:account.account_payment_term_immediate +#: model:account.payment.term,note:account.account_payment_term_immediate +msgid "Immediate Payment" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1502 +#, python-format +msgid " Centralisation" +msgstr "" + +#. module: account +#: help:account.journal,type:0 +msgid "" +"Select 'Sale' for customer invoices journals. Select 'Purchase' for supplier " +"invoices journals. Select 'Cash' or 'Bank' for journals that are used in " +"customer or supplier payments. Select 'General' for miscellaneous operations " +"journals. Select 'Opening/Closing Situation' for entries generated for new " +"fiscal years." +msgstr "" + +#. module: account +#: view:account.subscription:0 +#: model:ir.model,name:account.model_account_subscription +msgid "Account Subscription" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Maturity date" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Entry Subscription" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,date_from:0 +#: field:account.balance.report,date_from:0 +#: report:account.central.journal:0 +#: field:account.central.journal,date_from:0 +#: field:account.common.account.report,date_from:0 +#: field:account.common.journal.report,date_from:0 +#: field:account.common.partner.report,date_from:0 +#: field:account.common.report,date_from:0 +#: field:account.fiscalyear,date_start:0 +#: report:account.general.journal:0 +#: field:account.general.journal,date_from:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: field:account.installer,date_start:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,date_from:0 +#: field:account.partner.ledger,date_from:0 +#: field:account.print.journal,date_from:0 +#: field:account.report.general.ledger,date_from:0 +#: field:account.subscription,date_start:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.vat.declaration,date_from:0 +#: field:accounting.report,date_from:0 +#: field:accounting.report,date_from_cmp:0 +msgid "Start Date" +msgstr "" + +#. module: account +#: help:account.invoice,reconciled:0 +msgid "" +"It indicates that the invoice has been paid and the journal entry of the " +"invoice has been reconciled with one or several journal entries of payment." +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: model:process.node,name:account.process_node_supplierdraftinvoices0 +msgid "Draft Invoices" +msgstr "" + +#. module: account +#: view:cash.box.in:0 +#: model:ir.actions.act_window,name:account.action_cash_box_in +msgid "Put Money In" +msgstr "" + +#. module: account +#: selection:account.account.type,close_method:0 +#: view:account.entries.report:0 +#: view:account.move.line:0 +msgid "Unreconciled" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:922 +#, python-format +msgid "Bad total !" +msgstr "" + +#. module: account +#: field:account.journal,sequence_id:0 +msgid "Entry Sequence" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_period_tree +msgid "" +"A period is a fiscal period of time during which accounting entries should " +"be recorded for accounting related activities. Monthly period is the norm " +"but depending on your countries or company needs, you could also have " +"quarterly periods. Closing a period will make it impossible to record new " +"accounting entries, all new entries should then be made on the following " +"open period. Close a period when you do not want to record new entries and " +"want to lock this period for tax related calculation." +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Pending" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_cost_ledger_journal +#: model:ir.actions.report.xml,name:account.account_analytic_account_quantity_cost_ledger +msgid "Cost Ledger (Only quantities)" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_analyticinvoice0 +#: model:process.transition,name:account.process_transition_supplieranalyticcost0 +msgid "From analytic accounts" +msgstr "" + +#. module: account +#: view:account.installer:0 +msgid "Configure your Fiscal Year" +msgstr "" + +#. module: account +#: field:account.period,name:0 +msgid "Period Name" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_invoice_state.py:68 +#, python-format +msgid "" +"Selected invoice(s) cannot be cancelled as they are already in 'Cancelled' " +"or 'Done' state." +msgstr "" + +#. module: account +#: report:account.analytic.account.quantity_cost_ledger:0 +msgid "Code/Date" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: model:ir.actions.act_window,name:account.act_account_journal_2_account_move_line +#: model:ir.actions.act_window,name:account.act_account_move_to_account_move_line_open +#: model:ir.actions.act_window,name:account.act_account_partner_account_move +#: model:ir.actions.act_window,name:account.action_account_items +#: model:ir.actions.act_window,name:account.action_account_moves_all_a +#: model:ir.actions.act_window,name:account.action_move_line_select +#: model:ir.actions.act_window,name:account.action_tax_code_items +#: model:ir.actions.act_window,name:account.action_tax_code_line_open +#: model:ir.model,name:account.model_account_move_line +#: model:ir.ui.menu,name:account.menu_action_account_moves_all +msgid "Journal Items" +msgstr "" + +#. module: account +#: view:accounting.report:0 +msgid "Comparison" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1119 +#, python-format +msgid "" +"You cannot do this modification on a confirmed entry. You can just change " +"some non legal fields or you must unconfirm the journal entry first.\n" +"%s." +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_budget:0 +msgid "" +"This allows accountants to manage analytic and crossovered budgets.\n" +" Once the master budgets and the budgets are defined,\n" +" the project managers can set the planned amount on each " +"analytic account.\n" +" This installs the module account_budget." +msgstr "" + +#. module: account +#: field:account.bank.statement.line,name:0 +msgid "OBI" +msgstr "" + +#. module: account +#: help:res.partner,property_account_payable:0 +msgid "" +"This account will be used instead of the default one as the payable account " +"for the current partner" +msgstr "" + +#. module: account +#: field:account.period,special:0 +msgid "Opening/Closing Period" +msgstr "" + +#. module: account +#: field:account.account,currency_id:0 +#: field:account.account.template,currency_id:0 +#: field:account.bank.accounts.wizard,currency_id:0 +msgid "Secondary Currency" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_validate_account_move +msgid "Validate Account Move" +msgstr "" + +#. module: account +#: field:account.account,credit:0 +#: report:account.account.balance:0 +#: report:account.analytic.account.balance:0 +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.inverted.balance:0 +#: report:account.central.journal:0 +#: field:account.entries.report,credit:0 +#: report:account.general.journal:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.model.line,credit:0 +#: field:account.move.line,credit:0 +#: report:account.partner.balance:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.treasury.report,credit:0 +#: report:account.vat.declaration:0 +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Draft Invoice " +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_general_journal +msgid "General Journals" +msgstr "" + +#. module: account +#: view:account.model:0 +msgid "Journal Entry Model" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1073 +#, python-format +msgid "Start period should precede then end period." +msgstr "" + +#. module: account +#: field:account.invoice,number:0 +#: field:account.move,name:0 +msgid "Number" +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +#: selection:account.analytic.journal,type:0 +#: selection:account.bank.statement.line,type:0 +#: selection:account.journal,type:0 +msgid "General" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: field:account.invoice.report,price_total:0 +#: field:account.invoice.report,user_currency_price_total:0 +msgid "Total Without Tax" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,filter:0 +#: selection:account.balance.report,filter:0 +#: selection:account.central.journal,filter:0 +#: view:account.chart:0 +#: selection:account.common.account.report,filter:0 +#: selection:account.common.journal.report,filter:0 +#: selection:account.common.partner.report,filter:0 +#: view:account.common.report:0 +#: selection:account.common.report,filter:0 +#: field:account.config.settings,period:0 +#: field:account.fiscalyear,period_ids:0 +#: selection:account.general.journal,filter:0 +#: field:account.installer,period:0 +#: selection:account.partner.balance,filter:0 +#: selection:account.partner.ledger,filter:0 +#: view:account.print.journal:0 +#: selection:account.print.journal,filter:0 +#: selection:account.report.general.ledger,filter:0 +#: report:account.vat.declaration:0 +#: view:account.vat.declaration:0 +#: selection:account.vat.declaration,filter:0 +#: view:accounting.report:0 +#: selection:accounting.report,filter:0 +#: selection:accounting.report,filter_cmp:0 +#: model:ir.actions.act_window,name:account.action_account_period +#: model:ir.ui.menu,name:account.menu_action_account_period +#: model:ir.ui.menu,name:account.next_id_23 +msgid "Periods" +msgstr "" + +#. module: account +#: field:account.invoice.report,currency_rate:0 +msgid "Currency Rate" +msgstr "" + +#. module: account +#: field:account.account,tax_ids:0 +#: view:account.account.template:0 +#: field:account.account.template,tax_ids:0 +#: view:account.chart.template:0 +msgid "Default Taxes" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "April" +msgstr "" + +#. module: account +#: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 +msgid "Profit (Loss) to report" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:379 +#, python-format +msgid "There is no Sale/Purchase Journal(s) defined." +msgstr "" + +#. module: account +#: view:account.move.line.reconcile.select:0 +msgid "Open for Reconciliation" +msgstr "" + +#. module: account +#: field:account.account,parent_left:0 +msgid "Parent Left" +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Title 2 (bold)" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree2 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree2 +msgid "Supplier Invoices" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: field:account.analytic.line,product_id:0 +#: view:account.entries.report:0 +#: field:account.entries.report,product_id:0 +#: field:account.invoice.line,product_id:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,product_id:0 +#: field:account.move.line,product_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,product_id:0 +#: field:report.account.sales,product_id:0 +#: field:report.account_type.sales,product_id:0 +msgid "Product" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_validate_account_move +msgid "" +"The validation of journal entries process is also called 'ledger posting' " +"and is the process of transferring debit and credit amounts from a journal " +"of original entry to a ledger book." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_period +msgid "Account period" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Remove Lines" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: selection:account.entries.report,type:0 +msgid "Regular" +msgstr "" + +#. module: account +#: view:account.account:0 +#: field:account.account,type:0 +#: view:account.account.template:0 +#: field:account.account.template,type:0 +#: field:account.entries.report,type:0 +msgid "Internal Type" +msgstr "" + +#. module: account +#: field:account.subscription.generate,date:0 +msgid "Generate Entries Before" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_subscription_form_running +msgid "Running Subscriptions" +msgstr "" + +#. module: account +#: view:account.analytic.balance:0 +#: view:account.analytic.cost.ledger:0 +#: view:account.analytic.inverted.balance:0 +#: view:account.analytic.journal.report:0 +msgid "Select Period" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +#: selection:account.entries.report,move_state:0 +#: view:account.move:0 +#: selection:account.move,state:0 +#: view:account.move.line:0 +msgid "Posted" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,date_to:0 +#: field:account.balance.report,date_to:0 +#: report:account.central.journal:0 +#: field:account.central.journal,date_to:0 +#: field:account.common.account.report,date_to:0 +#: field:account.common.journal.report,date_to:0 +#: field:account.common.partner.report,date_to:0 +#: field:account.common.report,date_to:0 +#: field:account.fiscalyear,date_stop:0 +#: report:account.general.journal:0 +#: field:account.general.journal,date_to:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: field:account.installer,date_stop:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,date_to:0 +#: field:account.partner.ledger,date_to:0 +#: field:account.print.journal,date_to:0 +#: field:account.report.general.ledger,date_to:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.vat.declaration,date_to:0 +#: field:accounting.report,date_to:0 +#: field:accounting.report,date_to_cmp:0 +msgid "End Date" +msgstr "" + +#. module: account +#: view:account.open.closed.fiscalyear:0 +#: model:ir.actions.act_window,name:account.action_account_open_closed_fiscalyear +#: model:ir.ui.menu,name:account.menu_wizard_account_open_closed_fiscalyear +msgid "Cancel Opening Entries" +msgstr "" + +#. module: account +#: field:account.payment.term.line,days2:0 +msgid "Day of the Month" +msgstr "" + +#. module: account +#: field:account.fiscal.position.tax,tax_src_id:0 +#: field:account.fiscal.position.tax.template,tax_src_id:0 +msgid "Tax Source" +msgstr "" + +#. module: account +#: view:ir.sequence:0 +msgid "Fiscal Year Sequences" +msgstr "" + +#. module: account +#: selection:account.financial.report,display_detail:0 +msgid "No detail" +msgstr "" + +#. module: account +#: field:account.account,unrealized_gain_loss:0 +#: model:ir.actions.act_window,name:account.action_account_gain_loss +#: model:ir.ui.menu,name:account.menu_unrealized_gains_losses +msgid "Unrealized Gain or Loss" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "States" +msgstr "" + +#. module: account +#: help:product.category,property_account_income_categ:0 +#: help:product.template,property_account_income:0 +msgid "This account will be used to value outgoing stock using sale price." +msgstr "" + +#. module: account +#: field:account.invoice,check_total:0 +msgid "Verification Total" +msgstr "" + +#. module: account +#: report:account.analytic.account.balance:0 +#: report:account.analytic.account.inverted.balance:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +#: view:account.analytic.line:0 +#: field:account.invoice,amount_total:0 +#: field:report.account.sales,amount_total:0 +#: field:report.account_type.sales,amount_total:0 +#: field:report.invoice.created,amount_total:0 +msgid "Total" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_invoice_refund.py:109 +#, python-format +msgid "Cannot %s draft/proforma/cancel invoice." +msgstr "" + +#. module: account +#: field:account.tax,account_analytic_paid_id:0 +msgid "Refund Tax Analytic Account" +msgstr "" + +#. module: account +#: view:account.move.bank.reconcile:0 +msgid "Open for Bank Reconciliation" +msgstr "" + +#. module: account +#: field:account.account,company_id:0 +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,company_id:0 +#: field:account.analytic.journal,company_id:0 +#: field:account.balance.report,company_id:0 +#: field:account.bank.statement,company_id:0 +#: field:account.bank.statement.line,company_id:0 +#: field:account.central.journal,company_id:0 +#: field:account.common.account.report,company_id:0 +#: field:account.common.journal.report,company_id:0 +#: field:account.common.partner.report,company_id:0 +#: field:account.common.report,company_id:0 +#: field:account.config.settings,company_id:0 +#: view:account.entries.report:0 +#: field:account.entries.report,company_id:0 +#: field:account.fiscal.position,company_id:0 +#: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 +#: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 +#: field:account.installer,company_id:0 +#: field:account.invoice,company_id:0 +#: field:account.invoice.line,company_id:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,company_id:0 +#: field:account.invoice.tax,company_id:0 +#: field:account.journal,company_id:0 +#: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 +#: field:account.model,company_id:0 +#: field:account.move,company_id:0 +#: field:account.move.line,company_id:0 +#: field:account.partner.balance,company_id:0 +#: field:account.partner.ledger,company_id:0 +#: field:account.period,company_id:0 +#: field:account.print.journal,company_id:0 +#: field:account.report.general.ledger,company_id:0 +#: field:account.tax,company_id:0 +#: field:account.tax.code,company_id:0 +#: field:account.treasury.report,company_id:0 +#: field:account.vat.declaration,company_id:0 +#: field:accounting.report,company_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,company_id:0 +#: field:wizard.multi.charts.accounts,company_id:0 +msgid "Company" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_action_subscription_form +msgid "Define Recurring Entries" +msgstr "" + +#. module: account +#: field:account.entries.report,date_maturity:0 +msgid "Date Maturity" +msgstr "" + +#. module: account +#: field:account.invoice.refund,description:0 +#: field:cash.box.in,name:0 +#: field:cash.box.out,name:0 +msgid "Reason" +msgstr "" + +#. module: account +#: selection:account.partner.ledger,filter:0 +#: code:addons/account/report/account_partner_ledger.py:56 +#: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled +#, python-format +msgid "Unreconciled Entries" +msgstr "" + +#. module: account +#: help:account.partner.reconcile.process,today_reconciled:0 +msgid "" +"This figure depicts the total number of partners that have gone throught the " +"reconciliation process today. The current partner is counted as already " +"processed." +msgstr "" + +#. module: account +#: view:account.fiscalyear:0 +msgid "Create Monthly Periods" +msgstr "" + +#. module: account +#: field:account.tax.code.template,sign:0 +msgid "Sign For Parent" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_balance_report +msgid "Trial Balance Report" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree +msgid "Draft statements" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_statemententries0 +msgid "" +"Manual or automatic creation of payment entries according to the statements" +msgstr "" + +#. module: account +#: field:account.analytic.balance,empty_acc:0 +msgid "Empty Accounts ? " +msgstr "" + +#. module: account +#: view:account.unreconcile.reconcile:0 +msgid "" +"If you unreconcile transactions, you must also verify all the actions that " +"are linked to those transactions because they will not be disable" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1056 +#, python-format +msgid "Unable to change tax!" +msgstr "" + +#. module: account +#: constraint:account.bank.statement:0 +msgid "The journal and period chosen have to belong to the same company." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Invoice lines" +msgstr "" + +#. module: account +#: field:account.chart,period_to:0 +msgid "End period" +msgstr "" + +#. module: account +#: sql_constraint:account.journal:0 +msgid "The code of the journal must be unique per company !" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_invoice_report_all +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customer. The tool search can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account +#: view:account.partner.reconcile.process:0 +msgid "Go to Next Partner" +msgstr "" + +#. module: account +#: view:account.automatic.reconcile:0 +#: view:account.move.line.reconcile.writeoff:0 +msgid "Write-Off Move" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_paidinvoice0 +msgid "Invoice's state is Done" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_followup:0 +msgid "Manage customer payment follow-ups" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_report_account_sales +msgid "Report of the Sales by Account" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_account +msgid "Accounts Fiscal Position" +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +#: selection:account.invoice,type:0 +#: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 +#: model:process.process,name:account.process_process_supplierinvoiceprocess0 +#: selection:report.invoice.created,type:0 +#, python-format +msgid "Supplier Invoice" +msgstr "" + +#. module: account +#: field:account.account,debit:0 +#: report:account.account.balance:0 +#: report:account.analytic.account.balance:0 +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.inverted.balance:0 +#: report:account.central.journal:0 +#: field:account.entries.report,debit:0 +#: report:account.general.journal:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.model.line,debit:0 +#: field:account.move.line,debit:0 +#: report:account.partner.balance:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.treasury.report,debit:0 +#: report:account.vat.declaration:0 +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Title 3 (bold, smaller)" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: field:account.invoice,invoice_line:0 +msgid "Invoice Lines" +msgstr "" + +#. module: account +#: help:account.model.line,quantity:0 +msgid "The optional quantity on entries." +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,reconciled:0 +msgid "Reconciled transactions" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:783 +#, python-format +msgid "Already reconciled." +msgstr "" + +#. module: account +#: selection:account.model.line,date_maturity:0 +msgid "Partner Payment Term" +msgstr "" + +#. module: account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Analytic Journal Items related to a purchase journal." +msgstr "" + +#. module: account +#: help:account.account,type:0 +msgid "" +"The 'Internal Type' is used for features available on different types of " +"accounts: view can not have journal items, consolidation are accounts that " +"can have children accounts for multi-company consolidations, " +"payable/receivable are for partners accounts (for debit/credit " +"computations), closed for depreciated accounts." +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: selection:account.balance.report,display_account:0 +#: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 +#: selection:account.report.general.ledger,display_account:0 +msgid "With movements" +msgstr "" + +#. module: account +#: view:account.tax.code.template:0 +msgid "Account Tax Code Template" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_manually0 +msgid "Manually" +msgstr "" + +#. module: account +#: help:account.move,balance:0 +msgid "" +"This is a field only used for internal purpose and shouldn't be displayed" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "December" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Group by month of Invoice Date" +msgstr "" + +#. module: account +#: code:addons/account/account_analytic_line.py:99 +#, python-format +msgid "There is no income account defined for this product: \"%s\" (id:%d)." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_aged_receivable_graph +#: view:report.aged.receivable:0 +msgid "Aged Receivable" +msgstr "" + +#. module: account +#: field:account.tax,applicable_type:0 +msgid "Applicability" +msgstr "" + +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_invoiceimport0 +msgid "" +"Import of the statement in the system from a supplier or customer invoice" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing +msgid "Billing" +msgstr "" + +#. module: account +#: view:account.account:0 +#: view:account.analytic.account:0 +msgid "Parent Account" +msgstr "" + +#. module: account +#: view:report.account.receivable:0 +msgid "Accounts by Type" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_chart +msgid "Account Analytic Chart" +msgstr "" + +#. module: account +#: help:account.invoice,residual:0 +msgid "Remaining amount due." +msgstr "" + +#. module: account +#: field:account.print.journal,sort_selection:0 +msgid "Entries Sorted by" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:1546 +#, python-format +msgid "" +"The selected unit of measure is not compatible with the unit of measure of " +"the product." +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: view:account.fiscal.position.template:0 +msgid "Accounts Mapping" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_tax_code_list +msgid "" +"

\n" +" Click to define a new tax code.\n" +"

\n" +" Depending on the country, a tax code is usually a cell to " +"fill\n" +" in your legal tax statement. OpenERP allows you to define " +"the\n" +" tax structure and each tax computation will be registered " +"in\n" +" one or several tax code.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "November" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_moves_all_a +msgid "" +"

\n" +" Select the period and the journal you want to fill.\n" +"

\n" +" This view can be used by accountants in order to quickly " +"record\n" +" entries in OpenERP. If you want to record a supplier " +"invoice,\n" +" start by recording the line of the expense account. OpenERP\n" +" will propose to you automatically the Tax related to this\n" +" account and the counterpart \"Account Payable\".\n" +"

\n" +" " +msgstr "" + +#. module: account +#: help:account.invoice.line,account_id:0 +msgid "The income or expense account related to the selected product." +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Install more chart templates" +msgstr "" + +#. module: account +#: report:account.general.journal:0 +#: model:ir.actions.report.xml,name:account.account_general_journal +msgid "General Journal" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Search Invoice" +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format +msgid "Refund" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account +#: field:res.partner,credit:0 +msgid "Total Receivable" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "General Information" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Accounting Documents" +msgstr "" + +#. module: account +#: code:addons/account/account.py:641 +#, python-format +msgid "" +"You cannot remove/deactivate an account which is set on a customer or " +"supplier." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_validate_account_move_lines +msgid "Validate Account Move Lines" +msgstr "" + +#. module: account +#: help:res.partner,property_account_position:0 +msgid "" +"The fiscal position will determine taxes and accounts used for the partner." +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_supplierpaidinvoice0 +msgid "Invoice's state is Done." +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_reconcilepaid0 +msgid "As soon as the reconciliation is done, the invoice can be paid." +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_change_currency.py:59 +#, python-format +msgid "New currency is not configured properly." +msgstr "" + +#. module: account +#: view:account.account.template:0 +msgid "Search Account Templates" +msgstr "" + +#. module: account +#: view:account.invoice.tax:0 +msgid "Manual Invoice Taxes" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:573 +#, python-format +msgid "The payment term of supplier does not have a payment term line." +msgstr "" + +#. module: account +#: field:account.account,parent_right:0 +msgid "Parent Right" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/js/account_move_reconciliation.js:74 +#: code:addons/account/static/src/js/account_move_reconciliation.js:80 +#, python-format +msgid "Never" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_addtmpl_wizard +msgid "account.addtmpl.wizard" +msgstr "" + +#. module: account +#: field:account.aged.trial.balance,result_selection:0 +#: field:account.common.partner.report,result_selection:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,result_selection:0 +#: field:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +msgid "Partner's" +msgstr "" + +#. module: account +#: field:account.account,note:0 +msgid "Internal Notes" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscalyear +#: view:ir.sequence:0 +#: model:ir.ui.menu,name:account.menu_action_account_fiscalyear +msgid "Fiscal Years" +msgstr "" + +#. module: account +#: help:account.analytic.journal,active:0 +msgid "" +"If the active field is set to False, it will allow you to hide the analytic " +"journal without removing it." +msgstr "" + +#. module: account +#: field:account.analytic.line,ref:0 +msgid "Ref." +msgstr "" + +#. module: account +#: field:account.use.model,model:0 +#: model:ir.model,name:account.model_account_model +msgid "Account Model" +msgstr "" + +#. module: account +#: code:addons/account/account_cash_statement.py:292 +#, python-format +msgid "Loss" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "February" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: help:account.cashbox.line,number_closing:0 +msgid "Closing Unit Numbers" +msgstr "" + +#. module: account +#: field:account.bank.accounts.wizard,bank_account_id:0 +#: view:account.chart.template:0 +#: field:account.chart.template,bank_account_view_id:0 +#: field:account.invoice,partner_bank_id:0 +#: field:account.invoice.report,partner_bank_id:0 +msgid "Bank Account" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_central_journal +#: model:ir.model,name:account.model_account_central_journal +msgid "Account Central Journal" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Maturity" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,direction_selection:0 +msgid "Future" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Search Journal Items" +msgstr "" + +#. module: account +#: help:account.tax,base_sign:0 +#: help:account.tax,ref_base_sign:0 +#: help:account.tax,ref_tax_sign:0 +#: help:account.tax,tax_sign:0 +#: help:account.tax.template,base_sign:0 +#: help:account.tax.template,ref_base_sign:0 +#: help:account.tax.template,ref_tax_sign:0 +#: help:account.tax.template,tax_sign:0 +msgid "Usually 1 or -1." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_account_template +msgid "Template Account Fiscal Mapping" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_expense:0 +msgid "Expense Account on Product Template" +msgstr "" + +#. module: account +#: field:res.partner,property_payment_term:0 +msgid "Customer Payment Term" +msgstr "" + +#. module: account +#: help:accounting.report,label_filter:0 +msgid "" +"This label will be displayed on report to show the balance computed for the " +"given comparison filter." +msgstr "" + +#. module: account +#: selection:account.config.settings,tax_calculation_rounding_method:0 +msgid "Round per line" +msgstr "" + +#. module: account +#: help:account.move.line,amount_residual_currency:0 +msgid "" +"The residual amount on a receivable or payable of a journal entry expressed " +"in its currency (maybe different of the company currency)." +msgstr "" diff --git a/addons/account/i18n/ar.po b/addons/account/i18n/ar.po index 51754929335..ba0d99b0b88 100644 --- a/addons/account/i18n/ar.po +++ b/addons/account/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/bg.po b/addons/account/i18n/bg.po index c8d0575e689..237f6221471 100644 --- a/addons/account/i18n/bg.po +++ b/addons/account/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/br.po b/addons/account/i18n/br.po index dc3268c441c..853a538097b 100644 --- a/addons/account/i18n/br.po +++ b/addons/account/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/bs.po b/addons/account/i18n/bs.po index bef9bdef9a1..c5b971b45c8 100644 --- a/addons/account/i18n/bs.po +++ b/addons/account/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -26,6 +26,7 @@ msgstr "Sistem plaćanja" msgid "" "An account fiscal position could be defined only once time on same accounts." msgstr "" +"Fiskalna pozicija konta može biti definisana samo jednom za neka konta." #. module: account #: help:account.tax.code,sequence:0 @@ -39,7 +40,7 @@ msgstr "" #. module: account #: view:account.move.reconcile:0 msgid "Journal Entry Reconcile" -msgstr "" +msgstr "Zatvaranje stavki dnevnika" #. module: account #: view:account.account:0 @@ -341,7 +342,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "" +msgstr "Poništavajne zatvaranja konta" #. module: account #: field:account.config.settings,module_account_budget:0 @@ -456,18 +457,25 @@ msgid "" "this box, you will be able to do invoicing & payments,\n" " but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"Ovo vam omogućuje upravljanje imovinom u vlasništvu kompanije ili osobe.\n" +" Prati amortizaciju na tim sredstvima, i stvara " +"kretanja konta za knjiženje amortizacije.\n" +" Ovo instalira modul account_asset. Ako ne " +"označite ovo polje, moći ćete raditi fakture\n" +" i plaćanja ali ne i računovodstvo (dnevnici " +"knjiženja, kontni plan...)" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Informacije o pokretaču i korisniku" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Period :" #. module: account #: field:account.account.template,chart_template_id:0 @@ -480,7 +488,7 @@ msgstr "Predložak plana" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" -msgstr "" +msgstr "Uredi: napravi povrat, zatvori ili kreiraj novu fakturu u pripremi" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -494,6 +502,15 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"Ukoliko odavberete 'Zaokruži po liniji' : za svaki porez, iznos poreza će " +"prvo biti izračunat i zaokružen po svakoj stavci, i nakon toga svi iznosi će " +"biti zbrojeni do ukupnog iznosa poreza. \r\n" +"Ukoliko odaberete 'Zaokruži globalno' : za svaki porez, iznos poreza će biti " +"izračunat po svakoj stavci, ti iznosi će biti zbrojeni, i eventualno ukupni " +"iznos poreza će biti zaokružen. \r\n" +"Ako vršite prodaju sa uključenim porezom trebali bi odabrati 'Zaokruži po " +"liniji' jer svakako želite da suma uključenih poreza po stavkama odgovara " +"ukupnom iznosu poreza uračunatom u cijenu." #. module: account #: model:ir.model,name:account.model_wizard_multi_charts_accounts @@ -508,12 +525,12 @@ msgstr "Iznos izražen u alternativnoj drugoj valuti." #. module: account #: view:account.journal:0 msgid "Available Coins" -msgstr "" +msgstr "Raspoložive monete" #. module: account #: field:accounting.report,enable_filter:0 msgid "Enable Comparison" -msgstr "" +msgstr "Omogući uspoređivanje" #. module: account #: view:account.analytic.line:0 @@ -551,22 +568,22 @@ msgstr "Dnevnik" #. module: account #: model:ir.model,name:account.model_account_invoice_confirm msgid "Confirm the selected invoices" -msgstr "" +msgstr "Potvrdi odabrane fakture" #. module: account #: field:account.addtmpl.wizard,cparent_id:0 msgid "Parent target" -msgstr "" +msgstr "Nadređeni cilj" #. module: account #: help:account.invoice.line,sequence:0 msgid "Gives the sequence of this line when displaying the invoice." -msgstr "" +msgstr "Daje sekvencu ove linije kada se prikazuje faktura" #. module: account #: field:account.bank.statement,account_id:0 msgid "Account used in this journal" -msgstr "" +msgstr "Konto koji se koristi u ovom dnevniku" #. module: account #: help:account.aged.trial.balance,chart_account_id:0 @@ -584,12 +601,12 @@ msgstr "" #: help:account.vat.declaration,chart_account_id:0 #: help:accounting.report,chart_account_id:0 msgid "Select Charts of Accounts" -msgstr "" +msgstr "Odabir kontnog plana" #. module: account #: model:ir.model,name:account.model_account_invoice_refund msgid "Invoice Refund" -msgstr "" +msgstr "Povrat fakture" #. module: account #: report:account.overdue:0 @@ -605,7 +622,7 @@ msgstr "Neusklađene transakcije" #: report:account.general.ledger:0 #: report:account.general.ledger_landscape:0 msgid "Counterpart" -msgstr "" +msgstr "Protustavka" #. module: account #: view:account.fiscal.position:0 @@ -623,7 +640,7 @@ msgstr "Zatvori fiskalnu godinu" #. module: account #: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 msgid "The accountant confirms the statement." -msgstr "" +msgstr "Knjigovođa potvrđuje izvod." #. module: account #. openerp-web @@ -635,13 +652,13 @@ msgstr "" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "Decimalna preciznost na stavkama dnevnika" #. module: account #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "3 Monthly" -msgstr "" +msgstr "Tromjesečno" #. module: account #: field:ir.sequence,fiscal_ids:0 @@ -652,7 +669,7 @@ msgstr "Redoslijedi" #: field:account.financial.report,account_report_id:0 #: selection:account.financial.report,type:0 msgid "Report Value" -msgstr "" +msgstr "Vrijednost izvještaja" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:39 @@ -660,7 +677,7 @@ msgstr "" msgid "" "Specified journal does not have any account move entries in draft state for " "this period." -msgstr "" +msgstr "Odabrani dnevnik nema kretanja konta u pripremi za ovaj period." #. module: account #: view:account.fiscal.position:0 @@ -671,35 +688,37 @@ msgstr "Mapiranje poreza" #. module: account #: report:account.central.journal:0 msgid "Centralized Journal" -msgstr "" +msgstr "Centralizovani dnevnik" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 msgid "Main Sequence must be different from current !" -msgstr "" +msgstr "Glavna sekvenca mora biti različita od trenutne !" #. module: account #: code:addons/account/wizard/account_change_currency.py:64 #: code:addons/account/wizard/account_change_currency.py:70 #, python-format msgid "Current currency is not configured properly." -msgstr "" +msgstr "Trenutna valuta nije ispravno postavljena" #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Konto dobiti" #. module: account #: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" +"Nije nađen period za zadani datum ili je nađeno nekoliko perioda za zadani " +"datum" #. module: account #: model:ir.model,name:account.model_report_account_type_sales msgid "Report of the Sales by Account Type" -msgstr "" +msgstr "Izvještaj o prodaji po tipu konta" #. module: account #: code:addons/account/account.py:3201 @@ -711,7 +730,7 @@ msgstr "" #: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." -msgstr "" +msgstr "Nemože se kreirati kretanje sa valutom različitom od ..." #. module: account #: model:email.template,report_name:account.email_template_edi_invoice @@ -729,7 +748,7 @@ msgstr "Zatvori razdoblje" #. module: account #: model:ir.model,name:account.model_account_common_partner_report msgid "Account Common Partner Report" -msgstr "" +msgstr "Partnerski izvještaj zajedničkih konta" #. module: account #: field:account.fiscalyear.close,period_id:0 @@ -739,13 +758,14 @@ msgstr "Razdoblje stavki otvaranja" #. module: account #: model:ir.model,name:account.model_account_journal_period msgid "Journal Period" -msgstr "" +msgstr "Period dnevnika" #. module: account #: constraint:account.move:0 msgid "" "You cannot create more than one move per period on a centralized journal." msgstr "" +"Ne možete raditi više od jedne stavke po periodu na centraliziranom dnevniku." #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -754,6 +774,9 @@ msgid "" "lines for refunds. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Postavite analitički konto koji će biti korišten kao zadani na stavkama " +"poreza faktura za povrat. Ostavite prazno ako ne želite zadano koristiti " +"analitički konto za poreze." #. module: account #: view:account.account:0 @@ -771,12 +794,12 @@ msgstr "Potražni računi" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "Podesite bankovne račune vaše kompanije" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Kreiraj povrat" #. module: account #: constraint:account.move.line:0 @@ -784,11 +807,13 @@ msgid "" "The date of your Journal Entry is not in the defined period! You should " "change the date or remove this constraint from the journal." msgstr "" +"Datum vašeg unosa u dnevnik nije u definisanom periodu! Trebali bi " +"promijeniti datum ili ukloniti to ograničenje iz dnevnika." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger msgid "General Ledger Report" -msgstr "" +msgstr "Izvještaj glavne knjige" #. module: account #: view:account.invoice:0 @@ -804,12 +829,12 @@ msgstr "Jeste sigurni da želite stvortiti stavke?" #: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." -msgstr "" +msgstr "Račun djelomično plaćen : %s%s od %s%s (%s%s preostaje)" #. module: account #: view:account.invoice:0 msgid "Print Invoice" -msgstr "" +msgstr "Ispiši fakturu" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:111 @@ -818,11 +843,13 @@ msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." msgstr "" +"Nije moguće %s fakturu koja je već zatvorena, račun bi prvo trebao biti " +"ponovo otvoren. Jedino možete napraviti povrat po ovoj fakturi." #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children with hierarchy" -msgstr "" +msgstr "Hijerahijski prikaz podređenih" #. module: account #: selection:account.payment.term.line,value:0 @@ -840,17 +867,17 @@ msgstr "Planovi" #: model:ir.model,name:account.model_project_account_analytic_line #, python-format msgid "Analytic Entries by line" -msgstr "" +msgstr "Analitički zapisi po stavkama" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "" +msgstr "Način povrata" #. module: account #: model:ir.ui.menu,name:account.menu_account_report msgid "Financial Report" -msgstr "" +msgstr "Financijski izvještaj" #. module: account #: view:account.analytic.account:0 @@ -876,6 +903,8 @@ msgid "" "Taxes are missing!\n" "Click on compute button." msgstr "" +"Nedostaju porezi!\n" +"Kliknite na dugme Izračunaj" #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -890,13 +919,13 @@ msgstr "Veza partnera ove fakture." #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "" +msgstr "Fakture dobavljača i povrati" #. module: account #: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "Unos je već zatvoren." #. module: account #: view:account.move.line.unreconcile.select:0 @@ -908,12 +937,12 @@ msgstr "Poništavanje usklađivanja" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "" +msgstr "Analitički dnevnik konta" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Pošalji e-mailom" #. module: account #: help:account.central.journal,amount_currency:0 @@ -924,16 +953,18 @@ msgid "" "Print Report with the currency column if the currency differs from the " "company currency." msgstr "" +"Ispiši izvještaj sa kolonom valute, ako je valuta različita od valute " +"kompanije." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "J.C./Move name" -msgstr "" +msgstr "Naziv kretanja dnevničkog zapisa" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Šifra i naziv konta" #. module: account #: selection:account.entries.report,month:0 @@ -942,7 +973,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "September" -msgstr "" +msgstr "Septembar" #. module: account #: selection:account.subscription,period_type:0 @@ -953,7 +984,7 @@ msgstr "Dani" #: help:account.account.template,nocreate:0 msgid "" "If checked, the new chart of accounts will not contain this by default." -msgstr "" +msgstr "Ako je označeno, novi kontni plan zadano neće sadržavati." #. module: account #: model:ir.actions.act_window,help:account.action_account_manual_reconcile @@ -963,6 +994,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nisu nađene stavke dnevnika.\n" +"

\n" +" " #. module: account #: code:addons/account/account.py:1677 @@ -972,6 +1007,8 @@ msgid "" " opening/closing fiscal " "year process." msgstr "" +"Nije moguće ponovo otvoriti stavke ako su one generisane u procesu " +"otvaranja/zatvaranja poslovne godine." #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_new @@ -987,7 +1024,7 @@ msgstr "Izračun" #. module: account #: field:account.journal.cashbox.line,pieces:0 msgid "Values" -msgstr "" +msgstr "Vrijednosti" #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_chart @@ -1009,18 +1046,18 @@ msgstr "Krajnji rok" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "" +msgstr "Dnevnici nabavke" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "" +msgstr "Faktura plaćena" #. module: account #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Approve" -msgstr "" +msgstr "Odobri" #. module: account #: view:account.invoice:0 @@ -1032,7 +1069,7 @@ msgstr "Ukupan iznos" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "" +msgstr "Referenca ove fakture dobijena je od dobavljača" #. module: account #: selection:account.account,type:0 @@ -1052,27 +1089,27 @@ msgstr "Obveza" #: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." -msgstr "" +msgstr "Molimo definišite sekvencu dnevnika povezanog sa ovom fakturom." #. module: account #: view:account.entries.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Napredni filteri..." #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal msgid "Centralizing Journal" -msgstr "" +msgstr "Centralizirani dnevnik" #. module: account #: selection:account.journal,type:0 msgid "Sale Refund" -msgstr "" +msgstr "Povrat prodaje" #. module: account #: model:process.node,note:account.process_node_accountingstatemententries0 msgid "Bank statement" -msgstr "" +msgstr "Izvod banke" #. module: account #: field:account.analytic.line,move_id:0 @@ -1085,12 +1122,12 @@ msgid "" "If the Tax account is a tax code account, this field will contain the taxed " "amount.If the tax account is base tax code, this field will contain the " "basic amount(without tax)." -msgstr "" +msgstr "Porez ili osnovica poreza ovisno o poreznoj grupi." #. module: account #: view:account.analytic.line:0 msgid "Purchases" -msgstr "" +msgstr "Nabavke" #. module: account #: field:account.model,lines_id:0 @@ -1117,7 +1154,7 @@ msgstr "Šifra" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Mogućnosti" #. module: account #: code:addons/account/account.py:2346 @@ -1127,7 +1164,7 @@ msgstr "" #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" -msgstr "" +msgstr "Nema analitičkog dnevnika !" #. module: account #: report:account.partner.balance:0 @@ -1153,16 +1190,32 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za " +"dodavanje konta\n" +"

\n" +" Kada se koriste " +"transakcije sa više valuta, možete dobiti ili izgubiti\n" +" određeni iznos " +"zbog kursnih razlika. Ovaj meni pruža Vam\n" +" predviđanje " +"dobiti i gubitka ostvarenog ukoliko bi se te\n" +" transakcije " +"završile danas. Samo za konta koji imaju postavljenu \n" +" sekundarnu " +"valutu.\n" +"

\n" +" " #. module: account #: field:account.bank.accounts.wizard,acc_name:0 msgid "Account Name." -msgstr "" +msgstr "Naziv konta" #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "" +msgstr "Otvaranje sa saldom zadnjeg zatvaranja" #. module: account #: help:account.tax.code,notprintable:0 @@ -1170,6 +1223,8 @@ msgid "" "Check this box if you don't want any tax related to this tax code to appear " "on invoices" msgstr "" +"Označite ovdje ukoliko ne želite da se porezi povezani sa ovom šifrom poreza " +"pojavljuju na fakturama." #. module: account #: field:report.account.receivable,name:0 @@ -1184,7 +1239,7 @@ msgstr "Landscape mod" #. module: account #: help:account.fiscalyear.close,fy_id:0 msgid "Select a Fiscal year to close" -msgstr "" +msgstr "Odaberite poslovnu godinu koju treba zatvoriti" #. module: account #: help:account.account.template,user_type:0 @@ -1192,22 +1247,24 @@ msgid "" "These types are defined according to your country. The type contains more " "information about the account and its specificities." msgstr "" +"Ovi su tipovi definirani prema vašoj zemlji. Tip sadržava više informacija o " +"kontu i njegovim specifičnostima." #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "Povrat " #. module: account #: code:addons/account/account_analytic_line.py:90 #, python-format msgid "There is no expense account defined for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Nije definiran konto troška za ovaj proizvod : \"%s\" (id:%d)" #. module: account #: view:account.tax:0 msgid "Applicability Options" -msgstr "" +msgstr "Opcije primjenjivosti" #. module: account #: report:account.partner.balance:0 @@ -1219,12 +1276,12 @@ msgstr "U neslaganju" #: model:ir.actions.act_window,name:account.action_view_bank_statement_tree #: model:ir.ui.menu,name:account.journal_cash_move_lines msgid "Cash Registers" -msgstr "" +msgstr "Kase" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Dnevnik povrata u prodaji" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1243,6 +1300,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog unosa u blagajnu.\n" +"

\n" +" Pomoću blagajne moguće je na jednostavan način upravljati " +"dnevnicima\n" +" blagajne. Na jednostavan način možete pratiti uplate " +"gotovine\n" +" na dnevnoj bazi. Moguće je evidentirati novac u blagajni, a " +"zatim\n" +" pratiti sve ulaze i izlaze novca iz nje.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_bank @@ -1250,7 +1319,7 @@ msgstr "" #: code:addons/account/account.py:3092 #, python-format msgid "Bank" -msgstr "" +msgstr "Banka" #. module: account #: field:account.period,date_start:0 @@ -1260,12 +1329,12 @@ msgstr "Početak Perioda" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Povrati" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 msgid "Confirm statement" -msgstr "" +msgstr "Potvrdi izvod" #. module: account #: view:account.tax:0 @@ -1278,6 +1347,8 @@ msgid "" "Total amount (in Secondary currency) for transactions held in secondary " "currency for this account." msgstr "" +"Ukupni iznos (u drugoj valuti) za transakcije koje se vode u sekundarnoj " +"valuti za ovaj konto." #. module: account #: field:account.fiscal.position.tax,tax_dest_id:0 @@ -1306,17 +1377,17 @@ msgstr "" #. module: account #: view:account.invoice.cancel:0 msgid "Cancel Invoices" -msgstr "" +msgstr "Otkaži fakture" #. module: account #: help:account.journal,code:0 msgid "The code will be displayed on reports." -msgstr "" +msgstr "Šifra će biti prikazana na izvještajima." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "" +msgstr "Porezi koji se koriste u nabavkama" #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1336,7 +1407,7 @@ msgstr "Izlazna tečajna lista" #: view:account.analytic.account:0 #: field:account.config.settings,chart_template_id:0 msgid "Template" -msgstr "" +msgstr "Predložak" #. module: account #: selection:account.analytic.journal,type:0 @@ -1376,7 +1447,7 @@ msgstr "Ostali" #. module: account #: view:account.subscription:0 msgid "Draft Subscription" -msgstr "" +msgstr "Pretplate u pripremi" #. module: account #: view:account.account:0 @@ -1409,26 +1480,26 @@ msgstr "Konto" #. module: account #: field:account.tax,include_base_amount:0 msgid "Included in base amount" -msgstr "" +msgstr "Uključeno u iznos osnovice" #. module: account #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.action_account_entries_report_all #: model:ir.ui.menu,name:account.menu_action_account_entries_report_all msgid "Entries Analysis" -msgstr "" +msgstr "Analiza unosa" #. module: account #: field:account.account,level:0 #: field:account.financial.report,level:0 msgid "Level" -msgstr "" +msgstr "Nivo" #. module: account #: code:addons/account/wizard/account_change_currency.py:38 #, python-format msgid "You can only change currency for Draft Invoice." -msgstr "" +msgstr "Valutu možete mijenjati jedino u fakturama u pripremi." #. module: account #: report:account.invoice:0 @@ -1448,13 +1519,13 @@ msgstr "Porezi" #: code:addons/account/wizard/account_financial_report.py:70 #, python-format msgid "Select a starting and an ending period" -msgstr "" +msgstr "Odaberite početni i završni period" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitandloss0 #: model:ir.actions.act_window,name:account.action_account_report_pl msgid "Profit and Loss" -msgstr "" +msgstr "Dobit i Gubitak" #. module: account #: model:ir.model,name:account.model_account_account_template @@ -1464,7 +1535,7 @@ msgstr "Predlošci računa" #. module: account #: view:account.tax.code.template:0 msgid "Search tax template" -msgstr "" +msgstr "Traži predložak poreza" #. module: account #: view:account.move.reconcile:0 @@ -1483,12 +1554,12 @@ msgstr "Dospijela plaćanja" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Initial Balance" -msgstr "" +msgstr "Početni saldo" #. module: account #: view:account.invoice:0 msgid "Reset to Draft" -msgstr "" +msgstr "Vrati u pripremu" #. module: account #: view:account.aged.trial.balance:0 @@ -1499,22 +1570,22 @@ msgstr "Postavke izvješća" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "Zatvaranje poslovne godine" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 msgid "Invoice sequence" -msgstr "" +msgstr "Sekvence faktura" #. module: account #: model:ir.model,name:account.model_account_entries_report msgid "Journal Items Analysis" -msgstr "" +msgstr "Analiza stavki dnevnika" #. module: account #: model:ir.ui.menu,name:account.next_id_22 msgid "Partners" -msgstr "" +msgstr "Partneri" #. module: account #: help:account.bank.statement,state:0 @@ -1523,11 +1594,13 @@ msgid "" "And after getting confirmation from the bank it will be in 'Confirmed' " "status." msgstr "" +"Kada je novi izvod kreiran status je 'U pripremi'.\n" +"Nakon dobivanja potvrde od banke biti će u 'Potvrđeno' statusu." #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "Status fakture" #. module: account #: view:account.bank.statement:0 @@ -1549,7 +1622,7 @@ msgstr "Potražni konto" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopija)" #. module: account #: report:account.account.balance:0 @@ -1568,11 +1641,13 @@ msgid "" "There is no default debit account defined \n" "on journal \"%s\"." msgstr "" +"Nije definisan zadani dugovni konto \n" +"za dnevnik \"%s\"." #. module: account #: view:account.tax:0 msgid "Search Taxes" -msgstr "" +msgstr "Pretraži poreze" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger @@ -1587,7 +1662,7 @@ msgstr "Stvori stavke" #. module: account #: field:account.entries.report,nbr:0 msgid "# of Items" -msgstr "" +msgstr "# stavki" #. module: account #: field:account.automatic.reconcile,max_amount:0 @@ -1602,6 +1677,9 @@ msgid "" "There is nothing to reconcile. All invoices and payments\n" " have been reconciled, your partner balance is clean." msgstr "" +"Nema stavaka za zatvaranje. Sve fakture i plaćanja \n" +" su već zatvoreni, saldo vašeg partnera " +"je uredan." #. module: account #: field:account.chart.template,code_digits:0 @@ -1613,14 +1691,14 @@ msgstr "Broj znamenki" #. module: account #: field:account.journal,entry_posted:0 msgid "Skip 'Draft' State for Manual Entries" -msgstr "" +msgstr "Preskoči stanje 'U pripremi' za ručni upis" #. module: account #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_report_common.py:164 #, python-format msgid "Not implemented." -msgstr "" +msgstr "Nije implementirano." #. module: account #: view:account.invoice.refund:0 @@ -1630,17 +1708,17 @@ msgstr "Knjižno odobrenje" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "" +msgstr "eFakture i Plaćanja" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 msgid "Cost Ledger for Period" -msgstr "" +msgstr "Knjiga troškova za period" #. module: account #: view:account.entries.report:0 msgid "# of Entries " -msgstr "" +msgstr "# stavaka " #. module: account #: help:account.fiscal.position,active:0 @@ -1648,11 +1726,13 @@ msgid "" "By unchecking the active field, you may hide a fiscal position without " "deleting it." msgstr "" +"Isključivanjem polja aktivno, možete sakriti fiskalnu poziciju bez da je " +"brišete." #. module: account #: model:ir.model,name:account.model_temp_range msgid "A Temporary table used for Dashboard view" -msgstr "" +msgstr "Privremena tablica za kontrolnu ploču" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree4 @@ -1669,7 +1749,7 @@ msgstr "Šifra pretinca" #. module: account #: field:account.config.settings,company_footer:0 msgid "Bank accounts footer preview" -msgstr "" +msgstr "Pregled podnožja sa podacima od banke" #. module: account #: selection:account.account,type:0 @@ -1685,7 +1765,7 @@ msgstr "Zatvoreno" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries msgid "Recurring Entries" -msgstr "" +msgstr "Ponavljajuće stavke" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template @@ -1695,7 +1775,7 @@ msgstr "Predložak za fiskalnu poziciju" #. module: account #: view:account.subscription:0 msgid "Recurring" -msgstr "" +msgstr "Ponavljanje" #. module: account #: field:account.journal,groups_id:0 @@ -1710,17 +1790,17 @@ msgstr "Neoporezivo" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "Napredna podešavanja" #. module: account #: view:account.bank.statement:0 msgid "Search Bank Statements" -msgstr "" +msgstr "Traži izvode banke" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "" +msgstr "Nepotvrđene stavke knjiženja" #. module: account #: view:account.chart.template:0 @@ -1737,7 +1817,7 @@ msgstr "Konto za povrat poreza" #. module: account #: model:ir.model,name:account.model_ir_sequence msgid "ir.sequence" -msgstr "" +msgstr "ir.sequence" #. module: account #: view:account.bank.statement:0 @@ -1748,7 +1828,7 @@ msgstr "Retci izvoda" #. module: account #: report:account.analytic.account.cost_ledger:0 msgid "Date/Code" -msgstr "" +msgstr "Datum/Šifra" #. module: account #: field:account.analytic.line,general_account_id:0 @@ -1795,23 +1875,23 @@ msgstr "Faktura" #. module: account #: field:account.move,balance:0 msgid "balance" -msgstr "" +msgstr "saldo" #. module: account #: model:process.node,note:account.process_node_analytic0 #: model:process.node,note:account.process_node_analyticcost0 msgid "Analytic costs to invoice" -msgstr "" +msgstr "Analitički troškovi za fakturisanje" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequence" -msgstr "" +msgstr "Sekvenca poslovne godine" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Analitičko računovodstvo" #. module: account #: report:account.overdue:0 @@ -1830,29 +1910,37 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"Ako izaberete \"zaokruživanje po stavci\": za svaki porez, iznos poreza će " +"prvo biti izračunat i zaokružen po svakoj stavci narudžbe/fakture, a tada će " +"ti iznosi biti zbrajani do ukupnog iznosa poreza. Ukoliko odaberete " +"\"Zaokurži globalno\" : za svaki porez iznos poreza će biti izračunat za " +"svaku stavku narudžbe/fakture, tada će iznosi biti zbrojeni i eventualno taj " +"zbroj će biti zaokružen. Ukoliko vršite prodaju sa uključenim porezima, " +"trebali bi odabrati \"Zaokruži po stavci\" jer svakako želite da suma iznosa " +"sa uključenim porezom bude ista kao i suma ukupnog iznosa sa porezom." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all #: view:report.account_type.sales:0 msgid "Sales by Account Type" -msgstr "" +msgstr "Prodaja po tipu konta" #. module: account #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 dana" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing msgid "Invoicing" -msgstr "" +msgstr "Fakturisanje" #. module: account #: code:addons/account/report/account_partner_balance.py:115 #, python-format msgid "Unknown Partner" -msgstr "" +msgstr "Nepoznat partner" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:103 @@ -1861,12 +1949,14 @@ msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." msgstr "" +"Dnevnik mora imati jedinstvenu protustavku bez označene opcije preskoči U " +"pripremi." #. module: account #: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." -msgstr "" +msgstr "Neke stavke su već zatvorene." #. module: account #: field:account.tax.code,sum:0 @@ -1876,7 +1966,7 @@ msgstr "Godišnja suma" #. module: account #: view:account.change.currency:0 msgid "This wizard will change the currency of the invoice" -msgstr "" +msgstr "Ovaj čarobnjak će promjeniti valute fakture" #. module: account #: view:account.installer:0 @@ -1884,11 +1974,14 @@ msgid "" "Select a configuration package to setup automatically your\n" " taxes and chart of accounts." msgstr "" +"Odaberite paket postavki za automatsko postavljanje vaših\n" +" poreza i " +"kontnog plana." #. module: account #: view:account.analytic.account:0 msgid "Pending Accounts" -msgstr "" +msgstr "Konta na čekanju" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -1907,11 +2000,12 @@ msgid "" "If the active field is set to False, it will allow you to hide the journal " "period without removing it." msgstr "" +"Period dnevnika možete sakriti umjesto brisanja ako isključite polje aktivan." #. module: account #: field:account.report.general.ledger,sortby:0 msgid "Sort by" -msgstr "" +msgstr "Sortiraj po" #. module: account #: model:ir.actions.act_window,name:account.act_account_partner_account_move_all @@ -1921,28 +2015,28 @@ msgstr "Potraživanja i dugovanja" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "" +msgstr "Upravljanje nalozima za plaćanje" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "Trajanje" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,last_closing_balance:0 msgid "Last Closing Balance" -msgstr "" +msgstr "Zadnji saldo zatvaranja" #. module: account #: model:ir.model,name:account.model_account_common_journal_report msgid "Account Common Journal Report" -msgstr "" +msgstr "Izvještaj zajedničkog dnevnika konta" #. module: account #: selection:account.partner.balance,display_partner:0 msgid "All Partners" -msgstr "" +msgstr "Svi partneri" #. module: account #: view:account.analytic.chart:0 @@ -1964,7 +2058,7 @@ msgstr "Referenca kupca" #: help:account.tax.template,ref_tax_code_id:0 #: help:account.tax.template,tax_code_id:0 msgid "Use this code for the tax declaration." -msgstr "" +msgstr "Koristi ovu šifru za poreski izvještaj." #. module: account #: help:account.period,special:0 @@ -1979,12 +2073,12 @@ msgstr "Izvod u pripremi" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "" +msgstr "Faktura odobrena" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "Platite dobavljačima čekom" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -1995,7 +2089,7 @@ msgstr "Iznos potraživanja" #: field:account.bank.statement,message_ids:0 #: field:account.invoice,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Poruke" #. module: account #: view:account.vat.declaration:0 @@ -2007,6 +2101,11 @@ msgid "" "useful because it enables you to preview at any time the tax that you owe at " "the start and end of the month or quarter." msgstr "" +"Ovaj meni prikazuje poreskii izvještaj baziran na ulaznim i izlaznim " +"fakturama i plaćanjima. Odaberite jedan ili više perioda fiskalne godine. " +"Potrebni podaci za poresku prijavu automatski se generiraju u OpenERP-u iz " +"faktura. Podaci se osvježavaju u realnom vremenu. Ovo je veoma korisno jer " +"Vam omogućava pregled stanja poreskog duga u trenutku pregleda." #. module: account #: code:addons/account/account.py:409 @@ -2062,7 +2161,7 @@ msgstr "" #: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" -msgstr "" +msgstr "Greška!" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree2 @@ -2077,28 +2176,37 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za unos nove fakture dobavljača .\n" +"

\n" +" Možete kontrolisati fakturu vašeg dobavljača prema tome\n" +" šta ste kupili ili primili. OpenERP može također generisati\n" +" fakture u pripremi automatski iz narudžbi nabavke ili " +"prijema.\n" +"

\n" +" " #. module: account #: sql_constraint:account.move.line:0 msgid "Wrong credit or debit value in accounting entry !" -msgstr "" +msgstr "Pogrešna dugovna ili potražna vrijednost upisane stavke!" #. module: account #: view:account.invoice.report:0 #: model:ir.actions.act_window,name:account.action_account_invoice_report_all #: model:ir.ui.menu,name:account.menu_action_account_invoice_report_all msgid "Invoices Analysis" -msgstr "" +msgstr "Analiza faktura" #. module: account #: model:ir.model,name:account.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Čarobnjak sastavljanja email-a" #. module: account #: model:ir.model,name:account.model_account_period_close msgid "period close" -msgstr "" +msgstr "zatvori period" #. module: account #: code:addons/account/account.py:1058 @@ -2107,16 +2215,18 @@ msgid "" "This journal already contains items for this period, therefore you cannot " "modify its company field." msgstr "" +"Ovaj dnevnik već sadrži stavke za ovaj period, stoga ne možete mijenjati " +"njegovo polje kompanije." #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form msgid "Entries By Line" -msgstr "" +msgstr "Unosi po stavkama" #. module: account #: field:account.vat.declaration,based_on:0 msgid "Based on" -msgstr "" +msgstr "Bazirano na" #. module: account #: model:ir.actions.act_window,help:account.action_bank_statement_tree @@ -2135,23 +2245,35 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog bankovnog izvoda.\n" +"

\n" +" Bankovni izvod sadrži pregled svih financijskih transakcija\n" +" koje su nastale u danom razdoblju po bankovnom računu. " +"Bankovne \n" +" izvode šalje banka periodično.\n" +"

\n" +" OpenERP dozvoljava direktno zatvaranje stavaka sa povezanim\n" +" ulaznim ili izlaznim fakturama.\n" +"

\n" +" " #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "Zadana valuta kompanije" #. module: account #: field:account.invoice,move_id:0 #: field:account.invoice,move_name:0 #: field:account.move.line,move_id:0 msgid "Journal Entry" -msgstr "" +msgstr "Dnevnički zapis" #. module: account #: view:account.invoice:0 msgid "Unpaid" -msgstr "" +msgstr "Neplaćeno" #. module: account #: view:account.treasury.report:0 @@ -2159,12 +2281,12 @@ msgstr "" #: model:ir.model,name:account.model_account_treasury_report #: model:ir.ui.menu,name:account.menu_action_account_treasury_report_all msgid "Treasury Analysis" -msgstr "" +msgstr "Analiza blagajne" #. module: account #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase msgid "Sale/Purchase Journal" -msgstr "" +msgstr "Dnevnik Prodaje/Nabavke" #. module: account #: view:account.analytic.account:0 @@ -2176,7 +2298,7 @@ msgstr "Analitički konto" #: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." -msgstr "" +msgstr "Molimo provjerite da je konto definisan u dnevniku" #. module: account #: selection:account.entries.report,move_line_state:0 @@ -2187,18 +2309,18 @@ msgstr "Potvrđeno" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Pratioci" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal #: model:ir.model,name:account.model_account_print_journal msgid "Account Print Journal" -msgstr "" +msgstr "Ispis dnevnika" #. module: account #: model:ir.model,name:account.model_product_category msgid "Product Category" -msgstr "" +msgstr "Kategorija proizvoda" #. module: account #: code:addons/account/account.py:656 @@ -2207,28 +2329,30 @@ msgid "" "You cannot change the type of account to '%s' type as it contains journal " "items!" msgstr "" +"Nije moguće promijeniti tip konta na '%s' jer već sadrži stavke dnevnika!" #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance msgid "Account Aged Trial balance Report" -msgstr "" +msgstr "Bruto bilanca" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close Fiscal Year" -msgstr "" +msgstr "Zatvaranje fiskalne godine" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "" +msgstr "Dnevnik :" #. module: account #: sql_constraint:account.fiscal.position.tax:0 msgid "A tax fiscal position could be defined only once time on same taxes." msgstr "" +"Fiskalna pozicija poreza se može definisati samo jednom za jedan porez." #. module: account #: view:account.tax:0 @@ -2240,31 +2364,31 @@ msgstr "Definicija poreza" #: view:account.config.settings:0 #: model:ir.actions.act_window,name:account.action_account_config msgid "Configure Accounting" -msgstr "" +msgstr "Postavke računovodstva" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference Unit of Measure" -msgstr "" +msgstr "Referentna JM" #. module: account #: help:account.journal,allow_date:0 msgid "" "If set to True then do not accept the entry if the entry date is not into " "the period dates" -msgstr "" +msgstr "Ne dozvoljava knjiženja izvan fiskalnog perioda" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 #, python-format msgid "Good job!" -msgstr "" +msgstr "Dobro odrađen posao!" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "Upravljanje imovinom" #. module: account #: view:account.account:0 @@ -2287,6 +2411,9 @@ msgid "" "currency. You should remove the secondary currency on the account or select " "a multi-currency view on the journal." msgstr "" +"Odabrani konto vašeg dnevničkog zapisa traži sekundarnu valutu. Trebali bi " +"ste ukloniti sekundarnu valutu sa konta ili odabrati multivalutni pogled na " +"dnevniku." #. module: account #: view:account.invoice:0 @@ -2299,17 +2426,17 @@ msgstr "Neoporezovan iznos" msgid "" "If the active field is set to False, it will allow you to hide the tax " "without removing it." -msgstr "" +msgstr "Neaktivni porezi će biti skriveni u listama odabira." #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "" +msgstr "Stavke analitičkog dnevnika povezane sa dnevnikom prodaje." #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Italic Text (smaller)" -msgstr "" +msgstr "Italic tekst ( manji)" #. module: account #: help:account.journal,cash_control:0 @@ -2317,6 +2444,7 @@ msgid "" "If you want the journal should be control at opening/closing, check this " "option" msgstr "" +"Ako želite kontrolisati otvaranje i zatvaranje dnevnika, označite ovdje" #. module: account #: view:account.bank.statement:0 @@ -2346,7 +2474,7 @@ msgstr "Fiskalna godina" #: code:addons/account/wizard/account_move_bank_reconcile.py:53 #, python-format msgid "Standard Encoding" -msgstr "" +msgstr "Standardno kodiranje" #. module: account #: view:account.journal.select:0 @@ -2357,22 +2485,22 @@ msgstr "Otvori stavke" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "" +msgstr "Sljedeći broj odobrenja dobavljaču" #. module: account #: field:account.automatic.reconcile,account_ids:0 msgid "Accounts to Reconcile" -msgstr "" +msgstr "Konta za zatvaranje" #. module: account #: model:process.transition,note:account.process_transition_filestatement0 msgid "Import of the statement in the system from an electronic file" -msgstr "" +msgstr "Uvoz izvoda iz datoteke" #. module: account #: model:process.node,name:account.process_node_importinvoice0 msgid "Import from invoice" -msgstr "" +msgstr "Uvezi iz faktura" #. module: account #: selection:account.entries.report,month:0 @@ -2381,34 +2509,34 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "January" -msgstr "" +msgstr "Januar" #. module: account #: view:account.entries.report:0 msgid "This F.Year" -msgstr "" +msgstr "Ova F. godina" #. module: account #: view:account.tax.chart:0 msgid "Account tax charts" -msgstr "" +msgstr "Stablo poreza" #. module: account #: model:account.payment.term,name:account.account_payment_term_net #: model:account.payment.term,note:account.account_payment_term_net msgid "30 Net Days" -msgstr "" +msgstr "30 Neto dana" #. module: account #: code:addons/account/account_cash_statement.py:256 #, python-format msgid "You do not have rights to open this %s journal !" -msgstr "" +msgstr "Nemate ovlaštenja da otvorite %s dnevnik!" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "" +msgstr "Provjeri ukupni iznos na fakturama dobavljača" #. module: account #: selection:account.invoice,state:0 @@ -2428,16 +2556,20 @@ msgid "" "partners accounts (for debit/credit computations), closed for depreciated " "accounts." msgstr "" +"Ovaj tip se koristi za razlikovanje tipova s posebnim efektima u OpenERPu: " +"pogled ne može imati zapise, konsolidacija su konta koja imaju podređena " +"konta za konsolidaciju više kompanija, obveze/potraživanja su za saldakonti " +"(za duguje/potražuje izračune), zatvoreni za konta koja se više ne koriste." #. module: account #: view:account.chart.template:0 msgid "Search Chart of Account Templates" -msgstr "" +msgstr "Pretraži predloške kontnog plana" #. module: account #: report:account.invoice:0 msgid "Customer Code" -msgstr "" +msgstr "Šifra kupca" #. module: account #: view:account.account.type:0 @@ -2478,7 +2610,7 @@ msgstr "Konto prihoda" #. module: account #: help:account.config.settings,default_sale_tax:0 msgid "This sale tax will be assigned by default on new products." -msgstr "" +msgstr "Ovaj porez prodaje će biti primjenjen na svim novim proizvodima." #. module: account #: report:account.general.ledger_landscape:0 @@ -2490,17 +2622,17 @@ msgstr "Stavke poredane po" #. module: account #: field:account.change.currency,currency_id:0 msgid "Change to" -msgstr "" +msgstr "Promjeni u" #. module: account #: view:account.entries.report:0 msgid "# of Products Qty " -msgstr "" +msgstr "# kol. proizvoda " #. module: account #: model:ir.model,name:account.model_product_template msgid "Product Template" -msgstr "" +msgstr "Prijedlog proizvoda" #. module: account #: report:account.account.balance:0 @@ -2568,16 +2700,18 @@ msgid "" "You cannot change the type of account from 'Closed' to any other type as it " "contains journal items!" msgstr "" +"Ne možete mijenjati tip konta iz 'zatvoren' u neki drugi tip jer sadrži " +"stavke dnevnika!" #. module: account #: field:account.invoice.report,account_line_id:0 msgid "Account Line" -msgstr "" +msgstr "Stavka" #. module: account #: view:account.addtmpl.wizard:0 msgid "Create an Account Based on this Template" -msgstr "" +msgstr "Kreiraj konto prema ovom predlošku" #. module: account #: code:addons/account/account_invoice.py:933 @@ -2588,6 +2722,10 @@ msgid "" "amount greater than the total invoiced amount. In order to avoid rounding " "issues, the latest line of your payment term must be of type 'balance'." msgstr "" +"Nije moguće izraditi fakturu.\n" +"Povezani način plaćanja je vjerojatno krivo postavljen i dalje izračunati " +"iznos veći od iznosa ukupnog iznosa računa. Kako bi izbjegli probleme sa " +"zaokruživanjem, zadnja linija vašeg plaćanja mora biti tipa 'saldo'." #. module: account #: view:account.move:0 @@ -2607,6 +2745,8 @@ msgid "" "In order to delete a bank statement, you must first cancel it to delete " "related journal items." msgstr "" +"Kako bi izbrisali bankovni izvod, morate ga prvo otkazati kako bi se " +"obrisale sve stavke dnevnika povezane s njim." #. module: account #: field:account.invoice.report,payment_term:0 @@ -2628,7 +2768,7 @@ msgstr "Fiskalne pozicije" #: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." -msgstr "" +msgstr "Nije moguće knjiženje stavaka na zatvorenom kontu %s %s." #. module: account #: field:account.period.close,sure:0 @@ -2644,27 +2784,27 @@ msgstr "Filteri" #: model:process.node,note:account.process_node_draftinvoices0 #: model:process.node,note:account.process_node_supplierdraftinvoices0 msgid "Draft state of an invoice" -msgstr "" +msgstr "Stanje računa 'U pripremi'" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Svojstva konta" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Kreiraj povrat u pripremi" #. module: account #: view:account.partner.reconcile.process:0 msgid "Partner Reconciliation" -msgstr "" +msgstr "Zatvaranje salda konti" #. module: account #: view:account.analytic.line:0 msgid "Fin. Account" -msgstr "" +msgstr "Fin. konto" #. module: account #: field:account.tax,tax_code_id:0 @@ -2676,7 +2816,7 @@ msgstr "Šifra poreza" #: model:account.payment.term,name:account.account_payment_term_advance #: model:account.payment.term,note:account.account_payment_term_advance msgid "30% Advance End 30 Days" -msgstr "" +msgstr "30% avans, ostatak kroz 30 dana" #. module: account #: view:account.entries.report:0 @@ -2692,7 +2832,7 @@ msgstr "Osnovni kod" #. module: account #: help:account.invoice.tax,sequence:0 msgid "Gives the sequence order when displaying a list of invoice tax." -msgstr "" +msgstr "Određuje redosljed sekvenci kada prikazuje listu poreza fakture." #. module: account #: field:account.tax,base_sign:0 @@ -2711,7 +2851,7 @@ msgstr "Centralizacija dugovanja" #: view:account.invoice.confirm:0 #: model:ir.actions.act_window,name:account.action_account_invoice_confirm msgid "Confirm Draft Invoices" -msgstr "" +msgstr "Potvrdite fakture u pripremi" #. module: account #: field:account.entries.report,day:0 @@ -2720,12 +2860,12 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,day:0 msgid "Day" -msgstr "" +msgstr "Dan" #. module: account #: model:ir.actions.act_window,name:account.act_account_renew_view msgid "Accounts to Renew" -msgstr "" +msgstr "Konta za obnovu" #. module: account #: model:ir.model,name:account.model_account_model_line @@ -2767,6 +2907,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za kreiranje dnevnički zapis.\n" +"

\n" +" Dnevnički zapis se sastoji od nekoliko stavaka dnevnika, " +"svaki\n" +" od kojih je ili dugovna ili potražna transakcija.\n" +"

\n" +" OpenERP automatski kreira dnevnički zapis po " +"računovodstvenom\n" +" dokumentu: faktura, povrat, plaćanje dobavljaču, izvod,\n" +" itd. Prema tome, ručno unositi dnevničke zapise bi trebali " +"samo/uglavnom\n" +" za ostale razne operacije.\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -2785,7 +2940,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "" +msgstr "Sljedeći broj fakture dobavljača" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -2795,7 +2950,7 @@ msgstr "Odaberite razdoblje" #. module: account #: model:ir.ui.menu,name:account.menu_account_pp_statements msgid "Statements" -msgstr "" +msgstr "Izvodi" #. module: account #: report:account.analytic.account.journal:0 @@ -2805,7 +2960,7 @@ msgstr "Pomjeri ime" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_writeoff msgid "Account move line reconcile (writeoff)" -msgstr "" +msgstr "Zatvaranje stavke glavne knjige (otpis)" #. module: account #: model:account.account.type,name:account.conf_account_type_tax @@ -2834,7 +2989,7 @@ msgstr "Analitičko konto" #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "Zadani porez nabave" #. module: account #: view:account.account:0 @@ -2847,7 +3002,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_account_form #: model:ir.ui.menu,name:account.menu_analytic msgid "Accounts" -msgstr "" +msgstr "Konta" #. module: account #: code:addons/account/account.py:3541 @@ -2860,19 +3015,19 @@ msgstr "" #: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Greška u konfiguraciji!" #. module: account #: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." -msgstr "" +msgstr "Izvod %s potvrđen, stavke dnevnika su kreirane." #. module: account #: field:account.invoice.report,price_average:0 #: field:account.invoice.report,user_currency_price_average:0 msgid "Average Price" -msgstr "" +msgstr "Prosječna Cijena" #. module: account #: report:account.overdue:0 @@ -2883,12 +3038,12 @@ msgstr "Datum:" #: report:account.journal.period.print:0 #: report:account.journal.period.print.sale.purchase:0 msgid "Label" -msgstr "" +msgstr "Naljepnica" #. module: account #: view:res.partner.bank:0 msgid "Accounting Information" -msgstr "" +msgstr "Računovodstvene informacije" #. module: account #: view:account.tax:0 @@ -2919,28 +3074,29 @@ msgstr "Referenca" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "" +msgstr "Porez Nabave" #. module: account #: help:account.move.line,tax_code_id:0 msgid "The Account can either be a base tax code or a tax code account." -msgstr "" +msgstr "Odaberite ili poreznu grupu poreza ili poreznu grupu osnovice." #. module: account #: sql_constraint:account.model.line:0 msgid "Wrong credit or debit value in model, they must be positive!" msgstr "" +"Kriva dugovna ili potražna vrijednost u modelu. Moraju biti pozitivne!" #. module: account #: model:process.node,note:account.process_node_reconciliation0 #: model:process.node,note:account.process_node_supplierreconciliation0 msgid "Comparison between accounting and payment entries" -msgstr "" +msgstr "Usporedba stavki knjiženja i plaćanja" #. module: account #: model:ir.ui.menu,name:account.menu_automatic_reconcile msgid "Automatic Reconciliation" -msgstr "" +msgstr "Automatsko zatvaranje" #. module: account #: field:account.invoice,reconciled:0 @@ -2957,7 +3113,7 @@ msgstr "Šifra osnovice povrata" #: model:ir.actions.act_window,name:account.action_bank_statement_tree #: model:ir.ui.menu,name:account.menu_bank_statement_tree msgid "Bank Statements" -msgstr "" +msgstr "Izvodi banke" #. module: account #: model:ir.actions.act_window,help:account.action_account_fiscalyear @@ -2978,6 +3134,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za otvaranje nove fiskalne godine.\n" +"

\n" +" Definišite fiskalnu godinu vaše kompanije prema vašim " +"potrebama. \n" +" Fiskalna godina je period na kraju kojeg zaključujemo " +"poslovnu\n" +" godinu (obično 12 mjeseci). U Bosni fiskalna godina prati " +"kalendarsku.\n" +"

\n" +" " #. module: account #: view:account.common.report:0 @@ -2985,12 +3152,12 @@ msgstr "" #: view:account.move.line:0 #: view:accounting.report:0 msgid "Dates" -msgstr "" +msgstr "Datumi" #. module: account #: field:account.chart.template,parent_id:0 msgid "Parent Chart Template" -msgstr "" +msgstr "Nadređeni prijedlog kontnog plana" #. module: account #: field:account.tax,parent_id:0 @@ -3009,12 +3176,12 @@ msgstr "Zreli saldo partnera" #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries" -msgstr "" +msgstr "Knjigovodstveni unosi" #. module: account #: constraint:account.move.line:0 msgid "Account and Period must belong to the same company." -msgstr "" +msgstr "Konto i period moraju pripadati istoj kompaniji." #. module: account #: field:account.invoice.line,discount:0 @@ -3030,6 +3197,10 @@ msgid "" "Note that journal entries that are automatically created by the system are " "always skipping that state." msgstr "" +"Označite ovu kućicu ako ne želite da nove stavke dnevnika prolaze kroz " +"status 'U pripremi' već da direktno postaju 'Knjižene' bez ručne ovjere. " +"Imajte na umu da stavke dnevnika koje se kreiraju automatski uvjek preskaču " +"taj status." #. module: account #: field:account.move.line.reconcile,writeoff:0 @@ -3040,7 +3211,7 @@ msgstr "Iznos otpisa" #: field:account.bank.statement,message_unread:0 #: field:account.invoice,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepročitane poruke" #. module: account #: code:addons/account/wizard/account_invoice_state.py:44 @@ -3049,35 +3220,37 @@ msgid "" "Selected invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-" "Forma' state." msgstr "" +"Odabrani fakture ne mogu biti potvrđeni jer nisu u stanju 'U pripremi' ili " +"'ProForma'" #. module: account #: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." -msgstr "" +msgstr "Trebali bi odabrati periode koji pripadaju istoj kompaniji." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all #: view:report.account.sales:0 #: view:report.account_type.sales:0 msgid "Sales by Account" -msgstr "" +msgstr "Prodaje po kontu" #. module: account #: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "" +msgstr "Ne možete obrisati knjiženu stavku dnevnika\"%s\"." #. module: account #: view:account.invoice:0 msgid "Accounting Period" -msgstr "" +msgstr "Obračuski period" #. module: account #: field:account.config.settings,sale_journal_id:0 msgid "Sale journal" -msgstr "" +msgstr "Dnevnik prodaje" #. module: account #: code:addons/account/account.py:2346 @@ -3085,7 +3258,7 @@ msgstr "" #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" -msgstr "" +msgstr "Morate definisati analitički dnevnik na dnevniku '%s' !" #. module: account #: code:addons/account/account.py:781 @@ -3094,6 +3267,8 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" +"Ovaj dnevnik već sadrži stavke i prema tome ne možete mijenjati polje " +"kompanije" #. module: account #: code:addons/account/account.py:409 @@ -3102,6 +3277,8 @@ msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." msgstr "" +"Treba Vam dnevnik početnog stanja sa upaljenom centralizacijom za " +"postavljanje početnog stanja." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -3112,13 +3289,13 @@ msgstr "Šifre poreza" #. module: account #: view:account.account:0 msgid "Unrealized Gains and losses" -msgstr "" +msgstr "Nerealizirani dobici i i gubici" #. module: account #: model:ir.ui.menu,name:account.menu_account_customer #: model:ir.ui.menu,name:account.menu_finance_receivables msgid "Customers" -msgstr "" +msgstr "Kupci" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -3134,12 +3311,12 @@ msgstr "Razdoblje do" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "August" -msgstr "" +msgstr "Avgust" #. module: account #: field:accounting.report,debit_credit:0 msgid "Display Debit/Credit Columns" -msgstr "" +msgstr "Prikaži kolone duguje/potražuje" #. module: account #: selection:account.entries.report,month:0 @@ -3148,7 +3325,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "October" -msgstr "" +msgstr "Oktobar" #. module: account #: help:account.move.line,quantity:0 @@ -3156,17 +3333,19 @@ msgid "" "The optional quantity expressed by this line, eg: number of product sold. " "The quantity is not a legal requirement but is very useful for some reports." msgstr "" +"Opcionalna količina izražena ovom linijom, npr.: broj prodanih komada " +"artikla. Količina je vrlo korisna za neke izvještaje." #. module: account #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Transakcije koje nisu zatvorene" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 msgid "Only One Chart Template Available" -msgstr "" +msgstr "Samo jedan prijedlog kontnog plana je dostupan" #. module: account #: view:account.chart.template:0 @@ -3179,7 +3358,7 @@ msgstr "Konto za rashode" #: field:account.bank.statement,message_summary:0 #: field:account.invoice,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Rezime" #. module: account #: help:account.invoice,period_id:0 @@ -3191,6 +3370,8 @@ msgstr "Ostavi prazno da bi se koristio datum validacije (računa) kao period" msgid "" "used in statement reconciliation domain, but shouldn't be used elswhere." msgstr "" +"korišteno u domeni zatvaranja izvoda, ali ne bi se trebalo koristiti na " +"drugim mjestima." #. module: account #: field:account.config.settings,date_stop:0 @@ -3205,7 +3386,7 @@ msgstr "Iznos osnovne šifre" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "" +msgstr "Zadani porez prodaje" #. module: account #: help:account.model.line,date_maturity:0 @@ -3214,6 +3395,8 @@ msgid "" "between the creation date or the creation date of the entries plus the " "partner payment terms." msgstr "" +"Datum dospijeća generisanig stavaka za ovaj model. Možete birati između " +"datuma izrade ili datum izrade/unosa plus uslova plaćanja partnera." #. module: account #: model:ir.ui.menu,name:account.menu_finance_accounting @@ -3223,7 +3406,7 @@ msgstr "Financijsko računovodstvo" #. module: account #: model:ir.ui.menu,name:account.menu_account_report_pl msgid "Profit And Loss" -msgstr "" +msgstr "Dobit i Gubitak" #. module: account #: view:account.fiscal.position:0 @@ -3246,6 +3429,8 @@ msgid "" "Tax base different!\n" "Click on compute to update the tax base." msgstr "" +"Različita poreska osnovica!\n" +"Kliknite za ponovni izračun osnovice." #. module: account #: field:account.partner.ledger,page_split:0 @@ -3264,13 +3449,13 @@ msgstr "Potomci" #: model:ir.actions.report.xml,name:account.account_account_balance #: model:ir.ui.menu,name:account.menu_general_Balance_report msgid "Trial Balance" -msgstr "" +msgstr "Bilans" #. module: account #: code:addons/account/account.py:431 #, python-format msgid "Unable to adapt the initial balance (negative value)." -msgstr "" +msgstr "Nije moguće postaviti početno stanje (negativne vrijednosti)." #. module: account #: selection:account.invoice,type:0 @@ -3289,23 +3474,23 @@ msgstr "Odaberite fiskalnu godinu" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "" +msgstr "Raspon datuma" #. module: account #: view:account.period:0 msgid "Search Period" -msgstr "" +msgstr "Pretraži period" #. module: account #: view:account.change.currency:0 msgid "Invoice Currency" -msgstr "" +msgstr "Valuta fakture" #. module: account #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "Računovodstveni izvještaj" #. module: account #: field:account.payment.term,line_ids:0 @@ -3320,7 +3505,7 @@ msgstr "Lista predloška poreza" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "" +msgstr "Dnevnici Prodaje/Nabave" #. module: account #: help:account.account,currency_mode:0 @@ -3341,7 +3526,7 @@ msgstr "" #: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." -msgstr "" +msgstr "Nema nadređene šifre za prijedlog konta." #. module: account #: help:account.chart.template,code_digits:0 @@ -3352,28 +3537,30 @@ msgstr "Broj znamenki za upotrebu u šifri računa" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "Uslovi plaćanja dobavljača" #. module: account #: view:account.fiscalyear:0 msgid "Search Fiscalyear" -msgstr "" +msgstr "Pretraži fiskalnu godinu" #. module: account #: selection:account.tax,applicable_type:0 msgid "Always" -msgstr "" +msgstr "Uvijek" #. module: account #: field:account.config.settings,module_account_accountant:0 msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." msgstr "" +"Puna računovodstvena funkcionalnost: dnevnici, zakonski izvještaji, kontni " +"plan itd." #. module: account #: view:account.analytic.line:0 msgid "Total Quantity" -msgstr "" +msgstr "Ukupna količina" #. module: account #: field:account.move.line.reconcile.writeoff,writeoff_acc_id:0 @@ -3415,7 +3602,7 @@ msgstr "Retci analitike" #. module: account #: view:account.invoice:0 msgid "Proforma Invoices" -msgstr "" +msgstr "Proforma fakture" #. module: account #: model:process.node,name:account.process_node_electronicfile0 @@ -3425,12 +3612,12 @@ msgstr "Elektronska datoteka" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Ref. zatvaranja" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 msgid "Company has a chart of accounts" -msgstr "" +msgstr "Kompanija ima kontni plan" #. module: account #: model:ir.model,name:account.model_account_tax_code_template @@ -3440,7 +3627,7 @@ msgstr "Predložak šifre poreza" #. module: account #: model:ir.model,name:account.model_account_partner_ledger msgid "Account Partner Ledger" -msgstr "" +msgstr "Saldo konti partnera" #. module: account #: model:email.template,body_html:account.email_template_edi_invoice @@ -3530,14 +3717,14 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Account Period" -msgstr "" +msgstr "Obračunski period" #. module: account #: help:account.account,currency_id:0 #: help:account.account.template,currency_id:0 #: help:account.bank.accounts.wizard,currency_id:0 msgid "Forces all moves for this account to have this secondary currency." -msgstr "" +msgstr "Forsira da sva knjiženja ovog konta moraju imati sekundarnu valutu." #. module: account #: model:ir.actions.act_window,help:account.action_validate_account_move_line @@ -3545,6 +3732,8 @@ msgid "" "This wizard will validate all journal entries of a particular journal and " "period. Once journal entries are validated, you can not update them anymore." msgstr "" +"Ovaj čarobnjak će knjižiti sve neknjižene stavke odabranog dnevnika za " +"odabrani period." #. module: account #: model:ir.actions.act_window,name:account.action_account_chart_template_form @@ -3555,12 +3744,12 @@ msgstr "Predlošci računskog plana" #. module: account #: view:account.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Transakcije" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile msgid "Account Unreconcile Reconcile" -msgstr "" +msgstr "Zatvaranje neztvorenih konta" #. module: account #: help:account.account.type,close_method:0 @@ -3575,6 +3764,13 @@ msgid "" " 'Unreconciled' will copy only the journal items that were unreconciled on " "the first day of the new fiscal year." msgstr "" +"Postavite metodu knjiženja kod zatvaranja konta na kraju godine.\n" +"Sva konta ovog tipa će se zatvarati prema odabranoj metodi.\n" +"\n" +" 'Ništa' - neće generirati stavke.\n" +" 'Saldo' - koristi se uglavnom za konta banke i blagajne.\n" +" 'Stavke' - sve stavke se prenose u novu godinu(i zatvorene).\n" +" 'Otvorene stavke' - prenose se otvorene stavke (konta kupaca i dobavljača)." #. module: account #: view:account.tax.template:0 @@ -3618,7 +3814,7 @@ msgstr "Nalozi za knjiženje" #. module: account #: field:account.partner.reconcile.process,to_reconcile:0 msgid "Remaining Partners" -msgstr "" +msgstr "Preostali partneri" #. module: account #: view:account.subscription:0 @@ -3642,12 +3838,12 @@ msgstr "Nabava" #: view:account.installer:0 #: view:wizard.multi.charts.accounts:0 msgid "Accounting Application Configuration" -msgstr "" +msgstr "Konfiguracija računovodstvene aplikacije" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration msgid "Account Tax Declaration" -msgstr "" +msgstr "Poreski izvještaj" #. module: account #: help:account.bank.statement,name:0 @@ -3656,6 +3852,8 @@ msgid "" "be with same name as statement name. This allows the statement entries to " "have the same references than the statement itself" msgstr "" +"Ako date ime drugačije od /, njegove kreirane stavke će imati isto ime kao i " +"izvod. Ovo omogućava stavkama izvoda da imaju istu oznaku kao i glava." #. module: account #: code:addons/account/account_invoice.py:1016 @@ -3665,6 +3863,9 @@ msgid "" "centralized counterpart box in the related journal from the configuration " "menu." msgstr "" +"Ne možete kreirati račun na centraiziranom dnevniku. Odznačite " +"centralizirana protustavka kvadratić u povezanom dnevniku iz menija " +"konfiguracije." #. module: account #: field:account.bank.statement,balance_start:0 @@ -3676,7 +3877,7 @@ msgstr "Početni saldo" #: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" -msgstr "" +msgstr "Nije definiran partner !" #. module: account #: model:ir.actions.act_window,name:account.action_account_period_close @@ -3689,7 +3890,7 @@ msgstr "Zatvori razdoblje" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Početni subtotal" #. module: account #: constraint:account.move.line:0 @@ -3697,11 +3898,13 @@ msgid "" "You cannot create journal items with a secondary currency without recording " "both 'currency' and 'amount currency' field." msgstr "" +"Ne možete kreirati stavke dnevnika sa sekundarnom valutom bez unosa polja " +"'valuta' i 'iznos valute'." #. module: account #: field:account.financial.report,display_detail:0 msgid "Display details" -msgstr "" +msgstr "Prikaži detalje" #. module: account #: report:account.overdue:0 @@ -3713,7 +3916,7 @@ msgstr "PDV:" msgid "" "The amount expressed in the related account currency if not equal to the " "company one." -msgstr "" +msgstr "Iznos iskazan u valuti konta ako nije isti valuti kompanije." #. module: account #: help:account.config.settings,paypal_account:0 @@ -3723,6 +3926,9 @@ msgid "" "quotations with a button \"Pay with Paypal\" in automated emails or through " "the OpenERP portal." msgstr "" +"Paypal račun (email) za primanja online uplata. Ako postavite paypal račun, " +"partner će moći platiti vaše račune ili ponude pomoću PayPal dugmeta u " +"automatski poslanim mailovima sa OpenERP portala." #. module: account #: code:addons/account/account_move_line.py:536 @@ -3733,6 +3939,10 @@ msgid "" "You can create one in the menu: \n" "Configuration/Journals/Journals." msgstr "" +"Nema niti jednog dnevnika %s tipa za ovu kompaniju.\n" +"\n" +"Možete kreirati jednog u meniju: \n" +"Konfiguracija/Dnevnici/Dnevnici." #. module: account #: model:ir.actions.act_window,name:account.action_account_unreconcile @@ -3751,17 +3961,17 @@ msgstr "Ne ispisuje se na fakturi" #: report:account.vat.declaration:0 #: field:account.vat.declaration,chart_tax_id:0 msgid "Chart of Tax" -msgstr "" +msgstr "Stablo poreza" #. module: account #: view:account.journal:0 msgid "Search Account Journal" -msgstr "" +msgstr "Pretraži dnevnik knjiženja" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice msgid "Pending Invoice" -msgstr "" +msgstr "Faktura na čekanju" #. module: account #: view:account.invoice.report:0 @@ -3783,6 +3993,11 @@ msgid "" "by\n" " your supplier/customer." msgstr "" +"Moći ćete uređivati i odobriti ovo\n" +" odobrenje direktno ili ostaviti u " +"pripremi,\n" +" čekajući dokument koji će biti izdan\n" +" od strane dobavljača/kupca." #. module: account #: view:validate.account.move.lines:0 @@ -3790,6 +4005,8 @@ msgid "" "All selected journal entries will be validated and posted. It means you " "won't be able to modify their accounting fields anymore." msgstr "" +"Sve odabrane stavke dnevnika će biti potvrđene i objavljene. To znači da " +"nećete više moći modificirati njihova polja." #. module: account #: code:addons/account/account_move_line.py:98 @@ -3798,6 +4015,8 @@ msgid "" "You have not supplied enough arguments to compute the initial balance, " "please select a period and a journal in the context." msgstr "" +"Niste osigurali dovoljno argumenata za izračun početnog stanja, molimo " +"odaberite period i dnevnik u kontekstu." #. module: account #: model:ir.actions.report.xml,name:account.account_transfers @@ -3807,7 +4026,7 @@ msgstr "Prijenosi" #. module: account #: field:account.config.settings,expects_chart_of_accounts:0 msgid "This company has its own chart of accounts" -msgstr "" +msgstr "Ova organizacija ima svoj kontni plan" #. module: account #: view:account.chart:0 @@ -3818,7 +4037,7 @@ msgstr "Kontni plan" #: view:cash.box.out:0 #: model:ir.actions.act_window,name:account.action_cash_box_out msgid "Take Money Out" -msgstr "" +msgstr "Podigni novac" #. module: account #: report:account.vat.declaration:0 @@ -3828,7 +4047,7 @@ msgstr "Iznos poreza" #. module: account #: view:account.move:0 msgid "Search Move" -msgstr "" +msgstr "Pretraži kretanja" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree1 @@ -3848,6 +4067,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za izradu nove fakture kupcu.\n" +"

\n" +" Elektronsko fakturisanje OpenERPa omogućava jednostavniju \n" +" i bržu naplatu faktura. Vaš kupac prima fakturu emailom i " +"može\n" +" plaćati online i/ili uvesti fakturu u svoj sistem.\n" +"

\n" +" Razgovori s vašim kupcem su automatski prikazani\n" +" na dnu svake fakture.\n" +"

\n" +" " #. module: account #: field:account.tax.code,name:0 @@ -3870,7 +4101,7 @@ msgstr "Opcije" #. module: account #: field:account.aged.trial.balance,period_length:0 msgid "Period Length (days)" -msgstr "" +msgstr "Dužina perioda (dana)" #. module: account #: code:addons/account/account.py:1363 @@ -3879,11 +4110,13 @@ msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" +"Ne možete mijenjati knjižene stavke ovog dnevnika.\n" +"Prvo je potrebno u dnevniku omogućiti otkazivanje stavki." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal msgid "Print Sale/Purchase Journal" -msgstr "" +msgstr "Ispiši dnevnik Prodaje/Nabave" #. module: account #: view:account.installer:0 @@ -3894,7 +4127,7 @@ msgstr "Nastavi" #: view:account.invoice.report:0 #: field:account.invoice.report,categ_id:0 msgid "Category of Product" -msgstr "" +msgstr "Kategorija proizvoda" #. module: account #: code:addons/account/account.py:930 @@ -3903,18 +4136,20 @@ msgid "" "There is no fiscal year defined for this date.\n" "Please create one from the configuration of the accounting menu." msgstr "" +"Nema definisane poslovne godine za ovaj datum.\n" +"Molimo kreirajte jednu u postavkama menija Računovodstvo" #. module: account #: view:account.addtmpl.wizard:0 #: model:ir.actions.act_window,name:account.action_account_addtmpl_wizard_form msgid "Create Account" -msgstr "" +msgstr "Kreiraj konto" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:62 #, python-format msgid "The entries to reconcile should belong to the same company." -msgstr "" +msgstr "Stavke za zatvaranje trebale bi pripadati istoj kompaniji." #. module: account #: field:account.invoice.tax,tax_amount:0 @@ -3924,7 +4159,7 @@ msgstr "Iznos šifre poreza" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "" +msgstr "Otvorene stavke dnevnika" #. module: account #: selection:account.account.type,close_method:0 @@ -3935,6 +4170,7 @@ msgstr "Detalji" #: help:account.config.settings,default_purchase_tax:0 msgid "This purchase tax will be assigned by default on new products." msgstr "" +"Ovaj porez nabave će biti dodijeljen kao zadani svim novim proizvodima." #. module: account #: report:account.invoice:0 @@ -3961,17 +4197,17 @@ msgstr "Kontni plan" #. module: account #: view:account.tax.chart:0 msgid "(If you do not select period it will take all open periods)" -msgstr "" +msgstr "(prazno - sva otvorena razdoblja)" #. module: account #: model:ir.model,name:account.model_account_journal_cashbox_line msgid "account.journal.cashbox.line" -msgstr "" +msgstr "account.journal.cashbox.line" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process msgid "Reconcilation Process partner by partner" -msgstr "" +msgstr "Proces zatvaranja, partner po partner" #. module: account #: view:account.chart:0 @@ -4024,7 +4260,7 @@ msgstr "Datum" #. module: account #: view:account.move:0 msgid "Post" -msgstr "" +msgstr "Knjiži" #. module: account #: view:account.unreconcile:0 @@ -4045,6 +4281,9 @@ msgid "" "based on partner payment term!\n" "Please define partner on it!" msgstr "" +"Datum dospijeća stavke generisan stavkom modela '%s' od modela '%s' se " +"bazira na načinu plaćanja partnera!\n" +"Molimo odredite partnera na njemu!" #. module: account #: report:account.account.balance:0 @@ -4060,7 +4299,7 @@ msgstr "Sve" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reporting_budgets msgid "Budgets" -msgstr "" +msgstr "Budžeti" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -4079,18 +4318,18 @@ msgstr "" #: selection:accounting.report,filter:0 #: selection:accounting.report,filter_cmp:0 msgid "No Filters" -msgstr "" +msgstr "Bez filtera" #. module: account #: view:account.invoice.report:0 #: model:res.groups,name:account.group_proforma_invoices msgid "Pro-forma Invoices" -msgstr "" +msgstr "ProForma fakture" #. module: account #: view:res.partner:0 msgid "History" -msgstr "" +msgstr "Istorija" #. module: account #: help:account.tax,applicable_type:0 @@ -4105,7 +4344,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "Provjeri iznos na fakturi dobavljača" #. module: account #: view:account.tax:0 @@ -4119,12 +4358,14 @@ msgid "" "When monthly periods are created. The status is 'Draft'. At the end of " "monthly period it is in 'Done' status." msgstr "" +"Kada se stvore mjesečni periodi imaju status 'U pripremi', na kraju mjeseca " +"status se mijenja u 'Gotovo'" #. module: account #: view:account.invoice.report:0 #: field:account.invoice.report,product_qty:0 msgid "Qty" -msgstr "" +msgstr "Kol." #. module: account #: help:account.tax.code,sign:0 @@ -4133,11 +4374,13 @@ msgid "" "the amount of this case into its parent. For example, set 1/-1 if you want " "to add/substract it." msgstr "" +"Koeficijent zbrajanja na nadređenu grupu. Npr. 1/-1 za zbrajanje/oduzimanje " +"ili 0 za izostavljanje." #. module: account #: view:account.analytic.line:0 msgid "Search Analytic Lines" -msgstr "" +msgstr "Pretraži analitičke stavke" #. module: account #: field:res.partner,property_account_payable:0 @@ -4148,7 +4391,7 @@ msgstr "Konto dugovanja" #: code:addons/account/wizard/account_fiscalyear_close.py:88 #, python-format msgid "The periods to generate opening entries cannot be found." -msgstr "" +msgstr "Periodi za stvaranje početnih stanja nisu pronađeni." #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 @@ -4171,12 +4414,12 @@ msgstr "Jedinična cijena" #. module: account #: model:ir.actions.act_window,name:account.action_account_tree1 msgid "Analytic Items" -msgstr "" +msgstr "Analitičke stavke" #. module: account #: field:analytic.entries.report,nbr:0 msgid "#Entries" -msgstr "" +msgstr "#Stavki" #. module: account #: view:account.state.open:0 @@ -4186,12 +4429,12 @@ msgstr "Otvori fakturu" #. module: account #: field:account.invoice.tax,factor_tax:0 msgid "Multipication factor Tax code" -msgstr "" +msgstr "Koeficijent poreske grupe" #. module: account #: field:account.config.settings,complete_tax_set:0 msgid "Complete set of taxes" -msgstr "" +msgstr "Potpuni popis poreza" #. module: account #: field:account.account,name:0 @@ -4209,12 +4452,12 @@ msgstr "Naziv" #: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" -msgstr "" +msgstr "Nema nepodešenih kompanija!" #. module: account #: field:res.company,expects_chart_of_accounts:0 msgid "Expects a Chart of Accounts" -msgstr "" +msgstr "Očekuje kontni plan" #. module: account #: field:account.move.line,date:0 @@ -4225,29 +4468,29 @@ msgstr "Efektivni datum" #: code:addons/account/wizard/account_fiscalyear_close.py:100 #, python-format msgid "The journal must have default credit and debit account." -msgstr "" +msgstr "Dnevnik mora imati zadani dugovni i potražni konto." #. module: account #: model:ir.actions.act_window,name:account.action_bank_tree #: model:ir.ui.menu,name:account.menu_action_bank_tree msgid "Setup your Bank Accounts" -msgstr "" +msgstr "Upišite vaše bankovne račune" #. module: account #: xsl:account.transfer:0 msgid "Partner ID" -msgstr "" +msgstr "ID Partnera" #. module: account #: help:account.bank.statement,message_ids:0 #: help:account.invoice,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Poruke i istorija komunikacije" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "" +msgstr "Dnevnik za analitiku" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4268,6 +4511,8 @@ msgid "" "The fiscalyear, periods or chart of account chosen have to belong to the " "same company." msgstr "" +"Fiskalna godina, periodi ili odabrani kontni plan moraju pripadati istoj " +"kompaniji." #. module: account #: help:account.tax.code.template,notprintable:0 @@ -4275,13 +4520,15 @@ msgid "" "Check this box if you don't want any tax related to this tax Code to appear " "on invoices." msgstr "" +"Označite ovo polje ako ne želite da se porezi povezani sa ovim poreznim " +"kodom pojavljuju na računima." #. module: account #: code:addons/account/account_move_line.py:1058 #: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." -msgstr "" +msgstr "Nije moguće koristiti neaktivni konto" #. module: account #: model:ir.actions.act_window,name:account.open_board_account @@ -4300,7 +4547,7 @@ msgstr "Računovodstvo" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current year" -msgstr "" +msgstr "Stavke dnevnika u tekućoj godini" #. module: account #: field:account.account,child_consol_ids:0 @@ -4312,7 +4559,7 @@ msgstr "Konsolidirani potomci" #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Nedovoljno podataka!" #. module: account #: help:account.account,unrealized_gain_loss:0 @@ -4320,11 +4567,13 @@ msgid "" "Value of Loss or Gain due to changes in exchange rate when doing multi-" "currency transactions." msgstr "" +"Vrijednost dobiti ili gubitka usljed kursnih razlika kad se koristi više " +"valutne transakcije." #. module: account #: view:account.analytic.line:0 msgid "General Accounting" -msgstr "" +msgstr "Glavna knjiga" #. module: account #: help:account.fiscalyear.close,journal_id:0 @@ -4334,11 +4583,15 @@ msgid "" "debit/credit accounts, of type 'situation' and with a centralized " "counterpart." msgstr "" +"Najbolja praksa je definisati dnevnik(e) na kojima se knjiže početna stanja " +"svih poslovnih godina. Za ove dnevnike treba definisati dugovni i potražni " +"konto protustavki, a vrsta dnevnika mora biti 'Početno stanje' sa " +"centraliziranom(jednom) protustavkom." #. module: account #: view:account.installer:0 msgid "title" -msgstr "" +msgstr "Naslov" #. module: account #: view:account.invoice:0 @@ -4349,12 +4602,12 @@ msgstr "Postavi u pripremu" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form msgid "Recurring Lines" -msgstr "" +msgstr "Ponavljajuće stavke" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "" +msgstr "Prikaži partnere" #. module: account #: view:account.invoice:0 @@ -4364,17 +4617,17 @@ msgstr "Potvrdi" #. module: account #: model:account.financial.report,name:account.account_financial_report_assets0 msgid "Assets" -msgstr "" +msgstr "Imovina" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "" +msgstr "Računovodstvo i Financije" #. module: account #: view:account.invoice.confirm:0 msgid "Confirm Invoices" -msgstr "" +msgstr "Potvrdi fakture" #. module: account #: selection:account.account,currency_mode:0 @@ -4386,7 +4639,7 @@ msgstr "Prosječna mjera" #: field:account.common.account.report,display_account:0 #: field:account.report.general.ledger,display_account:0 msgid "Display Accounts" -msgstr "" +msgstr "Prikaži konta" #. module: account #: view:account.state.open:0 @@ -4396,12 +4649,12 @@ msgstr "(Treba poništiti usklađivanje fakture da biste ju otvorili)" #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "Analitički konto poreza faktura" #. module: account #: field:account.chart,period_from:0 msgid "Start period" -msgstr "" +msgstr "Početni period" #. module: account #: field:account.tax,name:0 @@ -4434,6 +4687,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Ovaj uslov plaćanja će biti korišten umjesto zadanog za prodajne narudžbe i " +"fakture." #. module: account #: view:account.config.settings:0 @@ -4441,33 +4696,34 @@ msgid "" "If you put \"%(year)s\" in the prefix, it will be replaced by the current " "year." msgstr "" +"Ako stavite \"%(year)s\" u prefiks, biti će zamijenjeno sa tekućom godinom." #. module: account #: help:account.account,active:0 msgid "" "If the active field is set to False, it will allow you to hide the account " "without removing it." -msgstr "" +msgstr "Neaktivna konta se neće prikazivati u listama odabira." #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "" +msgstr "Knjižene stavke dnevnika" #. module: account #: field:account.move.line,blocked:0 msgid "No Follow-up" -msgstr "" +msgstr "Ne prati" #. module: account #: view:account.tax.template:0 msgid "Search Tax Templates" -msgstr "" +msgstr "Pretraži predloške poreza" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation msgid "Draft Entries" -msgstr "" +msgstr "Stavke u stanju \"U pripremi\"" #. module: account #: help:account.config.settings,decimal_precision:0 @@ -4476,6 +4732,8 @@ msgid "" "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." msgstr "" +"Na primjer, decimalna preciznost 2 dozvoljava unose kao 9,99 KM, dok " +"decimalna preciznost od 4 dozvoljava unose tipa 0,0231 KM" #. module: account #: field:account.account,shortcut:0 @@ -4502,18 +4760,18 @@ msgstr "Tip konta" #. module: account #: view:account.bank.statement:0 msgid "Close CashBox" -msgstr "" +msgstr "Zatvori blagajnu" #. module: account #: model:ir.model,name:account.model_account_invoice_cancel msgid "Cancel the Selected Invoices" -msgstr "" +msgstr "Otkaži odabrane račune" #. module: account #: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" -msgstr "" +msgstr "Morate dodijeliti analitički dnevnik na '%s' dnevniku!" #. module: account #: model:process.transition,note:account.process_transition_supplieranalyticcost0 @@ -4521,6 +4779,8 @@ msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft supplier invoices." msgstr "" +"Analitički troškovi (ev. rada, nabava, ...) dolaze sa analitičkih konta. Oni " +"mogu kreirati fakture dobavljača u pripremi." #. module: account #: model:ir.actions.act_window,help:account.action_bank_tree @@ -4537,6 +4797,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za podešavanje novog bankovnog računa. \n" +"

\n" +" Podesite bankovni račun vaše kompanije i odaberite one koji se\n" +" moraju pojaviti u podnožju izvještaja.\n" +"

\n" +" Ako koristite računovodstvo OpenERPa, dnevnici i\n" +" konta će se kreirati automatski na bazi ovih podataka.\n" +"

\n" +" " #. module: account #: constraint:account.tax.code.template:0 @@ -4544,6 +4814,8 @@ msgid "" "Error!\n" "You cannot create recursive Tax Codes." msgstr "" +"Greška !\n" +"Nije moguće stvarati rekurzivne poreske kodove" #. module: account #: constraint:account.period:0 @@ -4551,6 +4823,8 @@ msgid "" "Error!\n" "The duration of the Period(s) is/are invalid." msgstr "" +"Greška!\n" +"Trajanje perioda nije ispravno." #. module: account #: field:account.entries.report,month:0 @@ -4567,12 +4841,12 @@ msgstr "Mjesec" #: code:addons/account/account.py:668 #, python-format msgid "You cannot change the code of account which contains journal items!" -msgstr "" +msgstr "Ne možete mijenjati šifru konta koji ima stavke dnevnika!" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "" +msgstr "Sekvenca faktura dobavljača" #. module: account #: code:addons/account/account_invoice.py:610 @@ -4582,28 +4856,30 @@ msgid "" "Cannot find a chart of account, you should create one from Settings\\" "Configuration\\Accounting menu." msgstr "" +"Nije moguće pronaći kontni pan, trebate kreirati jedan iz menija Postavke\\" +"Konfiguracija\\Računovodstvo." #. module: account #: field:account.entries.report,product_uom_id:0 #: view:analytic.entries.report:0 #: field:analytic.entries.report,product_uom_id:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Jedinica mjere proizvoda" #. module: account #: field:res.company,paypal_account:0 msgid "Paypal Account" -msgstr "" +msgstr "PayPal račun" #. module: account #: view:account.entries.report:0 msgid "Acc.Type" -msgstr "" +msgstr "Tip konta" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Banka i Čekovi" #. module: account #: field:account.account.template,note:0 @@ -4613,14 +4889,14 @@ msgstr "Bilješka" #. module: account #: selection:account.financial.report,sign:0 msgid "Reverse balance sign" -msgstr "" +msgstr "Obrnuti predznak salda" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:191 #, python-format msgid "Balance Sheet (Liability account)" -msgstr "" +msgstr "Bilans (konto obveza)" #. module: account #: help:account.invoice,date_invoice:0 @@ -4631,24 +4907,25 @@ msgstr "Ostaviti prazno da se koristi današnji datum" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Subtotal zatvaranja" #. module: account #: field:account.tax,base_code_id:0 msgid "Account Base Code" -msgstr "" +msgstr "Porezna grupa osnovice" #. module: account #: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." -msgstr "" +msgstr "Morate predvidjeti konto za otpis / kursnu razliku." #. module: account #: help:res.company,paypal_account:0 msgid "Paypal username (usually email) for receiving online payments." msgstr "" +"PAyPal korisničko ima (obično e-mail adresa) za primanje online uplata." #. module: account #: selection:account.aged.trial.balance,target_move:0 @@ -4680,12 +4957,12 @@ msgstr "Raspon mjeseci" #. module: account #: help:account.analytic.balance,empty_acc:0 msgid "Check if you want to display Accounts with 0 balance too." -msgstr "" +msgstr "Označite ako želite prikazivati konta sa saldom 0 također." #. module: account #: field:account.move.reconcile,opening_reconciliation:0 msgid "Opening Entries Reconciliation" -msgstr "" +msgstr "Zatvaranje stavaka početnog stanja" #. module: account #. openerp-web @@ -4697,12 +4974,12 @@ msgstr "" #. module: account #: selection:account.move.line,state:0 msgid "Balanced" -msgstr "" +msgstr "Izravnato" #. module: account #: model:process.node,note:account.process_node_importinvoice0 msgid "Statement from invoice or payment" -msgstr "" +msgstr "Izvod iz faktura ili plaćanja" #. module: account #: code:addons/account/installer.py:115 @@ -4711,26 +4988,27 @@ msgid "" "There is currently no company without chart of account. The wizard will " "therefore not be executed." msgstr "" +"Trenutno nema kompanije bez kontnog plana. Čarobnjak se neće pokretati." #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart msgid "Set Your Accounting Options" -msgstr "" +msgstr "Posdesite opcije računovodtsva" #. module: account #: model:ir.model,name:account.model_account_chart msgid "Account chart" -msgstr "" +msgstr "Kontni plan" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "" +msgstr "Referenca plaćanja" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Main Title 1 (bold, underlined)" -msgstr "" +msgstr "Glavni naslov 1 (podebljan, podvučeni)" #. module: account #: report:account.analytic.account.balance:0 @@ -4741,28 +5019,28 @@ msgstr "Naziv konta" #. module: account #: help:account.fiscalyear.close,report_name:0 msgid "Give name of the new entries" -msgstr "" +msgstr "Nazovi nove stavke" #. module: account #: model:ir.model,name:account.model_account_invoice_report msgid "Invoices Statistics" -msgstr "" +msgstr "Statistika faktura" #. module: account #: field:account.account,exchange_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Kurs" #. module: account #: model:process.transition,note:account.process_transition_paymentorderreconcilation0 msgid "Bank statements are entered in the system." -msgstr "" +msgstr "Izvodi su unoseni u sistem." #. module: account #: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" -msgstr "" +msgstr "Zatvaranje s otpisom." #. module: account #: view:account.account.template:0 @@ -4773,17 +5051,17 @@ msgstr "Predložak računa" #. module: account #: view:account.bank.statement:0 msgid "Closing Balance" -msgstr "" +msgstr "Završni bilans" #. module: account #: field:account.chart.template,visible:0 msgid "Can be Visible?" -msgstr "" +msgstr "Može biti vidljivo?" #. module: account #: model:ir.model,name:account.model_account_journal_select msgid "Account Journal Select" -msgstr "" +msgstr "Izbor dnevnika" #. module: account #: view:account.tax.template:0 @@ -4794,27 +5072,27 @@ msgstr "Knjižna odobrenja" #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "" +msgstr "Stavke dnevnika za zatvaranje" #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "Templates for Taxes" -msgstr "" +msgstr "Predlošci poreza" #. module: account #: sql_constraint:account.period:0 msgid "The name of the period must be unique per company!" -msgstr "" +msgstr "Naziv perioda mora biti jedinstven unutar kompanije" #. module: account #: help:wizard.multi.charts.accounts,currency_id:0 msgid "Currency as per company's country." -msgstr "" +msgstr "Valuta prema državi kompanije." #. module: account #: view:account.tax:0 msgid "Tax Computation" -msgstr "" +msgstr "Izračun poreza" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4829,6 +5107,9 @@ msgid "" "you want to generate accounts of this template only when loading its child " "template." msgstr "" +"Isključite ovo ako ne želite da se ovaj predložak aktivno koristi u " +"čarobnjaku koji generiše kontni plan iz predložaka. Ovo je vrlo korisno kada " +"želite generisati konta ovog predloška samo iz podređenog predloška." #. module: account #: view:account.use.model:0 @@ -4847,6 +5128,8 @@ msgid "" "Error!\n" "You cannot create an account which has parent account of different company." msgstr "" +"Greška!\n" +"Ne možete kreirati konto koji ima nadređeni konto druge komapnije." #. module: account #: code:addons/account/account_invoice.py:658 @@ -4857,11 +5140,15 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" +"Nema dnevnika tipa %s za ovu kompaniju.\n" +"\n" +"Možete kreirati jedan iz menija: \n" +"Konfiguracija\\Dnevnici\\Dnevnici." #. module: account #: report:account.vat.declaration:0 msgid "Based On" -msgstr "" +msgstr "Na osnovu" #. module: account #: code:addons/account/account.py:3204 @@ -4872,17 +5159,17 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger_journal_report msgid "Account Analytic Cost Ledger For Journal Report" -msgstr "" +msgstr "Analitička knjiga troškova za dnevnički izvještaj" #. module: account #: model:ir.actions.act_window,name:account.action_model_form msgid "Recurring Models" -msgstr "" +msgstr "Ponavljajući modeli" #. module: account #: view:account.tax:0 msgid "Children/Sub Taxes" -msgstr "" +msgstr "Podređeni porezi" #. module: account #: xsl:account.transfer:0 @@ -4897,12 +5184,12 @@ msgstr "Tip kontrola" #. module: account #: help:account.journal,default_credit_account_id:0 msgid "It acts as a default account for credit amount" -msgstr "" +msgstr "Zadani konto za potražni iznos" #. module: account #: view:cash.box.out:0 msgid "Describe why you take money from the cash register:" -msgstr "" +msgstr "Opišite kad uzimate novac iz blagajne :" #. module: account #: selection:account.invoice,state:0 @@ -4914,12 +5201,12 @@ msgstr "Otkazano" #. module: account #: help:account.config.settings,group_proforma_invoices:0 msgid "Allows you to put invoices in pro-forma state." -msgstr "" +msgstr "Dozvoljava izradu ProForma faktura" #. module: account #: view:account.journal:0 msgid "Unit Of Currency Definition" -msgstr "" +msgstr "Definicija jedinice valute" #. module: account #: help:account.partner.ledger,amount_currency:0 @@ -4928,24 +5215,26 @@ msgid "" "It adds the currency column on report if the currency differs from the " "company currency." msgstr "" +"Dodaje kolonu valute na izvještaj ukoliko se valuta razlikuje od glavne " +"valute kompanije." #. module: account #: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" -msgstr "" +msgstr "Porezi nabave %.2f%%" #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate #: model:ir.ui.menu,name:account.menu_generate_subscription msgid "Generate Entries" -msgstr "" +msgstr "Generiši stavke" #. module: account #: help:account.vat.declaration,chart_tax_id:0 msgid "Select Charts of Taxes" -msgstr "" +msgstr "Odabir stabla poreza" #. module: account #: view:account.fiscal.position:0 @@ -4957,27 +5246,27 @@ msgstr "Mapiranje konta" #. module: account #: view:account.bank.statement:0 msgid "Confirmed" -msgstr "" +msgstr "Potvrđen" #. module: account #: report:account.invoice:0 msgid "Cancelled Invoice" -msgstr "" +msgstr "Otkazana faktura" #. module: account #: view:account.invoice:0 msgid "My Invoices" -msgstr "" +msgstr "Moje fakture" #. module: account #: selection:account.bank.statement,state:0 msgid "New" -msgstr "" +msgstr "Novi" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Sale Tax" -msgstr "" +msgstr "Porez prodaje" #. module: account #: field:account.tax,ref_tax_code_id:0 @@ -4988,7 +5277,7 @@ msgstr "Šifra poreza povrata" #. module: account #: view:account.invoice:0 msgid "Invoice " -msgstr "" +msgstr "Faktura " #. module: account #: field:account.chart.template,property_account_income:0 @@ -5002,12 +5291,15 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" +"Kada se kreira razdoblje dnevnika. Status je 'U pripremi'. Ako je izvještaj " +"ispisan postaje 'Ispisan' status. Kada su sve transakcije završene, prelazi " +"u 'Završen' status." #. module: account #: code:addons/account/account.py:3205 #, python-format msgid "MISC" -msgstr "" +msgstr "RAZNO" #. module: account #: field:account.fiscalyear.close,fy2_id:0 @@ -5030,13 +5322,13 @@ msgstr "Fakture" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 msgid "Check this box if this company is a legal entity." -msgstr "" +msgstr "Označite ovdje ako je ova kompanija zasebna pravna osoba" #. module: account #: model:account.account.type,name:account.conf_account_type_chk #: selection:account.bank.accounts.wizard,account_type:0 msgid "Check" -msgstr "" +msgstr "Ček" #. module: account #: view:account.aged.trial.balance:0 @@ -5076,17 +5368,17 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "ili" #. module: account #: view:account.invoice.report:0 msgid "Invoiced" -msgstr "" +msgstr "Fakturisano" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "" +msgstr "Knjiženi zapisi dnevnika" #. module: account #: view:account.use.model:0 @@ -5100,11 +5392,14 @@ msgid "" "account if this is a Customer Invoice or Supplier Refund, otherwise a " "Partner bank account number." msgstr "" +"Broj bankovnog računa na koji faktura treba biti uplaćena. Broj računa " +"kompanije ukoliko je ovo faktura kupca ili povrat od dobavljača, u suprotnom " +"broj računa partnera ." #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 msgid "Partners Reconciled Today" -msgstr "" +msgstr "Danas zatvoreni partneri" #. module: account #: help:account.invoice.tax,tax_code_id:0 @@ -5114,7 +5409,7 @@ msgstr "Poreska osnovica za poreznu deklaraciju." #. module: account #: view:account.addtmpl.wizard:0 msgid "Add" -msgstr "" +msgstr "Dodaj" #. module: account #: selection:account.invoice,state:0 @@ -5136,7 +5431,7 @@ msgstr "Bankovni izvod korišten za bankovno usklađivanje" #. module: account #: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 msgid "Draft invoices are validated. " -msgstr "" +msgstr "Fakture u pripremi su potvrđene. " #. module: account #: help:account.tax,account_collected_id:0 @@ -5144,22 +5439,24 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "invoices. Leave empty to use the expense account." msgstr "" +"Postavite zadani konto za stavke poreza na fakturama. Ostavite prazno za " +"konto troškova." #. module: account #: code:addons/account/account.py:890 #, python-format msgid "Opening Period" -msgstr "" +msgstr "Početni period" #. module: account #: view:account.move:0 msgid "Journal Entries to Review" -msgstr "" +msgstr "Zapisi dnevnika za pregledati" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round Globally" -msgstr "" +msgstr "Zaokruži globalno" #. module: account #: view:account.bank.statement:0 @@ -5179,6 +5476,8 @@ msgid "" "Please verify the price of the invoice !\n" "The encoded total does not match the computed total." msgstr "" +"Molimo provjerite iznos fakture!\n" +"Unešeni iznos ne odgovara izračunatoj sumi." #. module: account #: field:account.account,active:0 @@ -5194,7 +5493,7 @@ msgstr "Aktivan" #: view:account.bank.statement:0 #: field:account.journal,cash_control:0 msgid "Cash Control" -msgstr "" +msgstr "Kontrola gotovine" #. module: account #: field:account.analytic.balance,date2:0 @@ -5208,12 +5507,12 @@ msgstr "Kraj razdoblja" #. module: account #: model:process.node,note:account.process_node_supplierpaymentorder0 msgid "Payment of invoices" -msgstr "" +msgstr "Plaćanje faktura" #. module: account #: sql_constraint:account.invoice:0 msgid "Invoice Number must be unique per Company!" -msgstr "" +msgstr "Broj fakture se ne smije ponavljati za jednu organizaciju." #. module: account #: model:ir.actions.act_window,name:account.action_account_receivable_graph @@ -5224,12 +5523,12 @@ msgstr "Saldo po vrsti konta" #: code:addons/account/account_cash_statement.py:301 #, python-format msgid "There is no %s Account on the journal %s." -msgstr "" +msgstr "Nema %s konta na dnevniku %s." #. module: account #: model:res.groups,name:account.group_account_user msgid "Accountant" -msgstr "" +msgstr "Računovođa" #. module: account #: model:ir.actions.act_window,help:account.action_account_treasury_report_all @@ -5237,16 +5536,18 @@ msgid "" "From this view, have an analysis of your treasury. It sums the balance of " "every accounting entries made on liquidity accounts per period." msgstr "" +"Iz ovog pogleda imate analizu vaših financija. Zbraja saldo svakog unosa na " +"kontima likvidnosti po periodu." #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "" +msgstr "Menadžer financija" #. module: account #: field:account.journal,group_invoice_lines:0 msgid "Group Invoice Lines" -msgstr "" +msgstr "Grupiši stavke fakture" #. module: account #: view:account.automatic.reconcile:0 @@ -5262,12 +5563,12 @@ msgstr "Kretanja" #: field:account.bank.statement,details_ids:0 #: view:account.journal:0 msgid "CashBox Lines" -msgstr "" +msgstr "Stavke blagajne" #. module: account #: model:ir.model,name:account.model_account_vat_declaration msgid "Account Vat Declaration" -msgstr "" +msgstr "Poreska prijava" #. module: account #: help:account.config.settings,module_account_accountant:0 @@ -5275,16 +5576,18 @@ msgid "" "If you do not check this box, you will be able to do invoicing & payments, " "but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"Ukoliko ne označite ovo polje, možete izrađivati račune i vršiti plaćanja, " +"ali bez računovodstva (dnevnici, kontni plan, ...)" #. module: account #: view:account.period:0 msgid "To Close" -msgstr "" +msgstr "Za zatvoriti" #. module: account #: field:account.treasury.report,date:0 msgid "Beginning of Period Date" -msgstr "" +msgstr "Datum početka perioda" #. module: account #: model:ir.ui.menu,name:account.account_template_folder @@ -5352,12 +5655,14 @@ msgstr "Cilj prijenosa" msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" msgstr "" +"Kretanje ne može biti brisano ako je povezano sa fakturom. (Faktura: %s -" +"Kretanje br:%s)" #. module: account #: view:account.bank.statement:0 #: help:account.cashbox.line,number_opening:0 msgid "Opening Unit Numbers" -msgstr "" +msgstr "Brojevi otvaranja" #. module: account #: field:account.subscription,period_type:0 @@ -5396,13 +5701,16 @@ msgid "" "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" msgstr "" +"Ovaj izbor Vam pomaže odlučiti da li želite korisniku predložiti da unosi " +"stope poreza kod nabave i prodaje ili da odabere iz popisa poreza. Ovo drugo " +"podrazumijeva da je set poreza na ovom predlošku potpun." #. module: account #: view:account.financial.report:0 #: field:account.financial.report,children_ids:0 #: model:ir.model,name:account.model_account_financial_report msgid "Account Report" -msgstr "" +msgstr "Izvještaj konta" #. module: account #: field:account.entries.report,year:0 @@ -5415,12 +5723,12 @@ msgstr "" #: view:report.account_type.sales:0 #: field:report.account_type.sales,name:0 msgid "Year" -msgstr "" +msgstr "Godina" #. module: account #: help:account.invoice,sent:0 msgid "It indicates that the invoice has been sent." -msgstr "" +msgstr "Označava da je faktura poslana" #. module: account #: field:account.tax.template,description:0 @@ -5435,11 +5743,14 @@ msgid "" "Put a sequence in the journal definition for automatic numbering or create a " "sequence manually for this piece." msgstr "" +"Nije moguće kreirati automatsku sekvencu za ovaj dio.\n" +"Stavite sekvencu u definiciju dnevnika za automatsku dodjelu broja ili " +"kreirate sekvencu ručno za ovaj dio." #. module: account #: view:account.invoice:0 msgid "Pro Forma Invoice " -msgstr "" +msgstr "ProForma faktura " #. module: account #: selection:account.subscription,period_type:0 @@ -5450,7 +5761,7 @@ msgstr "Mjesec" #: view:account.move.line:0 #: field:account.partner.reconcile.process,next_partner_id:0 msgid "Next Partner to Reconcile" -msgstr "" +msgstr "Sljedeći partner za zatvaranje" #. module: account #: field:account.invoice.tax,account_id:0 @@ -5463,24 +5774,24 @@ msgstr "Porezno konto" #: model:ir.actions.act_window,name:account.action_account_report_bs #: model:ir.ui.menu,name:account.menu_account_report_bs msgid "Balance Sheet" -msgstr "" +msgstr "Bilans stanja" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "" +msgstr "Dobit i gubitak (konto prihoda)" #. module: account #: field:account.journal,allow_date:0 msgid "Check Date in Period" -msgstr "" +msgstr "Provjerite datum u periodu" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports msgid "Accounting Reports" -msgstr "" +msgstr "Računovodstveni izvještaji" #. module: account #: field:account.move,line_id:0 @@ -5492,7 +5803,7 @@ msgstr "Unosi" #. module: account #: view:account.entries.report:0 msgid "This Period" -msgstr "" +msgstr "Ovaj period" #. module: account #: view:account.tax.template:0 @@ -5505,6 +5816,7 @@ msgstr "Kod za izračunavanje (ako je tip=Python kod)" msgid "" "Cannot find a chart of accounts for this company, you should create one." msgstr "" +"Nije moguće pronaći kontni plan za ovu kompaniju, trebali bi napraviti jedan." #. module: account #: selection:account.analytic.journal,type:0 @@ -5521,7 +5833,7 @@ msgstr "Prodaja" #. module: account #: model:ir.model,name:account.model_account_automatic_reconcile msgid "Automatic Reconcile" -msgstr "" +msgstr "Automatsko zatvaranje" #. module: account #: view:account.analytic.line:0 @@ -5546,7 +5858,7 @@ msgstr "Iznos" #: code:addons/account/wizard/account_fiscalyear_close.py:41 #, python-format msgid "End of Fiscal Year Entry" -msgstr "" +msgstr "Zapisi zatvaranja fiskalne godine" #. module: account #: model:process.transition,name:account.process_transition_customerinvoice0 @@ -5556,7 +5868,7 @@ msgstr "" #: model:process.transition,name:account.process_transition_suppliervalidentries0 #: model:process.transition,name:account.process_transition_validentries0 msgid "Validation" -msgstr "" +msgstr "Odobrenje" #. module: account #: help:account.bank.statement,message_summary:0 @@ -5565,6 +5877,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Sadrži sažetak konverzacije (broj poruka,..). Ovaj sažetak je u html formatu " +"da bi mogao biti ubačen u kanban pogled." #. module: account #: field:account.tax,child_depend:0 @@ -5596,11 +5910,14 @@ msgid "" "payment term!\n" "Please define partner on it!" msgstr "" +"Datum dospijeća stavke unosa generiše se od strane modela linije '%s', te se " +"temelji se na roku plaćanja partnera! \n" +"Molimo definišite partnera!" #. module: account #: field:account.tax.code,sign:0 msgid "Coefficent for parent" -msgstr "" +msgstr "Koeficijent za nadređenog" #. module: account #: report:account.partner.balance:0 @@ -5610,12 +5927,12 @@ msgstr "Naziv (Konta/Partnera)" #. module: account #: field:account.partner.reconcile.process,progress:0 msgid "Progress" -msgstr "" +msgstr "Napredak" #. module: account #: field:wizard.multi.charts.accounts,bank_accounts_id:0 msgid "Cash and Banks" -msgstr "" +msgstr "Banka i blagajna" #. module: account #: model:ir.model,name:account.model_account_installer @@ -5625,13 +5942,13 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Recompute taxes and total" -msgstr "" +msgstr "Ponovo izračunaj poreze i ukupni iznos" #. module: account #: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." -msgstr "" +msgstr "Ne možete mijenjati/brisati dnevnik sa unosima za ovaj period." #. module: account #: field:account.tax.template,include_base_amount:0 @@ -5641,7 +5958,7 @@ msgstr "Uključi u osnovicu iznosa" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "Broj fakture dobavljača" #. module: account #: help:account.payment.term.line,days:0 @@ -5655,13 +5972,14 @@ msgstr "" #. module: account #: view:account.payment.term.line:0 msgid "Amount Computation" -msgstr "" +msgstr "Izračun iznosa" #. module: account #: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" +"Ne možete dodavati/mijenjati unose u zatvorenom periodu %s dnevnika %s." #. module: account #: view:account.journal:0 @@ -5686,12 +6004,12 @@ msgstr "Početak razdoblja" #. module: account #: model:account.account.type,name:account.account_type_asset_view1 msgid "Asset View" -msgstr "" +msgstr "Pogled aktive" #. module: account #: model:ir.model,name:account.model_account_common_account_report msgid "Account Common Account Report" -msgstr "" +msgstr "Izvještaj za uobičajena konta" #. module: account #: view:account.analytic.account:0 @@ -5719,12 +6037,15 @@ msgid "" "that you should have your last line with the type 'Balance' to ensure that " "the whole amount will be treated." msgstr "" +"Odaberite vrstu ovjere povezanu sa ovim načinom plaćanja. Imajte na umu da " +"vaša zadnja stavka mora biti tip 'saldo' kako bi osigurali da će cijeli " +"iznos biti zahvaćen." #. module: account #: field:account.partner.ledger,initial_balance:0 #: field:account.report.general.ledger,initial_balance:0 msgid "Include Initial Balances" -msgstr "" +msgstr "Uključi početna stanja" #. module: account #: view:account.invoice.tax:0 @@ -5759,18 +6080,18 @@ msgstr "Dnevnik knjiženja završetka godine" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "Povrat u pripremi " #. module: account #: view:cash.box.in:0 msgid "Fill in this form if you put money in the cash register:" -msgstr "" +msgstr "Ispunite ovaj obrazac za polaganje novca u blagajnu:" #. module: account #: view:account.payment.term.line:0 #: field:account.payment.term.line,value_amount:0 msgid "Amount To Pay" -msgstr "" +msgstr "Iznos za uplatu" #. module: account #: help:account.partner.reconcile.process,to_reconcile:0 @@ -5779,6 +6100,9 @@ msgid "" "something to reconcile or not. This figure already count the current partner " "as reconciled." msgstr "" +"Ovo su preostali partneri za koje biste trebali provjeriti da li je ostalo " +"nešto za zatvaranje ili ne. Ova brojka već uključuje trenutnog partnera kao " +"zatvorenog." #. module: account #: view:account.subscription.line:0 @@ -5788,7 +6112,7 @@ msgstr "Retci pretplate" #. module: account #: field:account.entries.report,quantity:0 msgid "Products Quantity" -msgstr "" +msgstr "Količine proizvoda" #. module: account #: view:account.entries.report:0 @@ -5797,31 +6121,31 @@ msgstr "" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Unposted" -msgstr "" +msgstr "Neknjiženo" #. module: account #: view:account.change.currency:0 #: model:ir.actions.act_window,name:account.action_account_change_currency #: model:ir.model,name:account.model_account_change_currency msgid "Change Currency" -msgstr "" +msgstr "Promjeni valutu" #. module: account #: model:process.node,note:account.process_node_accountingentries0 #: model:process.node,note:account.process_node_supplieraccountingentries0 msgid "Accounting entries." -msgstr "" +msgstr "Računovodstveni unosi." #. module: account #: view:account.invoice:0 msgid "Payment Date" -msgstr "" +msgstr "Datum plaćanja" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,opening_details_ids:0 msgid "Opening Cashbox Lines" -msgstr "" +msgstr "Stavke početnog stanja blagajne" #. module: account #: view:account.analytic.account:0 @@ -5833,7 +6157,7 @@ msgstr "Analitički računi" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "" +msgstr "Računi i povrati kupaca" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -5846,7 +6170,7 @@ msgstr "Valuta iznosa" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round per Line" -msgstr "" +msgstr "Zaokruži po liniji" #. module: account #: report:account.analytic.account.balance:0 @@ -5866,17 +6190,17 @@ msgstr "Količina" #. module: account #: view:account.move.line:0 msgid "Number (Move)" -msgstr "" +msgstr "Broj (kretanja)" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Normal Text" -msgstr "" +msgstr "Običan tekst" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 msgid "Payment entries are the second input of the reconciliation." -msgstr "" +msgstr "Stavke plaćanja su drugi unos zatvaranja." #. module: account #: help:res.partner,property_supplier_payment_term:0 @@ -5884,6 +6208,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Ovaj će se način plaćanja koristiti kao predodređen za nabavne narudžbe i " +"fakture dobavljača." #. module: account #: help:account.automatic.reconcile,power:0 @@ -5891,12 +6217,14 @@ msgid "" "Number of partial amounts that can be combined to find a balance point can " "be chosen as the power of the automatic reconciliation" msgstr "" +"Višekratnik automatskog zatvaranja je broj pojedinačnih iznosa koji će se " +"kombinirati kod traženja odgovarajućeg iznosa" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:56 #, python-format msgid "You must set a period length greater than 0." -msgstr "" +msgstr "Morate postaviti dužinu perioda veću od 0" #. module: account #: view:account.fiscal.position.template:0 @@ -5907,7 +6235,7 @@ msgstr "Predložak fiskalne pozicije" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Povrat u pripremi" #. module: account #: view:account.analytic.chart:0 @@ -5929,12 +6257,12 @@ msgstr "S valutom" #. module: account #: view:account.bank.statement:0 msgid "Open CashBox" -msgstr "" +msgstr "Otvori blagajnu" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Automatic formatting" -msgstr "" +msgstr "Automatsko oblikovanje" #. module: account #: view:account.move.line.reconcile:0 @@ -5944,7 +6272,7 @@ msgstr "Uskladi s otpisom" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on an account of type view." -msgstr "" +msgstr "Ne možete kreirati stavke dnevnika na kontu koji je tipa pogled." #. module: account #: selection:account.payment.term.line,value:0 @@ -5957,23 +6285,24 @@ msgstr "Fiksni iznos" #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" +"Nije oguće mijenjanje poreza, morate obrisati i ponovo unesti stavke." #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile msgid "Account Automatic Reconcile" -msgstr "" +msgstr "Automatsko zatvaranje" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "" +msgstr "Stavka dnevnika" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close #: model:ir.ui.menu,name:account.menu_wizard_fy_close msgid "Generate Opening Entries" -msgstr "" +msgstr "Kreiraj početno stanje" #. module: account #: help:account.tax,type:0 @@ -5983,7 +6312,7 @@ msgstr "Način izračuna iznosa poreza" #. module: account #: view:account.payment.term.line:0 msgid "Due Date Computation" -msgstr "" +msgstr "Izračun datuma dospjeća" #. module: account #: field:report.invoice.created,create_date:0 @@ -5996,7 +6325,7 @@ msgstr "Datum unosa" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_form #: model:ir.ui.menu,name:account.account_def_analytic_journal msgid "Analytic Journals" -msgstr "" +msgstr "Analitički dnevnici" #. module: account #: field:account.account,child_id:0 @@ -6007,7 +6336,7 @@ msgstr "Podkonta" #: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" -msgstr "" +msgstr "Naziv knjiženja (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 @@ -6019,7 +6348,7 @@ msgstr "Otpis" #. module: account #: view:account.entries.report:0 msgid "entries" -msgstr "" +msgstr "zapisi" #. module: account #: field:res.partner,debit:0 @@ -6049,7 +6378,7 @@ msgstr "Dobavljač" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "March" -msgstr "" +msgstr "Mart" #. module: account #: report:account.analytic.account.journal:0 @@ -6060,7 +6389,7 @@ msgstr "Broj računa" #: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" -msgstr "" +msgstr "Slobodna vezna oznaka" #. module: account #: selection:account.aged.trial.balance,result_selection:0 @@ -6082,13 +6411,13 @@ msgstr "Fiskalna pozicija" #. module: account #: view:account.config.settings:0 msgid "Select Company" -msgstr "" +msgstr "Odaberite kompaniju" #. module: account #: model:ir.actions.act_window,name:account.action_account_state_open #: model:ir.model,name:account.model_account_state_open msgid "Account State Open" -msgstr "" +msgstr "Stanje konta otvoren" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -6108,6 +6437,9 @@ msgid "" "document shows your debit and credit taking in consideration some criteria " "you can choose by using the search tool." msgstr "" +"Iz ovog pogleda imate analizu vaših različitih financijskih konta. Dokument " +"pokazuje vaše dugove i potražne stavke uzimajući u obzir neke kriterijume " +"koristeći alat pretrage." #. module: account #: help:account.partner.reconcile.process,progress:0 @@ -6115,6 +6447,8 @@ msgid "" "Shows you the progress made today on the reconciliation process. Given by \n" "Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)" msgstr "" +"Prikazuje Vaš današnji napredak u postupku zatvaranja. Dati po\n" +"partneri zatvoreni danas\\ (preostali partneri + partneri zatvoreni danas)" #. module: account #: field:account.invoice,period_id:0 @@ -6141,17 +6475,27 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikni za dodavanje konta.\n" +"

\n" +" Konto je dio glavne knjige i dozvoljava vašoj kompaniji\n" +" evidenciju svih vrsta dugovnih i potražnih transakcija.\n" +" Kompanije podnose svoje godišnje izvještaje po kontima u\n" +" dva glavna dijela: bilans stanja i račun dobiti i gubitka.\n" +" Godišnji izvještaj je zakonska obveza.\n" +"

\n" +" " #. module: account #: view:account.invoice.report:0 #: field:account.invoice.report,nbr:0 msgid "# of Lines" -msgstr "" +msgstr "# Linija" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "" +msgstr "(ažuriraj)" #. module: account #: field:account.aged.trial.balance,filter:0 @@ -6170,13 +6514,13 @@ msgstr "" #: field:accounting.report,filter:0 #: field:accounting.report,filter_cmp:0 msgid "Filter by" -msgstr "" +msgstr "Filtriraj po" #. module: account #: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" -msgstr "" +msgstr "Imate pogrešan izraz \"%(...)s\" u vašem modelu !" #. module: account #: view:account.tax.template:0 @@ -6186,12 +6530,12 @@ msgstr "Kod za izračun cijena sa uključenim porezima" #. module: account #: help:account.bank.statement,balance_end:0 msgid "Balance as calculated based on Starting Balance and transaction lines" -msgstr "" +msgstr "Saldo se računa na bazi početnog stanja i stavki transakcija." #. module: account #: field:account.journal,loss_account_id:0 msgid "Loss Account" -msgstr "" +msgstr "Konto gubitka" #. module: account #: field:account.tax,account_collected_id:0 @@ -6203,7 +6547,7 @@ msgstr "Porezni račun fakture" #: model:ir.actions.act_window,name:account.action_account_general_journal #: model:ir.model,name:account.model_account_general_journal msgid "Account General Journal" -msgstr "" +msgstr "Glavna knjiga" #. module: account #: help:account.move,state:0 @@ -6214,6 +6558,11 @@ msgid "" "created by the system on document validation (invoices, bank statements...) " "and will be created in 'Posted' status." msgstr "" +"Ručno kreirani dnevnički zapisi su obično u statusu 'neknjižen', ali možete " +"postaviti opciju da preskače taj status na povezanom dnevniku. U tom " +"slučaju, ponašati će se kao dnevnički zapisi koje sistem kreira automatski " +"na potvrdi dokumenata (fakture, izvodi ...) i biti će kreirane u statusu " +"'knjiženo'." #. module: account #: field:account.payment.term.line,days:0 @@ -6227,16 +6576,18 @@ msgid "" "You cannot validate this journal entry because account \"%s\" does not " "belong to chart of accounts \"%s\"." msgstr "" +"Ne možete knjižiti ovaj dnevnički zapis jer konto \"%s\" ne pripada kontnom " +"planu \"%s\"." #. module: account #: view:account.financial.report:0 msgid "Report" -msgstr "" +msgstr "Izvještaj" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template msgid "Template Tax Fiscal Position" -msgstr "" +msgstr "Predložak poreza" #. module: account #: help:account.tax,name:0 @@ -6265,7 +6616,7 @@ msgstr "Povrati kupca" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "" +msgstr "Inozemni saldo" #. module: account #: field:account.journal.period,name:0 @@ -6275,22 +6626,22 @@ msgstr "Knjiženja - naziv perioda" #. module: account #: field:account.invoice.tax,factor_base:0 msgid "Multipication factor for Base code" -msgstr "" +msgstr "Koeficijent za poreznu grupu osnovice" #. module: account #: help:account.journal,company_id:0 msgid "Company related to this journal" -msgstr "" +msgstr "Kompanija za koju se vodi ovaj dnevnik" #. module: account #: help:account.config.settings,group_multi_currency:0 msgid "Allows you multi currency environment" -msgstr "" +msgstr "Dozvoljava korištenje više valuta" #. module: account #: view:account.subscription:0 msgid "Running Subscription" -msgstr "" +msgstr "Pretplata u toku" #. module: account #: report:account.invoice:0 @@ -6302,7 +6653,7 @@ msgstr "Napomena za fiskalnu poziciju" #: model:ir.actions.act_window,name:account.action_analytic_entries_report #: model:ir.ui.menu,name:account.menu_action_analytic_entries_report msgid "Analytic Entries Analysis" -msgstr "" +msgstr "Analiza analitičkih stavki" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 @@ -6315,6 +6666,8 @@ msgid "" "This journal will be created automatically for this bank account when you " "save the record" msgstr "" +"Ovaj dnevnik će biti kreiran automatski za ovaj bankovni račun kada snimite " +"zapis." #. module: account #: view:account.analytic.line:0 @@ -6330,7 +6683,7 @@ msgstr "Poruka o dospjelim plaćanjima." #. module: account #: field:account.entries.report,date_created:0 msgid "Date Created" -msgstr "" +msgstr "Datum Kreiranja" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form @@ -6343,6 +6696,7 @@ msgid "" "As soon as the reconciliation is done, the invoice's state turns to “done” " "(i.e. paid) in the system." msgstr "" +"Čim je obavljeno zatvaranje, stanje fakture prelazi u \"Gotovo\" (plaćen)." #. module: account #: view:account.chart.template:0 @@ -6359,12 +6713,12 @@ msgstr "" #: view:account.analytic.line:0 #: model:ir.model,name:account.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Analitička stavka" #. module: account #: model:ir.ui.menu,name:account.menu_action_model_form msgid "Models" -msgstr "" +msgstr "Modeli" #. module: account #: code:addons/account/account_invoice.py:1124 @@ -6373,6 +6727,8 @@ msgid "" "You cannot cancel an invoice which is partially paid. You need to " "unreconcile related payment entries first." msgstr "" +"Ne možete otkazati fakturu koja je djelomićno plaćena. Morate prvo otvoriti " +"stavke zatvaranja." #. module: account #: field:product.template,taxes_id:0 @@ -6387,12 +6743,12 @@ msgstr "Ovo je model za ponavljajuće računovodstvene unose" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 msgid "Sales Tax(%)" -msgstr "" +msgstr "Porez prodaje(%)" #. module: account #: view:account.tax.code:0 msgid "Reporting Configuration" -msgstr "" +msgstr "Postavke izvještaja" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree4 @@ -6407,6 +6763,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za unos povrata dobavljaču.\n" +"

\n" +" Umjesto ručnog kreiranja povrata dobavljaču, možete " +"generisati\n" +" povrate i zatvarati ih direktno iz povezane fakture " +"dobavljača.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -6429,36 +6794,39 @@ msgid "" "choice assumes that the set of tax defined for the chosen template is " "complete" msgstr "" +"Odaberite da li želite predložiti korisniku da unosi prodajni i nabavni " +"porez ili koristi uobičajena m2o polja. Zadnji izbor pretpostavlja da je set " +"poreza definisan u odabranom predlošku potpun." #. module: account #: report:account.vat.declaration:0 msgid "Tax Statement" -msgstr "" +msgstr "Prijava poreza" #. module: account #: model:ir.model,name:account.model_res_company msgid "Companies" -msgstr "" +msgstr "Kompanije" #. module: account #: view:account.invoice.report:0 msgid "Open and Paid Invoices" -msgstr "" +msgstr "Otvorene i plaćene fakture" #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children flat" -msgstr "" +msgstr "Prikaži podređene bez grupisanja" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "" +msgstr "Banka i Gotovina" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 msgid "Select a fiscal year to close" -msgstr "" +msgstr "Odaberite fiskalnu godinu za zatvaranje" #. module: account #: help:account.chart.template,tax_template_ids:0 @@ -6485,7 +6853,7 @@ msgstr "Fiskalna godina" #. module: account #: view:account.move.reconcile:0 msgid "Partial Reconcile Entries" -msgstr "" +msgstr "Djelomično zatvorene stavke" #. module: account #: view:account.aged.trial.balance:0 @@ -6537,13 +6905,14 @@ msgstr "Potraživanja" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on closed account." -msgstr "" +msgstr "Ne možete kreirati stavke dnevnika na zatvorenom kontu." #. module: account #: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" +"Kompanija iz stavke dnevnika zapisa i kompanija iz fakture se ne poklapaju." #. module: account #: view:account.invoice:0 @@ -6558,13 +6927,13 @@ msgstr "Zadano konto potraživanja" #. module: account #: help:account.analytic.line,currency_id:0 msgid "The related account currency if not equal to the company one." -msgstr "" +msgstr "Povezani konto valute ako nije jednak onom od kompanije." #. module: account #: code:addons/account/installer.py:69 #, python-format msgid "Custom" -msgstr "" +msgstr "Prilagođeno" #. module: account #: view:account.analytic.account:0 @@ -6574,7 +6943,7 @@ msgstr "" #. module: account #: field:account.journal,cashbox_line_ids:0 msgid "CashBox" -msgstr "" +msgstr "Blagajna" #. module: account #: model:account.account.type,name:account.account_type_cash_equity @@ -6585,13 +6954,13 @@ msgstr "Dionica" #. module: account #: field:account.journal,internal_account_id:0 msgid "Internal Transfers Account" -msgstr "" +msgstr "Konto internog prijenosa" #. module: account #: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" -msgstr "" +msgstr "Molimo provjerite da je polje 'dnevnik' postavljeno na izvodu" #. module: account #: selection:account.tax,type:0 @@ -6601,12 +6970,12 @@ msgstr "Postotak" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round globally" -msgstr "" +msgstr "Zaokruži Globalno" #. module: account #: selection:account.report.general.ledger,sortby:0 msgid "Journal & Partner" -msgstr "" +msgstr "Dnevnik i Partner" #. module: account #: field:account.automatic.reconcile,power:0 @@ -6617,7 +6986,7 @@ msgstr "Eksponent" #: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." -msgstr "" +msgstr "Nije moguće generisati nekorištenu šifru dnevnika." #. module: account #: view:project.account.analytic.line:0 @@ -6633,7 +7002,7 @@ msgstr "Broj fakture" #. module: account #: field:account.bank.statement,difference:0 msgid "Difference" -msgstr "" +msgstr "Razlika" #. module: account #: help:account.tax,include_base_amount:0 @@ -6641,11 +7010,12 @@ msgid "" "Indicates if the amount of tax must be included in the base amount for the " "computation of the next taxes" msgstr "" +"Iznos poreza treba uključiti u osnovicu prilikom izračuna sljedećih poreza." #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile msgid "Reconciliation: Go to Next Partner" -msgstr "" +msgstr "Zatvaranje: Idi na sljedećeg partnera" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance @@ -6667,6 +7037,10 @@ msgid "" "due date, make sure that the payment term is not set on the invoice. If you " "keep the payment term and the due date empty, it means direct payment." msgstr "" +"Ako koristiti uslove plaćanja, datum dospijeća će biti automatski izračunat " +"u trenutku nastanka knjiženja. Uslovi plaćanja mogu računati nekoliko datuma " +"dospijeća, npr. 50% odmah i 50% za mjesec dana, ali ako želite prisiliti " +"datum dopsijeća, osigurajte da uslov plaćanja nije postavljen na fakturi." #. module: account #: code:addons/account/account.py:414 @@ -6675,6 +7049,8 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" +"Nije definisan period početnog/završnog stanja. Molimo napravite jedan da bi " +"postavili početni saldo." #. module: account #: help:account.tax.template,sequence:0 @@ -6702,30 +7078,30 @@ msgstr "" #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "User Error!" -msgstr "" +msgstr "Greška Korisnika!" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "Odbaci" #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 #: view:account.journal:0 msgid "Liquidity" -msgstr "" +msgstr "Likvidnost" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form #: model:ir.ui.menu,name:account.account_analytic_journal_entries msgid "Analytic Journal Items" -msgstr "" +msgstr "Stavke analitičkog dnevnika" #. module: account #: field:account.config.settings,has_default_company:0 msgid "Has default company" -msgstr "" +msgstr "Ima zadanu kompaniju" #. module: account #: view:account.fiscalyear.close:0 @@ -6734,11 +7110,13 @@ msgid "" "year. Note that you can run this wizard many times for the same fiscal year: " "it will simply replace the old opening entries with the new ones." msgstr "" +"Ovaj čarobnjak će kreirati dnevničke zapise početnog stanja u novoj godini. " +"Najprije će obrisati postojeća knjiženja početnog stanja i kreirati novo." #. module: account #: model:ir.ui.menu,name:account.menu_finance_bank_and_cash msgid "Bank and Cash" -msgstr "" +msgstr "Banka i Blagajna" #. module: account #: model:ir.actions.act_window,help:account.action_analytic_entries_report @@ -6748,16 +7126,20 @@ msgid "" "the tool search to analyse information about analytic entries generated in " "the system." msgstr "" +"Iz ovog pogleda imate analizu vaših različitih analičkih unosa prateći " +"analitički konto koji ste definisali prema vašim poslovnim potrebama. " +"Koristite alat pretraživanja za analizu informacija o analitičkim unosima " +"generisanim u sistemu." #. module: account #: sql_constraint:account.journal:0 msgid "The name of the journal must be unique per company !" -msgstr "" +msgstr "Naziv dnevnika mora biti jedinstven za jednu organizaciju!" #. module: account #: field:account.account.template,nocreate:0 msgid "Optional create" -msgstr "" +msgstr "Opcionalno kreiranje" #. module: account #: code:addons/account/account.py:686 @@ -6766,6 +7148,8 @@ msgid "" "You cannot change the owner company of an account that already contains " "journal items." msgstr "" +"Ne možete mijenjati kompaniju vlasnika na kontu koji već sadrži dnevničke " +"zapise." #. module: account #: report:account.invoice:0 @@ -6808,7 +7192,7 @@ msgstr "Centralizacija" #: view:account.tax.code.template:0 #: view:analytic.entries.report:0 msgid "Group By..." -msgstr "" +msgstr "Grupiši po..." #. module: account #: code:addons/account/account.py:1024 @@ -6817,6 +7201,8 @@ msgid "" "There is no period defined for this date: %s.\n" "Please create one." msgstr "" +"Za ovaj datum nije definisano razdoblje: %s.\n" +"Molim Vas da ga kreirate." #. module: account #: field:account.analytic.line,product_uom_id:0 @@ -6837,7 +7223,7 @@ msgstr "" #. module: account #: field:account.installer,has_default_company:0 msgid "Has Default Company" -msgstr "" +msgstr "Ima predefinisanu kompaniju" #. module: account #: model:ir.model,name:account.model_account_sequence_fiscalyear @@ -6859,7 +7245,7 @@ msgstr "Analitička knjiženja" #. module: account #: view:account.entries.report:0 msgid "Reconciled" -msgstr "" +msgstr "Zatvoreno" #. module: account #: constraint:account.payment.term.line:0 @@ -6867,6 +7253,7 @@ msgid "" "Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " "2%." msgstr "" +"Postoci za stavke uslova plaćanja moraju biti između 0 i 1, npr. 0.02 za 2%." #. module: account #: report:account.invoice:0 @@ -6887,12 +7274,12 @@ msgstr "Konto za kategoriju rashoda" #. module: account #: sql_constraint:account.tax:0 msgid "Tax Name must be unique per company!" -msgstr "" +msgstr "Naziv poreza mora biti jedinstven unutar kompanije!" #. module: account #: view:account.bank.statement:0 msgid "Cash Transactions" -msgstr "" +msgstr "Transakcije blagajne" #. module: account #: view:account.unreconcile:0 @@ -6900,6 +7287,8 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disabled" msgstr "" +"Ako razvežete transakcije, morate također verifikovati sve akcije povezane " +"sa tim transakcijama jer one neće biti onemogućene." #. module: account #: view:account.account.template:0 @@ -6914,19 +7303,19 @@ msgstr "Bilješke" #. module: account #: model:ir.model,name:account.model_analytic_entries_report msgid "Analytic Entries Statistics" -msgstr "" +msgstr "Statistike analitike" #. module: account #: code:addons/account/account_analytic_line.py:142 #: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " -msgstr "" +msgstr "Zapisi: " #. module: account #: help:res.partner.bank,currency_id:0 msgid "Currency of the related account journal." -msgstr "" +msgstr "Valuta povezanog računovodstvenog dnevnika" #. module: account #: constraint:account.move.line:0 @@ -6934,6 +7323,7 @@ msgid "" "You cannot provide a secondary currency if it is the same than the company " "one." msgstr "" +"Ne možete odrediti sekundarnu valutu ako je ista kao i valuta kompanije." #. module: account #: selection:account.tax.template,applicable_type:0 @@ -6945,12 +7335,12 @@ msgstr "Tačno" #: code:addons/account/account.py:190 #, python-format msgid "Balance Sheet (Asset account)" -msgstr "" +msgstr "Bilans stanja (konto aktive)" #. module: account #: model:process.node,note:account.process_node_draftstatement0 msgid "State is draft" -msgstr "" +msgstr "Stanje je 'U pripremi'" #. module: account #: view:account.move.line:0 @@ -6960,7 +7350,7 @@ msgstr "Ukupan dug" #. module: account #: view:account.move.line:0 msgid "Next Partner Entries to reconcile" -msgstr "" +msgstr "Sljedeća stavka za zatvaranje" #. module: account #: report:account.invoice:0 @@ -6990,7 +7380,7 @@ msgstr "Python kod" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current period" -msgstr "" +msgstr "Stavke dnevnika sa razdobljem u trenutnom razdoblju" #. module: account #: help:account.journal,update_posted:0 @@ -6998,6 +7388,8 @@ msgid "" "Check this box if you want to allow the cancellation the entries related to " "this journal or of the invoice related to this journal" msgstr "" +"Označite ako želite dopustiti naknadno otkazivanje proknjiženih (potvrđenih) " +"dnevničkih zapisa ili računa ovog dnevnika." #. module: account #: view:account.fiscalyear.close:0 @@ -7014,35 +7406,35 @@ msgstr "Kreiraj stavku" #: code:addons/account/account.py:189 #, python-format msgid "Profit & Loss (Expense account)" -msgstr "" +msgstr "Dobit i Gubitak (konto troška)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 msgid "Total Transactions" -msgstr "" +msgstr "Ukupno transakcija" #. module: account #: code:addons/account/account.py:636 #, python-format msgid "You cannot remove an account that contains journal items." -msgstr "" +msgstr "Nije moguće pobrisati konto koji ima knjiženja (stavke u dnevniku)." #. module: account #: code:addons/account/account.py:1024 #: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" -msgstr "" +msgstr "Greška !" #. module: account #: field:account.financial.report,style_overwrite:0 msgid "Financial Report Style" -msgstr "" +msgstr "Stil financijskog izvještaja" #. module: account #: selection:account.financial.report,sign:0 msgid "Preserve balance sign" -msgstr "" +msgstr "Zadrži predznak salda" #. module: account #: view:account.vat.declaration:0 @@ -7069,13 +7461,13 @@ msgstr "Ručno" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "Otkaži : kreiraj povrat i zatvori" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "You must set a start date." -msgstr "" +msgstr "Morate postaviti početni datum" #. module: account #: view:account.automatic.reconcile:0 @@ -7086,12 +7478,16 @@ msgid "" "reconcile in a series of accounts. It finds entries for each partner where " "the amounts correspond." msgstr "" +"Račun je plaćen kada su sve njegove stavke dugovanja kupca (ili potraživanja " +"dobavljača) zatvorene protustavkama, najčešće plaćanjima banke, blagajne ili " +"sl. Funkcija automatskog zatvaranja za svakog partnera pronalazi stavke " +"odgovarajućeg iznosa." #. module: account #: view:account.move:0 #: field:account.move,to_check:0 msgid "To Review" -msgstr "" +msgstr "Za provjeru" #. module: account #: help:account.partner.ledger,initial_balance:0 @@ -7101,6 +7497,9 @@ msgid "" "row to display the amount of debit/credit/balance that precedes the filter " "you've set." msgstr "" +"Ako ste odabrali filter po datumu ili periodu, ovo polje će Vam omogućiti da " +"dodate red za prikaz iznosa duguje/potražuje/saldo koje prethodi filteru " +"koji ste postavili." #. module: account #: view:account.bank.statement:0 @@ -7109,18 +7508,18 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "" +msgstr "Dnevnički zapisi" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 #, python-format msgid "No period found on the invoice." -msgstr "" +msgstr "Na računu nije pronađen period." #. module: account #: help:account.partner.ledger,page_split:0 msgid "Display Ledger Report with One partner per page" -msgstr "" +msgstr "Jedan partner po stranici" #. module: account #: report:account.general.ledger:0 @@ -7160,12 +7559,12 @@ msgstr "Sve stavke" #. module: account #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." -msgstr "" +msgstr "Moguće je zatvoriti samo stavke istog partnera." #. module: account #: view:account.journal.select:0 msgid "Journal Select" -msgstr "" +msgstr "Odabir dnevnika" #. module: account #: view:account.bank.statement:0 @@ -7173,7 +7572,7 @@ msgstr "" #: code:addons/account/account.py:434 #, python-format msgid "Opening Balance" -msgstr "" +msgstr "Početni saldo" #. module: account #: model:ir.model,name:account.model_account_move_reconcile @@ -7183,7 +7582,7 @@ msgstr "Usklađivanje konta" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax msgid "Taxes Fiscal Position" -msgstr "" +msgstr "Fiskalna pozicija poreza" #. module: account #: report:account.general.ledger:0 @@ -7198,7 +7597,7 @@ msgstr "Glavna knjiga" #. module: account #: model:process.transition,note:account.process_transition_paymentorderbank0 msgid "The payment order is sent to the bank." -msgstr "" +msgstr "Nalog za plaćanje je poslan u banku." #. module: account #: help:account.move,to_check:0 @@ -7206,19 +7605,21 @@ 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 #: field:account.chart.template,complete_tax_set:0 #: field:wizard.multi.charts.accounts,complete_tax_set:0 msgid "Complete Set of Taxes" -msgstr "" +msgstr "Kompletan popis poreza" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:61 #, python-format msgid "" "Selected Entry Lines does not have any account move enties in draft state." -msgstr "" +msgstr "Odabrane stavke nemaju knjiženja koja su u statusu u pripremi." #. module: account #: view:account.chart.template:0 @@ -7228,7 +7629,7 @@ msgstr "Svojstva" #. module: account #: model:ir.model,name:account.model_account_tax_chart msgid "Account tax chart" -msgstr "" +msgstr "Struktura poreza" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -7248,6 +7649,8 @@ msgid "" "Configuration error!\n" "The currency chosen should be shared by the default accounts too." msgstr "" +"Greška konfiguracije!\n" +"Odabranu valutu je potrebno dijeliti i kod predodređenih konta." #. module: account #: code:addons/account/account.py:2304 @@ -7262,21 +7665,28 @@ msgid "" "\n" "e.g. My model on %(date)s" msgstr "" +"Možete navesti godinu, mjesec i dan u nazivu modela pomoću ovih oznaka:\n" +"\n" +"%(year)s: za godinu \n" +"%(month)s: za mjesec \n" +"%(date)s: tenutni datum\n" +"\n" +"npr. Knjiženje troškova plate za %(month)s" #. module: account #: field:account.invoice,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "Paypal Url" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "Upravljanje plaćanjima kupaca" #. module: account #: help:report.invoice.created,origin:0 msgid "Reference of the document that generated this invoice report." -msgstr "" +msgstr "Oznaka dokumenta koji je kreirao ovaj račun." #. module: account #: field:account.tax.code,child_ids:0 @@ -7290,11 +7700,13 @@ msgid "" "Error!\n" "The start date of a fiscal year must precede its end date." msgstr "" +"Greška!\n" +"Početni datum fiskalne godine mora biti prije završnog." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Sales" -msgstr "" +msgstr "Porezi prodaje" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 @@ -7305,12 +7717,12 @@ msgstr "Fakture kupca" #. module: account #: view:account.tax:0 msgid "Misc" -msgstr "" +msgstr "Ostalo" #. module: account #: view:account.analytic.line:0 msgid "Sales" -msgstr "" +msgstr "Prodaje" #. module: account #: selection:account.invoice.report,state:0 @@ -7328,11 +7740,14 @@ msgid "" "Make sure you have configured payment terms properly.\n" "The latest payment term line should be of the \"Balance\" type." msgstr "" +"Ne možete potvrditi unos koji nije u ravnoteži.\n" +"Provjerite da li ste podesili uslove plaćanja kako treba.\n" +"Zadnja linija načina plaćanja mora biti tip \"saldo\"." #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 msgid "A statement with manual entries becomes a draft statement." -msgstr "" +msgstr "Stavka izvoda sa ručnim unosom postaje stavka u pripremi." #. module: account #: view:account.aged.trial.balance:0 @@ -7344,18 +7759,23 @@ msgid "" "you request an interval of 30 days OpenERP generates an analysis of " "creditors for the past month, past two months, and so on. " msgstr "" +"Struktura dospjelih dugovanja/potraživanja partnera je detaljniji izvještaj " +"o dugovanjima/potraživanjima u intervalima. Za zadani period i broj dana " +"intervala analize OpenERP izračunava tabelu dugovanja po intervalu. Ako " +"zadate interval od 30 dana analiza će pokazati dugovanja do 30, 30 do 60, 60 " +"do 90 dana i tako dalje. " #. module: account #: field:account.invoice,origin:0 #: field:account.invoice.line,origin:0 #: field:report.invoice.created,origin:0 msgid "Source Document" -msgstr "" +msgstr "Izvorni dokument" #. module: account #: help:account.config.settings,company_footer:0 msgid "Bank accounts as printed in the footer of each printed document" -msgstr "" +msgstr "Bankovni računi, kako se vide na ispisu u podnožju dokumenta" #. module: account #: constraint:account.account:0 @@ -7364,16 +7784,18 @@ msgid "" "You cannot define children to an account with internal type different of " "\"View\"." msgstr "" +"Greška prilikom konfiguracije!\n" +"Nije moguće dodijeliti podkonta kontu koji nije 'Pogled'." #. module: account #: model:ir.model,name:account.model_accounting_report msgid "Accounting Report" -msgstr "" +msgstr "Računovodstveni izvještaj" #. module: account #: field:account.analytic.line,currency_id:0 msgid "Account Currency" -msgstr "" +msgstr "Valuta" #. module: account #: report:account.invoice:0 @@ -7392,16 +7814,18 @@ msgstr "" #: help:account.tax,amount:0 msgid "For taxes of type percentage, enter % ratio between 0-1." msgstr "" +"Za poreze koji se računaju putem postotka upišite vrijednost između 0 i 1. " +"Npr. 0,25 za 25%." #. module: account #: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy msgid "Financial Reports Hierarchy" -msgstr "" +msgstr "Hijerarhija financijskog izvještaja" #. module: account #: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation msgid "Monthly Turnover" -msgstr "" +msgstr "Mjesečni promet" #. module: account #: view:account.move:0 @@ -7423,7 +7847,7 @@ msgstr "Predložak poreznog računa" #. module: account #: view:account.journal.select:0 msgid "Are you sure you want to open Journal Entries?" -msgstr "" +msgstr "Potvrdite otvaranje stavki." #. module: account #: view:account.state.open:0 @@ -7433,12 +7857,12 @@ msgstr "Jeste sigurni da želite otvoriti ovu fakturu ?" #. module: account #: field:account.chart.template,property_account_expense_opening:0 msgid "Opening Entries Expense Account" -msgstr "" +msgstr "Konto troška početnog stanja" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Referenca kupca" #. module: account #: field:account.account.template,parent_id:0 @@ -7454,7 +7878,7 @@ msgstr "Cijena" #: view:account.bank.statement:0 #: field:account.bank.statement,closing_details_ids:0 msgid "Closing Cashbox Lines" -msgstr "" +msgstr "Zatvaranje stavki blagajne" #. module: account #: view:account.bank.statement:0 @@ -7467,17 +7891,17 @@ msgstr "Izvod" #. module: account #: help:account.journal,default_debit_account_id:0 msgid "It acts as a default account for debit amount" -msgstr "" +msgstr "Uobičajeni konto za dugovni iznos" #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "" +msgstr "Knjiženi zapisi" #. module: account #: help:account.payment.term.line,value_amount:0 msgid "For percent enter a ratio between 0-1." -msgstr "" +msgstr "Za postotak unesite omjer između 0 i 1" #. module: account #: report:account.invoice:0 @@ -7490,12 +7914,12 @@ msgstr "Datum fakturiranja" #. module: account #: view:account.invoice.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "Grupiraj po godini izdavanja računa" #. module: account #: field:account.config.settings,purchase_tax_rate:0 msgid "Purchase tax (%)" -msgstr "" +msgstr "Porez nabavke (%)" #. module: account #: help:res.partner,credit:0 @@ -7505,12 +7929,12 @@ msgstr "Ukupni iznos koji ti ovaj kupac duguje." #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "" +msgstr "Stavke dnevnika koje nisu u ravnoteži" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules msgid "Chart Templates" -msgstr "" +msgstr "Predlošci plana" #. module: account #: field:account.journal.period,icon:0 @@ -7541,7 +7965,7 @@ msgstr "" #. module: account #: field:account.bank.statement,closing_date:0 msgid "Closed On" -msgstr "" +msgstr "Zatvoren" #. module: account #: model:ir.model,name:account.model_account_bank_statement_line @@ -7551,17 +7975,17 @@ msgstr "Redak bankovnog izvoda" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 msgid "Default Purchase Tax" -msgstr "" +msgstr "Uobičajen porez nabavke" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "" +msgstr "Konto prihoda za početno stanje" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "" +msgstr "Odobri ProForma fakture" #. module: account #: view:account.bank.statement:0 @@ -7597,12 +8021,12 @@ msgstr "Kreiraj stavke" #. module: account #: model:ir.model,name:account.model_cash_box_out msgid "cash.box.out" -msgstr "" +msgstr "cash.box.out" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "" +msgstr "Glavna valuta kompanije" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports @@ -7615,12 +8039,12 @@ msgstr "Izvještavanje" #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" -msgstr "" +msgstr "Upozorenje" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open msgid "Contracts/Analytic Accounts" -msgstr "" +msgstr "Ugovori/analitička konta" #. module: account #: view:account.journal:0 @@ -7631,7 +8055,7 @@ msgstr "Nalog za knjiženje računa" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 msgid "Tax calculation rounding method" -msgstr "" +msgstr "Metoda zaokruživanja kod izračuna poreza" #. module: account #: model:process.node,name:account.process_node_paidinvoice0 @@ -7648,6 +8072,11 @@ msgid "" " with the invoice. You will not be able " "to modify the credit note." msgstr "" +"Koristite ovu opciju ako želite stornirati račun.\n" +" Kreirati će se novi storno dokument koji " +"će zatvoriti ovaj \n" +" račun. Stornirani dokument ne možete " +"modificirati." #. module: account #: help:account.partner.reconcile.process,next_partner_id:0 @@ -7656,11 +8085,13 @@ msgid "" "the system to go through the reconciliation process, based on the latest day " "it have been reconciled." msgstr "" +"Pokazuje sljedećeg partnera u procesu zatvaranja IOS-a, a prema zadnjem danu " +"zatvaranja IOS-a." #. module: account #: field:account.move.line.reconcile.writeoff,comment:0 msgid "Comment" -msgstr "" +msgstr "Komentar" #. module: account #: field:account.tax,domain:0 @@ -7671,7 +8102,7 @@ msgstr "Domena" #. module: account #: model:ir.model,name:account.model_account_use_model msgid "Use model" -msgstr "" +msgstr "Koristi model" #. module: account #: code:addons/account/account.py:1490 @@ -7680,6 +8111,8 @@ msgid "" "There is no default credit account defined \n" "on journal \"%s\"." msgstr "" +"Ne postoji predefinirani potražni konto \n" +"za dnevnik \"%s\"." #. module: account #: view:account.invoice.line:0 @@ -7691,7 +8124,7 @@ msgstr "Redak fakture" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "Povrati kupaca i dobavljača" #. module: account #: field:account.financial.report,sign:0 @@ -7718,11 +8151,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog analitičkog konta..\n" +"

\n" +" Standardno je struktura kontnog plana definisana zakonskim\n" +" propisima svake zemlje. Struktura analitičkih konta\n" +" bi trebala odgovarati potrebama vaše kompanije.\n" +"

\n" +" Većina poslovnih promjena u OpenERP-u (fakturisanje,\n" +" troškovi, nabavka, proizvodnja ...) generišu analitičke " +"stavke\n" +" na povezanom kontu.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_view msgid "Root/View" -msgstr "" +msgstr "Izvorni/Pogled" #. module: account #: code:addons/account/account.py:3206 @@ -7741,7 +8187,7 @@ msgstr "PRO-FORMA" #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "" +msgstr "Nije izravnat" #. module: account #: selection:account.move.line,centralisation:0 @@ -7752,7 +8198,7 @@ msgstr "Običan" #: model:ir.actions.act_window,name:account.action_email_templates #: model:ir.ui.menu,name:account.menu_email_templates msgid "Email Templates" -msgstr "" +msgstr "Predlozi email-a" #. module: account #: view:account.move.line:0 @@ -7780,22 +8226,23 @@ msgid "" "This field is used for payable and receivable journal entries. You can put " "the limit date for the payment of this line." msgstr "" +"Koristi se za salda konti kupaca i dobavljača. Upišite datum valute plaćanja." #. module: account #: model:ir.ui.menu,name:account.menu_multi_currency msgid "Multi-Currencies" -msgstr "" +msgstr "Višestruke valute" #. module: account #: field:account.model.line,date_maturity:0 msgid "Maturity Date" -msgstr "" +msgstr "Datum dospijeća" #. module: account #: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" -msgstr "" +msgstr "Dnevnik prodaje" #. module: account #: model:ir.model,name:account.model_account_invoice_tax @@ -7806,13 +8253,13 @@ msgstr "Porez fakture" #: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" -msgstr "" +msgstr "Ne postoji broj dijela !" #. module: account #: view:account.financial.report:0 #: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy msgid "Account Reports Hierarchy" -msgstr "" +msgstr "Hijerarhija računovodstvenih izvještaja" #. module: account #: help:account.account.template,chart_template_id:0 @@ -7823,11 +8270,16 @@ msgid "" "few new accounts (You don't need to define the whole structure that is " "common to both several times)." msgstr "" +"Ova opcionalno polje Vam omogućava da povežete predložak konta na određeni " +"predložak kontnog plana koji se mogu razlikovati od onog kojem njegov " +"nadređeni pripada. To Vam omogućava da definišete predloške koji proširuju " +"druge i upotpunjuju ih sa par novih konta (ne morate definisati cijelu " +"strukturu koja je zajednička za oba nekoliko puta)." #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "" +msgstr "Neknjiženi dnevnički zapisi" #. module: account #: help:account.invoice.refund,date:0 @@ -7835,6 +8287,8 @@ msgid "" "This date will be used as the invoice date for credit note and period will " "be chosen accordingly!" msgstr "" +"Ovaj će se datum koristiti kao datum fakture za odobrenja i razdoblje će " +"biti odabrano skladno tome." #. module: account #: view:product.template:0 @@ -7848,11 +8302,12 @@ msgid "" "You have to set a code for the bank account defined on the selected chart of " "accounts." msgstr "" +"Morate odrediti šifru za bankovni račun definisan na odabranom kontnom planu." #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile msgid "Manual Reconciliation" -msgstr "" +msgstr "Ručno zatvaranje" #. module: account #: report:account.overdue:0 @@ -7870,7 +8325,7 @@ msgstr "Do" #: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" -msgstr "" +msgstr "Podešavanje valuta" #. module: account #: field:account.fiscalyear.close,fy_id:0 @@ -7881,13 +8336,14 @@ msgstr "Fiskalna godina za zatvaranje" #: view:account.invoice.cancel:0 #: model:ir.actions.act_window,name:account.action_account_invoice_cancel msgid "Cancel Selected Invoices" -msgstr "" +msgstr "Otkaži odabrane fakture" #. module: account #: help:account.account.type,report_type:0 msgid "" "This field is used to generate legal reports: profit and loss, balance sheet." msgstr "" +"Ovo se polje koristi za generisanje izvještaja: dobitak i gubitak, bilans" #. module: account #: selection:account.entries.report,month:0 @@ -7896,13 +8352,13 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "May" -msgstr "" +msgstr "Maj" #. module: account #: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" -msgstr "" +msgstr "Globalno su definirani porezi ali se ne nalaze na stavkama faktura!" #. module: account #: model:ir.model,name:account.model_account_chart_template @@ -7915,16 +8371,17 @@ msgid "" "The sequence field is used to order the resources from lower sequences to " "higher ones." msgstr "" +"Polje sekvenca se koristi za redosljed resursa od niže sekvence prema višima." #. module: account #: field:account.move.line,amount_residual_currency:0 msgid "Residual Amount in Currency" -msgstr "" +msgstr "Ostatak iznosa u valuti" #. module: account #: field:account.config.settings,sale_refund_sequence_prefix:0 msgid "Credit note sequence" -msgstr "" +msgstr "Sekvenca odobrenja" #. module: account #: model:ir.actions.act_window,name:account.action_validate_account_move @@ -7933,7 +8390,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "" +msgstr "Knjiži dnevničke zapise" #. module: account #: selection:account.bank.statement.line,type:0 @@ -7948,7 +8405,7 @@ msgstr "Kupac" #. module: account #: field:account.financial.report,name:0 msgid "Report Name" -msgstr "" +msgstr "Naziv izvještaja" #. module: account #: model:account.account.type,name:account.data_account_type_cash @@ -7973,6 +8430,8 @@ msgid "" "Refund base on this type. You can not Modify and Cancel if the invoice is " "already reconciled" msgstr "" +"Povrat baziran na ovom tipu. Ne možete mijenjati i otkazati ako je faktura " +"već zatvorena." #. module: account #: field:account.bank.statement.line,sequence:0 @@ -7990,17 +8449,17 @@ msgstr "Redoslijed" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "Paypal račun" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "" +msgstr "Broj dnevničkih zapisa" #. module: account #: view:account.financial.report:0 msgid "Parent Report" -msgstr "" +msgstr "Nadređeni izvještaj" #. module: account #: constraint:account.account:0 @@ -8009,27 +8468,29 @@ msgid "" "Error!\n" "You cannot create recursive accounts." msgstr "" +"Greška!\n" +"Ne možete kreirati rekurzivna konta." #. module: account #: model:ir.model,name:account.model_cash_box_in msgid "cash.box.in" -msgstr "" +msgstr "cash.box.in" #. module: account #: help:account.invoice,move_id:0 msgid "Link to the automatically generated Journal Items." -msgstr "" +msgstr "Poveznica na automatski kreirane stavke dnevnika" #. module: account #: model:ir.model,name:account.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "Monthly" -msgstr "" +msgstr "Mjesečno" #. module: account #: model:account.account.type,name:account.data_account_type_asset @@ -8039,14 +8500,14 @@ msgstr "Stalno sredstvo" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "" +msgstr "Izračunati saldo" #. module: account #. openerp-web #: code:addons/account/static/src/js/account_move_reconciliation.js:89 #, python-format msgid "You must choose at least one record." -msgstr "" +msgstr "Morate izabrati barem jedan zapis" #. module: account #: field:account.account,parent_id:0 @@ -8058,7 +8519,7 @@ msgstr "Roditelj" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Profit" -msgstr "" +msgstr "Dobit" #. module: account #: help:account.payment.term.line,days2:0 @@ -8079,7 +8540,7 @@ msgstr "Transakcije za usklađivanje" #. module: account #: model:ir.ui.menu,name:account.menu_finance_legal_statement msgid "Legal Reports" -msgstr "" +msgstr "Zakonski izvještaji" #. module: account #: field:account.tax.code,sum_period:0 @@ -8100,12 +8561,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_cashbox_line msgid "CashBox Line" -msgstr "" +msgstr "Stavka blagajne" #. module: account #: field:account.installer,charts:0 msgid "Accounting Package" -msgstr "" +msgstr "Knjigovodstveni paket" #. module: account #: report:account.third_party_ledger:0 @@ -8129,28 +8590,28 @@ msgstr "Fiksno" #: code:addons/account/account.py:1031 #, python-format msgid "Warning !" -msgstr "" +msgstr "Upozorenje !" #. module: account #: help:account.bank.statement,message_unread:0 #: help:account.invoice,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ako je označeno, nove poruke će zahtjevati vašu pažnju." #. module: account #: field:res.company,tax_calculation_rounding_method:0 msgid "Tax Calculation Rounding Method" -msgstr "" +msgstr "Metoda zaokruživanja prilikom izračuna poreza" #. module: account #: field:account.entries.report,move_line_state:0 msgid "State of Move Line" -msgstr "" +msgstr "Stanje stavke" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile msgid "Account move line reconcile" -msgstr "" +msgstr "Zatvaranje stavke dnevničkog zapisa" #. module: account #: view:account.subscription.generate:0 @@ -8161,7 +8622,7 @@ msgstr "Izračun pretplate" #. module: account #: view:account.move.line.unreconcile.select:0 msgid "Open for Unreconciliation" -msgstr "" +msgstr "Otvori za otvaranje" #. module: account #: field:account.bank.statement.line,partner_id:0 @@ -8191,18 +8652,18 @@ msgstr "Partner" #. module: account #: help:account.change.currency,currency_id:0 msgid "Select a currency to apply on the invoice" -msgstr "" +msgstr "Odaberite valutu fakture" #. module: account #: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" -msgstr "" +msgstr "Nema stavaka faktura!" #. module: account #: view:account.financial.report:0 msgid "Report Type" -msgstr "" +msgstr "Tip izvještaja" #. module: account #: help:account.open.closed.fiscalyear,fyear_id:0 @@ -8210,6 +8671,8 @@ msgid "" "Select Fiscal Year which you want to remove entries for its End of year " "entries journal" msgstr "" +"Odaberi fiskalnu godinu za koju želite ukoliniti dnevičke zapise za kraj " +"godine." #. module: account #: field:account.tax.template,type_tax_use:0 @@ -8223,12 +8686,14 @@ msgid "" "The statement balance is incorrect !\n" "The expected balance (%.2f) is different than the computed one. (%.2f)" msgstr "" +"Saldo izvoda je neispravan !\n" +"Očekivani saldo (%.2f) je različit od izračunatog. (%.2f)" #. module: account #: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." -msgstr "" +msgstr "Stavke zapisa ovog konta su neispravne" #. module: account #: field:account.account.type,close_method:0 @@ -8238,13 +8703,14 @@ msgstr "Način odgode" #. module: account #: model:process.node,note:account.process_node_electronicfile0 msgid "Automatic entry" -msgstr "" +msgstr "Automatski zapis" #. module: account #: help:account.account,reconcile:0 msgid "" "Check this box if this account allows reconciliation of journal items." msgstr "" +"Označite ovu stavku ako ovaj konto dozvoljava zatvaranje stavaki dnevnika" #. module: account #: report:account.analytic.account.inverted.balance:0 @@ -8255,7 +8721,7 @@ msgstr "Preokrenut saldo analitike -" #: help:account.move.reconcile,opening_reconciliation:0 msgid "" "Is this reconciliation produced by the opening of a new fiscal year ?." -msgstr "" +msgstr "Da li je ovo zatvaranje proizvod otvaranja nove fiskalne godine ?" #. module: account #: view:account.analytic.line:0 @@ -8272,7 +8738,7 @@ msgstr "Vezani partner" #: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" -msgstr "" +msgstr "Morate prvo odabrati partnera !" #. module: account #: field:account.invoice,comment:0 @@ -8283,18 +8749,18 @@ msgstr "Dodatne informacije" #: field:account.invoice.report,residual:0 #: field:account.invoice.report,user_currency_residual:0 msgid "Total Residual" -msgstr "" +msgstr "Uk. ostatak" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "" +msgstr "Kontrola početnog stanja blagajne" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 #: model:process.node,note:account.process_node_supplierinvoiceinvoice0 msgid "Invoice's state is Open" -msgstr "" +msgstr "Stanje fakture je 'Otvoren'" #. module: account #: view:account.analytic.account:0 @@ -8328,17 +8794,17 @@ msgstr "Knjiga troškova" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "" +msgstr "Nema definisane fiskalne godine za ovu kompaniju" #. module: account #: view:account.invoice:0 msgid "Proforma" -msgstr "" +msgstr "Proforma" #. module: account #: report:account.analytic.account.cost_ledger:0 msgid "J.C. /Move name" -msgstr "" +msgstr "Naziv dnevničkog zapisa" #. module: account #: help:account.tax.template,include_base_amount:0 @@ -8353,28 +8819,29 @@ msgstr "" #: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" -msgstr "" +msgstr "Dnevnik povrata dobavljača" #. module: account #: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Molimo definišite sekvencu na dnevniku." #. module: account #: help:account.tax.template,amount:0 msgid "For Tax Type percent enter % ratio between 0-1." msgstr "" +"Za poreze tipa postotak upišite omjer između 0 i 1. Npr. 0,23 za 23 %." #. module: account #: view:account.analytic.account:0 msgid "Current Accounts" -msgstr "" +msgstr "Trenutna konta" #. module: account #: view:account.invoice.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "Grupiši po datumu računa" #. module: account #: help:account.journal,user_id:0 @@ -8388,6 +8855,9 @@ msgid "" "recalls.\n" " This installs the module account_followup." msgstr "" +"Ovo omogućuje automatizaciju dopisa za neplaćene račune, sa opozivima na " +"više razina.\n" +" Instalira modul account_followup." #. module: account #: field:account.automatic.reconcile,period_id:0 @@ -8420,6 +8890,8 @@ msgid "" "Total amount (in Company currency) for transactions held in secondary " "currency for this account." msgstr "" +"Ukupni iznos (u valuti kompanije) za transakcije izvršene u sekundarnoj " +"valuti za ovaj konto." #. module: account #: report:account.invoice:0 @@ -8430,17 +8902,17 @@ msgstr "Ukupno netto:" #: code:addons/account/wizard/account_report_common.py:158 #, python-format msgid "Select a starting and an ending period." -msgstr "" +msgstr "Odaberite početni i završni period" #. module: account #: field:account.config.settings,sale_sequence_next:0 msgid "Next invoice number" -msgstr "" +msgstr "Sljedeći broj računa" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting msgid "Generic Reporting" -msgstr "" +msgstr "Generički izvještaji" #. module: account #: field:account.move.line.reconcile.writeoff,journal_id:0 @@ -8455,7 +8927,7 @@ msgstr "Konto kategorije dobiti" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "" +msgstr "Prilagođeni saldo" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form @@ -8466,7 +8938,7 @@ msgstr "Predlošci fiskalne pozicije" #. module: account #: view:account.entries.report:0 msgid "Int.Type" -msgstr "" +msgstr "Int.tip" #. module: account #: field:account.move.line,tax_amount:0 @@ -8479,6 +8951,8 @@ msgid "" "This wizard will remove the end of year journal entries of selected fiscal " "year. Note that you can run this wizard many times for the same fiscal year." msgstr "" +"Ovaj čarobnjak pomaže u micanju stavaka zatvaranja odabrane fiskalne godine. " +"Ovaj je čarobnjak moguće koristiti više puta za istu fiskalnu godinu." #. module: account #: report:account.invoice:0 @@ -8507,13 +8981,13 @@ msgstr "Valuta preduzeća" #: field:account.vat.declaration,chart_account_id:0 #: field:accounting.report,chart_account_id:0 msgid "Chart of Account" -msgstr "" +msgstr "Kontni plan" #. module: account #: model:process.node,name:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_reconcilepaid0 msgid "Payment" -msgstr "" +msgstr "Plaćanje" #. module: account #: view:account.automatic.reconcile:0 @@ -8529,7 +9003,7 @@ msgstr "Završni saldo" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "" +msgstr "Centralizirana protustavka" #. module: account #: help:account.move.line,blocked:0 @@ -8537,6 +9011,8 @@ msgid "" "You can check this box to mark this journal item as a litigation with the " "associated partner" msgstr "" +"Možete označiti ovaj okvir kako bi obilježili stavku dnevničkog zapisa kao " +"poveznicu s pripadajućim partnerom." #. module: account #: field:account.move.line,reconcile_partial_id:0 @@ -8547,12 +9023,12 @@ msgstr "Djelomično sravnanje" #. module: account #: model:ir.model,name:account.model_account_analytic_inverted_balance msgid "Account Analytic Inverted Balance" -msgstr "" +msgstr "Obrnuti saldo analitičkog konta" #. module: account #: model:ir.model,name:account.model_account_common_report msgid "Account Common Report" -msgstr "" +msgstr "Računovodstveni izvještaji" #. module: account #: view:account.invoice.refund:0 @@ -8564,11 +9040,18 @@ msgid "" "invoice will be created \n" " so that you can edit it." msgstr "" +"Koristite ovu opciju ako želite stornirati račun i kreirati novi u istom " +"koraku.\n" +" Kreirati će se novi storno dokument koji " +"će zatvoriti ovaj \n" +" račun, te novi račun u statusu 'U " +"pripremi' kojega možete \n" +" urediti." #. module: account #: model:process.transition,name:account.process_transition_filestatement0 msgid "Automatic import of the bank sta" -msgstr "" +msgstr "Automatski uvoz bankovnih izvoda" #. module: account #: code:addons/account/account_invoice.py:381 @@ -8579,12 +9062,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_move_bank_reconcile msgid "Move bank reconcile" -msgstr "" +msgstr "Zatvaranje bankovnog kretanja" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Primijeni" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -8596,7 +9079,7 @@ msgstr "Tipovi konta" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "" +msgstr "${object.company_id.name} Faktura (Ref ${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1210 @@ -8605,11 +9088,13 @@ msgid "" "You cannot use this general account in this journal, check the tab 'Entry " "Controls' on the related journal." msgstr "" +"Ne možete koristiti ovaj opšti konto u ovom dnevniku. Provjerite tab " +"'kontola unosa' na povezanom dnevniku." #. module: account #: field:account.account.type,report_type:0 msgid "P&L / BS Category" -msgstr "" +msgstr "Dobit i Gubitak / Bilans" #. module: account #: view:account.automatic.reconcile:0 @@ -8640,6 +9125,12 @@ msgid "" "You should press this button to re-open it and let it continue its normal " "process after having resolved the eventual exceptions it may have created." msgstr "" +"Ovo se dugme pojavljuje samo kada je stanje fakture 'plaćeno' (pokazujući da " +"je u potpunosti zatvoreno) i opcija automatskog izračuna 'zatvaranja' je " +"ugašena (opisujući da to više nije slučaj). Drugim riječima, račun je " +"razvezan i ne odgovara više stanju 'plaćen'. Trebali bi pritisnuti ovo dugme " +"da bi ga ponovo otvorili i pustiti da nastavi sa normalnim procesom nakon " +"što se razriješe eventualne iznimke koje bi mogle nastati." #. module: account #: model:ir.actions.act_window,help:account.action_account_journal_form @@ -8659,11 +9150,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje dnevnika.\n" +"

\n" +" Dnevnik je nosioc poslovnih promjena nastalih u \n" +" svakodnevnom računovodstvenom poslovanju.\n" +"

\n" +" U praksi se obično koristi po jedan dnevnik za svaki način " +"plaćanja\n" +" (gotovina, transakcijski račun, čekovi), jedan dnevnik " +"nabave, nekoliko \n" +" dnevnika prodaje te jedan opšti za razne potrebe.\n" +"

\n" +" " #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state msgid "Fiscalyear Close state" -msgstr "" +msgstr "Završno knjiženje fiskalne godine" #. module: account #: field:account.invoice.refund,journal_id:0 @@ -8678,7 +9182,7 @@ msgstr "Nalog za knjiženje povrata" #: report:account.general.ledger_landscape:0 #: report:account.partner.balance:0 msgid "Filter By" -msgstr "" +msgstr "Filtriraj po" #. module: account #: code:addons/account/wizard/account_period_close.py:51 @@ -8686,13 +9190,15 @@ msgstr "" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" +"Da bi zatvorili period, morate prvo proknjižiti dnevničke zapise iz tog " +"perioda." #. module: account #: view:account.entries.report:0 #: view:board.board:0 #: model:ir.actions.act_window,name:account.action_company_analysis_tree msgid "Company Analysis" -msgstr "" +msgstr "Analiza organizacije" #. module: account #: help:account.invoice,account_id:0 @@ -8703,7 +9209,7 @@ msgstr "Račun partnera korišten za ovu fakturu" #: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" -msgstr "" +msgstr "Porez %.2f%%" #. module: account #: field:account.tax.code,parent_id:0 @@ -8721,22 +9227,22 @@ msgstr "Redak uvjeta plaćanja" #: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" -msgstr "" +msgstr "Dnevnik nabavke" #. module: account #: field:account.invoice,amount_untaxed:0 msgid "Subtotal" -msgstr "" +msgstr "Sub-ukupno" #. module: account #: view:account.vat.declaration:0 msgid "Print Tax Statement" -msgstr "" +msgstr "Ispis poreske prijave" #. module: account #: view:account.model.line:0 msgid "Journal Entry Model Line" -msgstr "" +msgstr "Stavka modela dnevničkih zapisa" #. module: account #: view:account.invoice:0 @@ -8751,7 +9257,7 @@ msgstr "Datum dospijeća" #: model:ir.ui.menu,name:account.menu_account_supplier #: model:ir.ui.menu,name:account.menu_finance_payables msgid "Suppliers" -msgstr "" +msgstr "Dobavljači" #. module: account #: view:account.journal:0 @@ -8763,12 +9269,12 @@ msgstr "Dozvoljene vrste računa (prazno za bez kontrole)" msgid "" "The residual amount on a receivable or payable of a journal entry expressed " "in the company currency." -msgstr "" +msgstr "Ostatak iznosa dugovanja ili potraživanja u valuti kompanije." #. module: account #: view:account.tax.code:0 msgid "Statistics" -msgstr "" +msgstr "Statistika" #. module: account #: field:account.analytic.chart,from_date:0 @@ -8783,28 +9289,33 @@ msgid "" "computed. Because it is space consuming, we do not allow to use it while " "doing a comparison." msgstr "" +"Ova Vam opcija omogućava da dobijete više detalja o načinu na koji se vaša " +"salda računaju. Pošto zauzima dosta prostora, ne dozvoljavamo njihovo " +"korištenje kod poređenja." #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close msgid "Fiscalyear Close" -msgstr "" +msgstr "Fiskalna godina zatvorena" #. module: account #: sql_constraint:account.account:0 msgid "The code of the account must be unique per company !" -msgstr "" +msgstr "Šifra konta mora biti jedinstvena za jednu kompaniju!" #. module: account #: help:product.category,property_account_expense_categ:0 #: help:product.template,property_account_expense:0 msgid "This account will be used to value outgoing stock using cost price." msgstr "" +"Ovaj modul će se koristiti za vrednovanje izlaznog skladišnog prometa " +"koristeći nabavnu cijenu." #. module: account #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened msgid "Unpaid Invoices" -msgstr "" +msgstr "Neplaćene Fakture" #. module: account #: field:account.move.line.reconcile,debit:0 @@ -8836,14 +9347,14 @@ msgstr "Dozvoljeni računi (prazno bez kontrole)" #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "Porez prodaje (%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 #: model:ir.actions.act_window,name:account.action_account_analytic_chart #: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 msgid "Chart of Analytic Accounts" -msgstr "" +msgstr "Analitički kontni plan" #. module: account #: model:ir.actions.act_window,help:account.action_subscription_form @@ -8861,12 +9372,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove ponavljajuće stavke.\n" +"

\n" +" Ponavljajuća stavka je stavka koja već postoji u sistemu ali " +"se ponavlja\n" +" određenog datuma, npr. povezana je uz potpisani ugovor ili " +"dogovor sa\n" +" kupcem ili dobavljačem. Takve je unose moguće automatizovati " +"u sistemu.\n" +"

\n" +" " #. module: account #: view:account.journal:0 #: model:ir.ui.menu,name:account.menu_configuration_misc msgid "Miscellaneous" -msgstr "" +msgstr "Dodatna podešavanja" #. module: account #: help:res.partner,debit:0 @@ -8877,7 +9399,7 @@ msgstr "Ukupni iznos koji morate platiti ovom dobavljaču." #: model:process.node,name:account.process_node_analytic0 #: model:process.node,name:account.process_node_analyticcost0 msgid "Analytic Costs" -msgstr "" +msgstr "Analitički troškovi" #. module: account #: field:account.analytic.journal,name:0 @@ -8890,12 +9412,12 @@ msgstr "Naziv naloga za knjiženje" #: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" -msgstr "" +msgstr "Stavka \"%s\" nije ispravna !" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Smallest Text" -msgstr "" +msgstr "Najmanji tekst" #. module: account #: help:account.config.settings,module_account_check_writing:0 @@ -8903,11 +9425,13 @@ msgid "" "This allows you to check writing and printing.\n" " This installs the module account_check_writing." msgstr "" +"Ovo omogućava pisanja i štampanje čekova.\n" +" Instalira modul account_check_writing." #. module: account #: model:res.groups,name:account.group_account_invoice msgid "Invoicing & Payments" -msgstr "" +msgstr "Fakturisanje i Plaćanja" #. module: account #: help:account.invoice,internal_number:0 @@ -8926,7 +9450,7 @@ msgstr "Trošak" #. module: account #: help:account.chart,fiscalyear:0 msgid "Keep empty for all open fiscal years" -msgstr "" +msgstr "Prazno za sve otvorene fiskalne godine" #. module: account #: help:account.move.line,amount_currency:0 @@ -8939,7 +9463,7 @@ msgstr "Iznos izražen u opcionalnoj drugoj valuti ako je viševalutni unos." #: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." -msgstr "" +msgstr "Temeljnica (%s) za centralizaciju je potvrđena." #. module: account #: report:account.analytic.account.journal:0 @@ -8978,17 +9502,19 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" +"Možete odabrati dnevnik za odobrenja koja će se kreirati. Ako ostavite polje " +"prazno koristiti će se isti dnevnik kao i za trenutnu fakturu." #. module: account #: help:account.bank.statement.line,sequence:0 msgid "" "Gives the sequence order when displaying a list of bank statement lines." -msgstr "" +msgstr "Daje redoslijed kod prikaza liste stavaka izvoda." #. module: account #: model:process.transition,note:account.process_transition_validentries0 msgid "Accountant validates the accounting entries coming from the invoice." -msgstr "" +msgstr "Knjigovođa potvrđuje temeljnicu nastalu potvrdom fakture." #. module: account #: view:account.entries.report:0 @@ -9000,13 +9526,13 @@ msgstr "Usklađene stavke" #: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" -msgstr "" +msgstr "Pogrešan model!" #. module: account #: view:account.tax.code.template:0 #: view:account.tax.template:0 msgid "Tax Template" -msgstr "" +msgstr "Predložak poreza" #. module: account #: field:account.invoice.refund,period:0 @@ -9016,7 +9542,7 @@ msgstr "Razdoblje prisile" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "" +msgstr "Ispis salda partnera" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -9026,6 +9552,9 @@ msgid "" "some non legal fields or you must unreconcile first.\n" "%s." msgstr "" +"Ne možete vršiti ovu modifikaciju na zatvorenoj stavci. Možete samo " +"mijenjati neka nevažna polja ili morate razvezati stavke.\n" +"%s." #. module: account #: help:account.financial.report,sign:0 @@ -9036,11 +9565,16 @@ msgid "" "accounts that are typically more credited than debited and that you would " "like to print as positive amounts in your reports; e.g.: Income account." msgstr "" +"Za konta koja su tipično više dugovna nego potražna i koja bi željeli " +"ispisati kao negativne iznose u vašim izvještajima, trebate obrnuti predznak " +"salda; npr. konta troška. Isto se odnosi na konta koja su tipično više " +"potražna nego dugovna i koja bi htjeli da ispisuje kao pozitivne iznose u " +"vašim izvještajima; npr. konta prihoda." #. module: account #: field:res.partner,contract_ids:0 msgid "Contracts" -msgstr "" +msgstr "Ugovori" #. module: account #: field:account.cashbox.line,bank_statement_id:0 @@ -9049,7 +9583,7 @@ msgstr "" #: field:account.financial.report,credit:0 #: field:account.financial.report,debit:0 msgid "unknown" -msgstr "" +msgstr "nepoznato" #. module: account #: field:account.fiscalyear.close,journal_id:0 @@ -9061,20 +9595,20 @@ msgstr "Nalog za knjiženje otvarajućih stavaka" #. module: account #: model:process.transition,note:account.process_transition_customerinvoice0 msgid "Draft invoices are checked, validated and printed." -msgstr "" +msgstr "Fakture u pripremi se provjeravaju, odobravaju i ispisuju." #. module: account #: field:account.bank.statement,message_is_follower:0 #: field:account.invoice,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Je pratilac" #. module: account #: view:account.move:0 #: field:account.move,narration:0 #: field:account.move.line,narration:0 msgid "Internal Note" -msgstr "" +msgstr "Interna bilješka" #. module: account #: constraint:account.account:0 @@ -9083,11 +9617,14 @@ msgid "" "You cannot select an account type with a deferral method different of " "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" +"Greška konfiguracije!\n" +"Ne možete odabrati tip konta sa metodom odgode različitom od \"nezatvoreno\" " +"za konta sa internim tipom \"obveze/potraživanja\"." #. module: account #: field:account.config.settings,has_fiscal_year:0 msgid "Company has a fiscal year" -msgstr "" +msgstr "Organizacija ima fiskalnu godinu" #. module: account #: help:account.tax,child_depend:0 @@ -9103,12 +9640,12 @@ msgstr "" #: code:addons/account/account.py:634 #, python-format msgid "You cannot deactivate an account that contains journal items." -msgstr "" +msgstr "Nije moguće deaktivirati konto koji ima knjiženja." #. module: account #: selection:account.tax,applicable_type:0 msgid "Given by Python Code" -msgstr "" +msgstr "Pytkon programski kod" #. module: account #: field:account.analytic.journal,code:0 @@ -9119,7 +9656,7 @@ msgstr "Šifra knjiženja" #: view:account.invoice:0 #: field:account.move.line,amount_residual:0 msgid "Residual Amount" -msgstr "" +msgstr "Preostali iznos" #. module: account #: field:account.invoice,move_lines:0 @@ -9147,13 +9684,13 @@ msgstr "Razdoblje od" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Jedinica valute" #. module: account #: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" -msgstr "" +msgstr "Dnevnik povrata kupcima" #. module: account #: view:account.move:0 @@ -9170,26 +9707,30 @@ msgid "" "chart\n" " of accounts." msgstr "" +"Nakon potvrđivanja fakture u statusu 'U pripremi' nećete ih više moći\n" +" uređivati. Fakture će dobiti jedinstveni broj te će " +"se \n" +" kreirati stavke u knjiženja." #. module: account #: model:process.node,note:account.process_node_bankstatement0 msgid "Registered payment" -msgstr "" +msgstr "Registrovana plaćanja" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close states of Fiscal year and periods" -msgstr "" +msgstr "Fiskalne godine i periodi u stanju zatvoreno" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "Dnevnik povrata dobavljaču" #. module: account #: view:account.analytic.line:0 msgid "Product Information" -msgstr "" +msgstr "Proizvod" #. module: account #: report:account.analytic.account.journal:0 @@ -9208,18 +9749,18 @@ msgstr "Kreriaj Fakturu" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "Konfiguracija računovodstvenih podataka" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 msgid "Purchase Tax(%)" -msgstr "" +msgstr "Porez nabave(%)" #. module: account #: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." -msgstr "" +msgstr "Molimo upišite stavke fakture." #. module: account #: code:addons/account/wizard/pos_box.py:36 @@ -9228,11 +9769,13 @@ msgid "" "Please check that the field 'Internal Transfers Account' is set on the " "payment method '%s'." msgstr "" +"Molimo provjerite da li je polje 'Konto internih prijenosa' postavljen na " +"načinu plaćanja '%s'." #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "" +msgstr "Prikaži detalje" #. module: account #: code:addons/account/account.py:3203 @@ -9246,12 +9789,14 @@ msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft invoices." msgstr "" +"Analitički troškovi (ev. rada, nabava, ...) dolaze sa analitičkih " +"konta(računa). Oni mogu kreirati fakture u pripremi." #. module: account #: view:account.analytic.line:0 #: view:analytic.entries.report:0 msgid "My Entries" -msgstr "" +msgstr "Moje stavke" #. module: account #: help:account.invoice,state:0 @@ -9266,6 +9811,12 @@ msgid "" "related journal entries may or may not be reconciled. \n" "* The 'Cancelled' status is used when user cancel invoice." msgstr "" +" * 'U pripremi' je status za nepotvrđeni faktura. \n" +"* 'Pro-forma' je status kada faktura još nije dobila broj. \n" +"* 'Otvoreno' je status kada je faktura kreirana i dobila je broj. Status " +"'Otvoreno' znači da faktura nije plaćena. \n" +"* 'Plaćeno' je status koji faktura dobiva kada je plaćena. \n" +"* 'Otkazano' je status kada korisnik otkaže fakturu." #. module: account #: field:account.period,date_stop:0 @@ -9280,12 +9831,12 @@ msgstr "Kraj Perioda" #: model:ir.actions.act_window,name:account.action_account_report #: model:ir.ui.menu,name:account.menu_account_reports msgid "Financial Reports" -msgstr "" +msgstr "Financijski izvještaji" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 msgid "Liability View" -msgstr "" +msgstr "Pogled obveza" #. module: account #: report:account.account.balance:0 @@ -9313,7 +9864,7 @@ msgstr "" #: field:accounting.report,period_from:0 #: field:accounting.report,period_from_cmp:0 msgid "Start Period" -msgstr "" +msgstr "Početni period" #. module: account #: model:ir.actions.report.xml,name:account.account_central_journal @@ -9333,7 +9884,7 @@ msgstr "Firme koje se vežu sa partnerom" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "Zatraži povrat" #. module: account #: view:account.move.line:0 @@ -9343,7 +9894,7 @@ msgstr "Ukupno potražuje" #. module: account #: model:process.transition,note:account.process_transition_suppliervalidentries0 msgid "Accountant validates the accounting entries coming from the invoice. " -msgstr "" +msgstr "Knjigovođa potvrđuje dnevničke zapise nastale potvrdom fakture. " #. module: account #: field:account.subscription,period_total:0 @@ -9358,18 +9909,18 @@ msgstr "Dokument: Izvještaj konta kupca" #. module: account #: view:account.account.template:0 msgid "Receivale Accounts" -msgstr "" +msgstr "Konta potraživanja" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 msgid "Supplier credit note sequence" -msgstr "" +msgstr "Sekvenca odobrenja dobavljača" #. module: account #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "" +msgstr "Faktura je već zatvorena" #. module: account #: help:account.config.settings,module_account_payment:0 @@ -9381,6 +9932,12 @@ msgid "" "payments.\n" " This installs the module account_payment." msgstr "" +"Omogućuje da kreirate i upravljate vašim nalozima za plaćanje, sa svrhom\n" +" * da služi kao baza za jednostavno ukopčavanje raznih " +"automatiziranih mehanizama plaćanja\n" +" * i da osigura efikasniji način za upravljanje plaćanjem " +"faktura.\n" +" Instalira modul account_payment." #. module: account #: xsl:account.transfer:0 @@ -9398,7 +9955,7 @@ msgstr "Konto Potraživanja" #: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." -msgstr "" +msgstr "Kompanija treba biti ista za sve stavke zatvaranja." #. module: account #: field:account.account,balance:0 @@ -9429,13 +9986,13 @@ msgstr "Saldo" #. module: account #: model:process.node,note:account.process_node_supplierbankstatement0 msgid "Manually or automatically entered in the system" -msgstr "" +msgstr "Ručno ili automatski unešeno u sistem" #. module: account #: report:account.account.balance:0 #: report:account.general.ledger_landscape:0 msgid "Display Account" -msgstr "" +msgstr "Prikaži konto" #. module: account #: selection:account.account,type:0 @@ -9459,7 +10016,7 @@ msgstr "Legenda" #. module: account #: model:process.transition,note:account.process_transition_entriesreconcile0 msgid "Accounting entries are the first input of the reconciliation." -msgstr "" +msgstr "Dnevnički zapisi su prvi unos zatvaranja." #. module: account #: view:account.fiscalyear.close:0 @@ -9470,19 +10027,19 @@ msgstr "Generiraj stavke za otvaranje fiskalne godine" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Filters By" -msgstr "" +msgstr "Filtriraj po" #. module: account #: field:account.cashbox.line,number_closing:0 #: field:account.cashbox.line,number_opening:0 msgid "Number of Units" -msgstr "" +msgstr "Broj jedinica" #. module: account #: model:process.node,note:account.process_node_manually0 #: model:process.transition,name:account.process_transition_invoicemanually0 msgid "Manual entry" -msgstr "" +msgstr "Ručni unos" #. module: account #: report:account.general.ledger:0 @@ -9500,17 +10057,17 @@ msgstr "Prijenos" #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Neispravna akcija!" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "Datum / Period" #. module: account #: report:account.central.journal:0 msgid "A/C No." -msgstr "" +msgstr "A/C Br." #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement @@ -9524,11 +10081,14 @@ msgid "" "The period is invalid. Either some periods are overlapping or the period's " "dates are not matching the scope of the fiscal year." msgstr "" +"Greška!\n" +"Period je neispravan. Ili se neki periodi preklapaju, ili datumi perioda ne " +"odgovaraju rasponu fiskalne godine." #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Nema dospijelih stavaki kod ovog kupca." #. module: account #: help:account.tax,account_paid_id:0 @@ -9536,17 +10096,20 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." msgstr "" +"Postavite konto koji će se koristiti kao predodređeni na stavkama poreza kod " +"faktura za povrat. Ostavite prazno za konto troška." #. module: account #: help:account.addtmpl.wizard,cparent_id:0 msgid "" "Creates an account with the selected template under this existing parent." msgstr "" +"Kreira konto s odabranim predloškom pod postojećim nadređenim kontom." #. module: account #: report:account.invoice:0 msgid "Source" -msgstr "" +msgstr "Izvor" #. module: account #: selection:account.model.line,date_maturity:0 @@ -9560,6 +10123,8 @@ msgid "" "You have to define the bank account\n" "in the journal definition for reconciliation." msgstr "" +"Morate definisati konto banke\n" +"u postavkama dnevnika za zatvaranje." #. module: account #: help:account.journal,sequence_id:0 @@ -9567,22 +10132,23 @@ msgid "" "This field contains the information related to the numbering of the journal " "entries of this journal." msgstr "" +"Ovo polje sadržava informacije vezane uz sljedivosti dnevničkih zapisa" #. module: account #: field:account.invoice,sent:0 msgid "Sent" -msgstr "" +msgstr "Poslato" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu msgid "Common Report" -msgstr "" +msgstr "Izvještaji" #. module: account #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "Zadani porez prodaje" #. module: account #: report:account.overdue:0 @@ -9593,24 +10159,24 @@ msgstr "Saldo" #: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." -msgstr "" +msgstr "Nije moguće kreirati knjiženja za različite kompanije." #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "Periodična obrada" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "" +msgstr "Ulazne i izlazne fakture" #. module: account #: model:process.node,note:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_paymentorderbank0 #: model:process.transition,name:account.process_transition_paymentreconcile0 msgid "Payment entries" -msgstr "" +msgstr "Stavke plaćanja" #. module: account #: selection:account.entries.report,month:0 @@ -9619,7 +10185,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "July" -msgstr "" +msgstr "Jul" #. module: account #: view:account.account:0 @@ -9634,7 +10200,7 @@ msgstr "Pretplata" #. module: account #: model:ir.model,name:account.model_account_analytic_balance msgid "Account Analytic Balance" -msgstr "" +msgstr "Saldo analitike" #. module: account #: report:account.account.balance:0 @@ -9662,29 +10228,29 @@ msgstr "" #: field:accounting.report,period_to:0 #: field:accounting.report,period_to_cmp:0 msgid "End Period" -msgstr "" +msgstr "Krajnji period" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 msgid "Expense View" -msgstr "" +msgstr "Pregled troškova" #. module: account #: field:account.move.line,date_maturity:0 msgid "Due date" -msgstr "" +msgstr "Datum dospijeća" #. module: account #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "Neposredno plaćanje" #. module: account #: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" -msgstr "" +msgstr " Centralizacija" #. module: account #: help:account.journal,type:0 @@ -9695,6 +10261,11 @@ msgid "" "journals. Select 'Opening/Closing Situation' for entries generated for new " "fiscal years." msgstr "" +"Odaberite 'Prodaja' za dnevnike izlaznih faktura. Odaberite 'Nabava' za " +"dnevnike ulaznih faktura. Odaberite 'Gotovina' ili 'Banka' za dnevnike koji " +"se koriste kod plaćanja izlaznih ili ulaznih faktura. Odaberite 'Općenito' " +"za dnevnike raznih drugih operacija. Odaberite 'Početno/završno stanje' za " +"unose generisanje sa novom fiskalnom godinom." #. module: account #: view:account.subscription:0 @@ -9748,6 +10319,8 @@ msgid "" "It indicates that the invoice has been paid and the journal entry of the " "invoice has been reconciled with one or several journal entries of payment." msgstr "" +"Označava da je faktura plaćena i da je dnevnički zapis fakture zatvoren sa " +"jednim ili više izvoda." #. module: account #: view:account.invoice:0 @@ -9760,7 +10333,7 @@ msgstr "Fakture u pripremi" #: view:cash.box.in:0 #: model:ir.actions.act_window,name:account.action_cash_box_in msgid "Put Money In" -msgstr "" +msgstr "Primi novac" #. module: account #: selection:account.account.type,close_method:0 @@ -9773,7 +10346,7 @@ msgstr "Neusklađen" #: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" -msgstr "" +msgstr "Pogrešan ukupni iznos !" #. module: account #: field:account.journal,sequence_id:0 @@ -9791,6 +10364,13 @@ msgid "" "open period. Close a period when you do not want to record new entries and " "want to lock this period for tax related calculation." msgstr "" +"Period je fiskalno razdoblje tokom kojeg treba biti zabilježena evidencija " +"svih računovodstvenih aktivnosti. Mjesečni periodu su standard, ali ovisno o " +"vašoj državi ili potrebama kompanije možete također imati i kvartalne " +"periode. Zatvaranje perioda će onemogućiti unos novih knjiženja. Sva nova " +"knjiženja trebaju tada ići na sljedeći otvoreni period. Zatvorite perioda " +"kada ne želite nova knjiženja i kada želite zaključati period za potrebe " +"poreznih evidencija." #. module: account #: view:account.analytic.account:0 @@ -9807,12 +10387,12 @@ msgstr "Knjiga troškova (Samo količine)" #: model:process.transition,name:account.process_transition_analyticinvoice0 #: model:process.transition,name:account.process_transition_supplieranalyticcost0 msgid "From analytic accounts" -msgstr "" +msgstr "Iz analitičkog konta" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Postavite fiskalnu godinu" #. module: account #: field:account.period,name:0 @@ -9826,6 +10406,8 @@ msgid "" "Selected invoice(s) cannot be cancelled as they are already in 'Cancelled' " "or 'Done' state." msgstr "" +"Odabrani(e) račun(e) nije moguće otkazati jer su već u statusu 'Otkazano' " +"ili 'Potvrđeno'." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -9847,12 +10429,12 @@ msgstr "Šifra/Datum" #: model:ir.model,name:account.model_account_move_line #: model:ir.ui.menu,name:account.menu_action_account_moves_all msgid "Journal Items" -msgstr "" +msgstr "Stavke dnevnika" #. module: account #: view:accounting.report:0 msgid "Comparison" -msgstr "" +msgstr "Poređenje" #. module: account #: code:addons/account/account_move_line.py:1119 @@ -9862,6 +10444,9 @@ msgid "" "some non legal fields or you must unconfirm the journal entry first.\n" "%s." msgstr "" +"Ne možete raditi ovu promjenu na knjiženom unosu. Možete samo mijenjati neka " +"sporedna polja ili morate prvo rasknjižiti dnevničke zapise.\n" +"%s." #. module: account #: help:account.config.settings,module_account_budget:0 @@ -9872,11 +10457,17 @@ msgid "" "analytic account.\n" " This installs the module account_budget." msgstr "" +"Ovo omogućuje računovođama da upravljalju analitičkim i miješanim " +"proračunima.\n" +" Jednom kada je glavni proračun definisan,\n" +" voditelji projekta mogu postaviti planirani iznos na svaki " +"analitički konto.\n" +" Instalira modul account_budget." #. module: account #: field:account.bank.statement.line,name:0 msgid "OBI" -msgstr "" +msgstr "JIB/JBMG" #. module: account #: help:res.partner,property_account_payable:0 @@ -9902,7 +10493,7 @@ msgstr "Sekundarna valuta" #. module: account #: model:ir.model,name:account.model_validate_account_move msgid "Validate Account Move" -msgstr "" +msgstr "Potvrdi knjiženje" #. module: account #: field:account.account,credit:0 @@ -9931,29 +10522,29 @@ msgstr "Potražuje" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "Faktura u pripremi " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal msgid "General Journals" -msgstr "" +msgstr "Opšti dnevnici" #. module: account #: view:account.model:0 msgid "Journal Entry Model" -msgstr "" +msgstr "Model dnevničkog zapisa" #. module: account #: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." -msgstr "" +msgstr "Početno razdoblje bi trebalo prethoditi završnom razdoblju" #. module: account #: field:account.invoice,number:0 #: field:account.move,name:0 msgid "Number" -msgstr "" +msgstr "Broj" #. module: account #: report:account.analytic.account.journal:0 @@ -9968,7 +10559,7 @@ msgstr "Općenito" #: field:account.invoice.report,price_total:0 #: field:account.invoice.report,user_currency_price_total:0 msgid "Total Without Tax" -msgstr "" +msgstr "Uk. prije poreza" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -10004,7 +10595,7 @@ msgstr "Razdoblja" #. module: account #: field:account.invoice.report,currency_rate:0 msgid "Currency Rate" -msgstr "" +msgstr "Kursna lista" #. module: account #: field:account.account,tax_ids:0 @@ -10021,12 +10612,12 @@ msgstr "Zadani porezi" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "April" -msgstr "" +msgstr "April" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 msgid "Profit (Loss) to report" -msgstr "" +msgstr "Dobit (gubitak) za prijavu" #. module: account #: code:addons/account/account_invoice.py:379 @@ -10037,17 +10628,17 @@ msgstr "" #. module: account #: view:account.move.line.reconcile.select:0 msgid "Open for Reconciliation" -msgstr "" +msgstr "Otvori za saldakonti zatvaranje" #. module: account #: field:account.account,parent_left:0 msgid "Parent Left" -msgstr "" +msgstr "Roditelj lijevo" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Title 2 (bold)" -msgstr "" +msgstr "Naslov 2 (bold)" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree2 @@ -10078,6 +10669,9 @@ msgid "" "and is the process of transferring debit and credit amounts from a journal " "of original entry to a ledger book." msgstr "" +"Ažuriranje temeljnice \"knjiženje u gl. knjigu\" je proces prijenosa iznosa " +"duguje i potražuje iz dnevnika u glavnu knjigu. Kod nekih izvještaja možete " +"birati između ažuriranih stavaka ili svih evidentiranih stavki." #. module: account #: model:ir.model,name:account.model_account_period @@ -10094,7 +10688,7 @@ msgstr "Ukloni retke" #: selection:account.account.template,type:0 #: selection:account.entries.report,type:0 msgid "Regular" -msgstr "" +msgstr "Običan" #. module: account #: view:account.account:0 @@ -10108,7 +10702,7 @@ msgstr "Interni tip" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Generiši stavke prije" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running @@ -10187,14 +10781,14 @@ msgstr "Sekvenca fiskalne godine" #. module: account #: selection:account.financial.report,display_detail:0 msgid "No detail" -msgstr "" +msgstr "Nema detalja" #. module: account #: field:account.account,unrealized_gain_loss:0 #: model:ir.actions.act_window,name:account.action_account_gain_loss #: model:ir.ui.menu,name:account.menu_unrealized_gains_losses msgid "Unrealized Gain or Loss" -msgstr "" +msgstr "Nerealizovani dobit ili gubitak" #. module: account #: view:account.move:0 @@ -10207,11 +10801,13 @@ msgstr "Stanja" #: help:product.template,property_account_income:0 msgid "This account will be used to value outgoing stock using sale price." msgstr "" +"Ovaj će se konto koristiti za vrednovanje skladišnog izlaza koristeći " +"prodajnu cijenu." #. module: account #: field:account.invoice,check_total:0 msgid "Verification Total" -msgstr "" +msgstr "Kontrola uk. iznosa" #. module: account #: report:account.analytic.account.balance:0 @@ -10229,12 +10825,12 @@ msgstr "Ukupno" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "" +msgstr "Ne mogu %s u pripremi/proforma/otkaži fakturu." #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Analitički konto poreza kod povrata" #. module: account #: view:account.move.bank.reconcile:0 @@ -10293,19 +10889,19 @@ msgstr "Preduzeće" #. module: account #: model:ir.ui.menu,name:account.menu_action_subscription_form msgid "Define Recurring Entries" -msgstr "" +msgstr "Postavlja ponavljajuće zapise" #. module: account #: field:account.entries.report,date_maturity:0 msgid "Date Maturity" -msgstr "" +msgstr "Datum valute" #. module: account #: field:account.invoice.refund,description:0 #: field:cash.box.in,name:0 #: field:cash.box.out,name:0 msgid "Reason" -msgstr "" +msgstr "Razlog" #. module: account #: selection:account.partner.ledger,filter:0 @@ -10313,7 +10909,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled #, python-format msgid "Unreconciled Entries" -msgstr "" +msgstr "Otvorene stavke" #. module: account #: help:account.partner.reconcile.process,today_reconciled:0 @@ -10322,6 +10918,8 @@ msgid "" "reconciliation process today. The current partner is counted as already " "processed." msgstr "" +"Ova brojka opisuje ukupni broj partenera koji su prošli proces zatvaranja " +"danas. Trenutni partner se računa." #. module: account #: view:account.fiscalyear:0 @@ -10331,12 +10929,12 @@ msgstr "Stvori mjesečna razdoblja" #. module: account #: field:account.tax.code.template,sign:0 msgid "Sign For Parent" -msgstr "" +msgstr "Predznak za nadređenog" #. module: account #: model:ir.model,name:account.model_account_balance_report msgid "Trial Balance Report" -msgstr "" +msgstr "Izvještaj stanja bilansa" #. module: account #: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree @@ -10347,12 +10945,12 @@ msgstr "Izvodi u pripremi" #: model:process.transition,note:account.process_transition_statemententries0 msgid "" "Manual or automatic creation of payment entries according to the statements" -msgstr "" +msgstr "Ručno ili automatsko kreiranje stavki plaćanja prema izvodima" #. module: account #: field:account.analytic.balance,empty_acc:0 msgid "Empty Accounts ? " -msgstr "" +msgstr "Prazna konta ? " #. module: account #: view:account.unreconcile.reconcile:0 @@ -10360,17 +10958,19 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disable" msgstr "" +"Ako razvezujete transakcije, morate također provjeriti akcije koje su " +"povezane sa tim transakcijama jer će one ostati aktivne." #. module: account #: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" -msgstr "" +msgstr "Nije moguće izmjeniti porez!" #. module: account #: constraint:account.bank.statement:0 msgid "The journal and period chosen have to belong to the same company." -msgstr "" +msgstr "Dnevnik i odabrano razdoblje moraju pripadati istom poduzeću." #. module: account #: view:account.invoice:0 @@ -10380,12 +10980,12 @@ msgstr "Retci fakture" #. module: account #: field:account.chart,period_to:0 msgid "End period" -msgstr "" +msgstr "Završni period" #. module: account #: sql_constraint:account.journal:0 msgid "The code of the journal must be unique per company !" -msgstr "" +msgstr "Šifra dnevnika mora biti jedinstvena (za kompaniju) !" #. module: account #: model:ir.actions.act_window,help:account.action_account_invoice_report_all @@ -10394,11 +10994,14 @@ msgid "" "customer. The tool search can also be used to personalise your Invoices " "reports and so, match this analysis to your needs." msgstr "" +"Iz ovog izvještaja imate pregled iznosa fakturisanog vašem kupcu. Alat " +"pretrage može se također koristiti za personalizaciju vaših ispisa računa i " +"priagođavanje analize vašim potrebama." #. module: account #: view:account.partner.reconcile.process:0 msgid "Go to Next Partner" -msgstr "" +msgstr "Idi na slijedećeg partnera" #. module: account #: view:account.automatic.reconcile:0 @@ -10409,22 +11012,22 @@ msgstr "Otpiši prijenos" #. module: account #: model:process.node,note:account.process_node_paidinvoice0 msgid "Invoice's state is Done" -msgstr "" +msgstr "Stanje računa je zatvoreno/plaćeno" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Upravljanje naplatom" #. module: account #: model:ir.model,name:account.model_report_account_sales msgid "Report of the Sales by Account" -msgstr "" +msgstr "Izvještaj o prodaji po kontu" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account msgid "Accounts Fiscal Position" -msgstr "" +msgstr "Fiskalna pozicija" #. module: account #: report:account.invoice:0 @@ -10465,7 +11068,7 @@ msgstr "Duguje" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Title 3 (bold, smaller)" -msgstr "" +msgstr "Naslov 3 (podebljano, manje)" #. module: account #: view:account.invoice:0 @@ -10476,7 +11079,7 @@ msgstr "Retci fakture" #. module: account #: help:account.model.line,quantity:0 msgid "The optional quantity on entries." -msgstr "" +msgstr "Neobavezna količina" #. module: account #: field:account.automatic.reconcile,reconciled:0 @@ -10507,7 +11110,7 @@ msgstr "Raspon" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "" +msgstr "Stavke analitničkog dnevnika povezane sa dnevnikom nabave" #. module: account #: help:account.account,type:0 @@ -10518,6 +11121,10 @@ msgid "" "payable/receivable are for partners accounts (for debit/credit " "computations), closed for depreciated accounts." msgstr "" +"'Interni tip' se koristi za značajke dostupne na različitim tipovima konta: " +"pogled ne može imati stavke dnevnika, konsolidacija su konta koja mogu imati " +"podređena konta za potrebe konsolidacije više kompanija, obveze/potraživanja " +"su za saldakonti, zatvoreno za konta koja se više ne koriste." #. module: account #: report:account.account.balance:0 @@ -10543,6 +11150,8 @@ msgstr "Ručno" msgid "" "This is a field only used for internal purpose and shouldn't be displayed" msgstr "" +"Ovo se polje koristi isključivo za interne potrebe i nebi se trebalo " +"prikazivati" #. module: account #: selection:account.entries.report,month:0 @@ -10551,18 +11160,18 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "December" -msgstr "" +msgstr "Decembar" #. module: account #: view:account.invoice.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "Grupiraj po mjesecu fakture" #. module: account #: code:addons/account/account_analytic_line.py:99 #, python-format msgid "There is no income account defined for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Nije definisan konto prihoda za proizvod: \"%s\" (id:%d)." #. module: account #: model:ir.actions.act_window,name:account.action_aged_receivable_graph @@ -10573,7 +11182,7 @@ msgstr "Zastarjela potraživanja" #. module: account #: field:account.tax,applicable_type:0 msgid "Applicability" -msgstr "" +msgstr "Primjenjivost" #. module: account #: help:account.move.line,currency_id:0 @@ -10584,18 +11193,18 @@ msgstr "Opcionalna druga valuta ako je u pitanju viševalutni unos." #: model:process.transition,note:account.process_transition_invoiceimport0 msgid "" "Import of the statement in the system from a supplier or customer invoice" -msgstr "" +msgstr "Uvoz stavke u sistem iz fakture dobavljača ili kupca" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing msgid "Billing" -msgstr "" +msgstr "Računi" #. module: account #: view:account.account:0 #: view:account.analytic.account:0 msgid "Parent Account" -msgstr "" +msgstr "Roditeljski račun" #. module: account #: view:report.account.receivable:0 @@ -10605,7 +11214,7 @@ msgstr "Konta po vrstama" #. module: account #: model:ir.model,name:account.model_account_analytic_chart msgid "Account Analytic Chart" -msgstr "" +msgstr "Analitički kontni plan" #. module: account #: help:account.invoice,residual:0 @@ -10615,7 +11224,7 @@ msgstr "Ostatak iznosa koji se duguje." #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "" +msgstr "Sortirano po" #. module: account #: code:addons/account/account_invoice.py:1546 @@ -10624,6 +11233,7 @@ msgid "" "The selected unit of measure is not compatible with the unit of measure of " "the product." msgstr "" +"Odabrana jedinica mjere nije kompatibilna sa jedinicom mjere proizvoda." #. module: account #: view:account.fiscal.position:0 @@ -10647,6 +11257,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove porezne tarife.\n" +"

\n" +" Ovisno o legislativi pojedine zemlje, porezne se tarife " +"koriste za\n" +" poreznu prijavu. OpenERP omogućuje definisanje kompleksne " +"strukture\n" +" porezne prijave.\n" +"

\n" +" " #. module: account #: selection:account.entries.report,month:0 @@ -10655,7 +11275,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "November" -msgstr "" +msgstr "Novembar" #. module: account #: model:ir.actions.act_window,help:account.action_account_moves_all_a @@ -10673,6 +11293,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Odaberite razdoblje i dnevnik koji želite kreirati.\n" +"

\n" +" Kroz ovaj modul moguće je jednostavno i efikasno " +"evidentirati\n" +" stavke glavne knjige.\n" +"

\n" +" " #. module: account #: help:account.invoice.line,account_id:0 @@ -10682,7 +11310,7 @@ msgstr "Račun prihoda ili troškova vezan za odabrani proizvod." #. module: account #: view:account.config.settings:0 msgid "Install more chart templates" -msgstr "" +msgstr "Instaliraj dodatne predloške kontog plana" #. module: account #: report:account.general.journal:0 @@ -10693,7 +11321,7 @@ msgstr "Opći nalog za knjiženje" #. module: account #: view:account.invoice:0 msgid "Search Invoice" -msgstr "" +msgstr "Pretraži fakture" #. module: account #: report:account.invoice:0 @@ -10723,7 +11351,7 @@ msgstr "Opće informacije" #: view:account.move:0 #: view:account.move.line:0 msgid "Accounting Documents" -msgstr "" +msgstr "Dokumenti računovodstva" #. module: account #: code:addons/account/account.py:641 @@ -10731,39 +11359,39 @@ msgstr "" msgid "" "You cannot remove/deactivate an account which is set on a customer or " "supplier." -msgstr "" +msgstr "Ne možete ukloniti/deaktivirati konto kupca ili dobavljača" #. module: account #: model:ir.model,name:account.model_validate_account_move_lines msgid "Validate Account Move Lines" -msgstr "" +msgstr "Ažuriraj stavke" #. module: account #: help:res.partner,property_account_position:0 msgid "" "The fiscal position will determine taxes and accounts used for the partner." -msgstr "" +msgstr "Fiskalna pozicija određuje poreze i konta za partnera." #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 msgid "Invoice's state is Done." -msgstr "" +msgstr "Stanje faktura je zatvoreno/plaćeno." #. module: account #: model:process.transition,note:account.process_transition_reconcilepaid0 msgid "As soon as the reconciliation is done, the invoice can be paid." -msgstr "" +msgstr "Čim je obavljeno zatvaranje, faktura može biti plaćena." #. module: account #: code:addons/account/wizard/account_change_currency.py:59 #, python-format msgid "New currency is not configured properly." -msgstr "" +msgstr "Nova valuta nije ispravno postavljena." #. module: account #: view:account.account.template:0 msgid "Search Account Templates" -msgstr "" +msgstr "Traži predloške konta" #. module: account #: view:account.invoice.tax:0 @@ -10774,12 +11402,12 @@ msgstr "Ručni porezi fakture" #: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." -msgstr "" +msgstr "Uslovi plaćanja dobavljača nema definisane stavke uslova plaćanja" #. module: account #: field:account.account,parent_right:0 msgid "Parent Right" -msgstr "" +msgstr "Roditelj desno" #. module: account #. openerp-web @@ -10787,12 +11415,12 @@ msgstr "" #: code:addons/account/static/src/js/account_move_reconciliation.js:80 #, python-format msgid "Never" -msgstr "" +msgstr "Nikada" #. module: account #: model:ir.model,name:account.model_account_addtmpl_wizard msgid "account.addtmpl.wizard" -msgstr "" +msgstr "account.addtmpl.wizard" #. module: account #: field:account.aged.trial.balance,result_selection:0 @@ -10803,12 +11431,12 @@ msgstr "" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Partner's" -msgstr "" +msgstr "Partneri" #. module: account #: field:account.account,note:0 msgid "Internal Notes" -msgstr "" +msgstr "Interne zabilješke" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear @@ -10823,6 +11451,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the analytic " "journal without removing it." msgstr "" +"Ako aktivno polje postavljeno na False, to će vam omogućiti da sakrijete " +"analitiku dnevničkih zapisa bez da ih uklonite." #. module: account #: field:account.analytic.line,ref:0 diff --git a/addons/account/i18n/ca.po b/addons/account/i18n/ca.po index 65707f7a2e2..514b93b1a72 100644 --- a/addons/account/i18n/ca.po +++ b/addons/account/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:24+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/cs.po b/addons/account/i18n/cs.po index 970a16e2a35..4702a1a2cf4 100644 --- a/addons/account/i18n/cs.po +++ b/addons/account/i18n/cs.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-06-20 16:14+0000\n" -"Last-Translator: Jiří Hajda \n" +"PO-Revision-Date: 2014-02-02 15:35+0000\n" +"Last-Translator: Jakub Drozd \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:24+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-02-03 05:18+0000\n" +"X-Generator: Launchpad (build 16916)\n" "X-Poedit-Language: Czech\n" #. module: account @@ -85,7 +85,7 @@ msgstr "" #: view:account.move:0 #: view:account.move.line:0 msgid "Total Debit" -msgstr "Celkový dluh" +msgstr "Debet celkem" #. module: account #: constraint:account.account.template:0 @@ -195,7 +195,7 @@ msgstr "Označení sloupce" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "Počet číslic použitých v čísle účtu" #. module: account #: help:account.analytic.journal,type:0 @@ -258,7 +258,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "Další číslo dobropisu" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -444,7 +444,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Období :" #. module: account #: field:account.account.template,chart_template_id:0 @@ -660,12 +660,12 @@ msgstr "Hlavní číselná řada musí být odlišná od současné!" #: code:addons/account/wizard/account_change_currency.py:70 #, python-format msgid "Current currency is not configured properly." -msgstr "" +msgstr "Stávající měna není správně nakonfigurována." #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Účet zisků" #. module: account #: code:addons/account/account_move_line.py:1156 @@ -761,6 +761,8 @@ 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 "" +"Datum vašeho záznamu deníku není v určeném období! Měli byste změnit datum " +"nebo odstranit omezení z deníku." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger @@ -781,7 +783,7 @@ msgstr "Opravdu chcete vytvořit záznamy?" #: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." -msgstr "" +msgstr "Faktura částečně uhrazena: %s%s z %s%s (%s%s zbývá)." #. module: account #: view:account.invoice:0 @@ -890,7 +892,7 @@ msgstr "Analytický účet knihy" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Odeslat e-mailem" #. module: account #: help:account.central.journal,amount_currency:0 @@ -992,7 +994,7 @@ msgstr "" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "" +msgstr "Faktura uhrazena" #. module: account #: view:validate.account.move:0 @@ -1095,7 +1097,7 @@ msgstr "Kód" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Vlastnosti" #. module: account #: code:addons/account/account.py:2346 @@ -1162,7 +1164,7 @@ msgstr "Režim na šířku" #. module: account #: help:account.fiscalyear.close,fy_id:0 msgid "Select a Fiscal year to close" -msgstr "Vyberte finanční rok k uzavření" +msgstr "Vyberte fiskální rok k uzavření" #. module: account #: help:account.account.template,user_type:0 @@ -1296,7 +1298,7 @@ msgstr "Kód bude zobrazen na výkazech." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "Daně použité při nákuu" +msgstr "Daně použité při nákupu" #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1310,13 +1312,13 @@ msgstr "Kód daně" #. module: account #: field:account.account,currency_mode:0 msgid "Outgoing Currencies Rate" -msgstr "Odchozí měnový poměr" +msgstr "Odchozí měnový kurz" #. module: account #: view:account.analytic.account:0 #: field:account.config.settings,chart_template_id:0 msgid "Template" -msgstr "" +msgstr "Šablona" #. module: account #: selection:account.analytic.journal,type:0 @@ -1389,7 +1391,7 @@ msgstr "Účet" #. module: account #: field:account.tax,include_base_amount:0 msgid "Included in base amount" -msgstr "Včetně základu" +msgstr "Zahrnuto v základní částce" #. module: account #: view:account.entries.report:0 @@ -1422,7 +1424,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_tax_report #: model:ir.ui.menu,name:account.next_id_27 msgid "Taxes" -msgstr "DPH" +msgstr "Daně" #. module: account #: code:addons/account/wizard/account_financial_report.py:70 @@ -1457,7 +1459,7 @@ msgstr "Položky vyrovnání" #: model:ir.actions.report.xml,name:account.account_overdue #: view:res.company:0 msgid "Overdue Payments" -msgstr "Zpožděné platby" +msgstr "Platby po splatnosti" #. module: account #: report:account.third_party_ledger:0 @@ -1529,7 +1531,7 @@ msgstr "Účet pohledávek" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopie)" #. module: account #: report:account.account.balance:0 @@ -1572,7 +1574,7 @@ msgstr "# z položek" #. module: account #: field:account.automatic.reconcile,max_amount:0 msgid "Maximum write-off amount" -msgstr "Max.množství odpisu" +msgstr "Maximální hodnota odpisu" #. module: account #. openerp-web @@ -1605,7 +1607,7 @@ msgstr "" #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "" +msgstr "Dobropis" #. module: account #: view:account.config.settings:0 @@ -1615,7 +1617,7 @@ msgstr "Elektronická fakturace a platby" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 msgid "Cost Ledger for Period" -msgstr "Kniha nákladových účtu za období" +msgstr "Kniha nákladových účtú za období" #. module: account #: view:account.entries.report:0 @@ -1685,12 +1687,12 @@ msgstr "Skupiny" #. module: account #: field:report.invoice.created,amount_untaxed:0 msgid "Untaxed" -msgstr "Bez DPH" +msgstr "Bez daně" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "Rozšířená nastavení" #. module: account #: view:account.bank.statement:0 @@ -1796,7 +1798,7 @@ msgstr "Analytické účtenictví" #. module: account #: report:account.overdue:0 msgid "Sub-Total :" -msgstr "Mezisoučet" +msgstr "Mezisoučet :" #. module: account #: help:res.company,tax_calculation_rounding_method:0 @@ -1826,7 +1828,7 @@ msgstr "15 dnů" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing msgid "Invoicing" -msgstr "Fakturování" +msgstr "Fakturace" #. module: account #: code:addons/account/report/account_partner_balance.py:115 @@ -1951,7 +1953,7 @@ msgstr "" #. module: account #: help:account.period,special:0 msgid "These periods can overlap." -msgstr "Tyto období se mohou překrývat." +msgstr "Tato období se mohou překrývat." #. module: account #: model:process.node,name:account.process_node_draftstatement0 @@ -1977,7 +1979,7 @@ msgstr "Částka Dal" #: field:account.bank.statement,message_ids:0 #: field:account.invoice,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Zprávy" #. module: account #: view:account.vat.declaration:0 @@ -2075,7 +2077,7 @@ msgstr "Analýza faktur" #. module: account #: model:ir.model,name:account.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Průvodce vytvořením emailu" #. module: account #: model:ir.model,name:account.model_account_period_close @@ -2276,7 +2278,7 @@ msgstr "" #: view:account.invoice:0 #: view:report.invoice.created:0 msgid "Untaxed Amount" -msgstr "Částka bez DPH" +msgstr "Částka bez daně" #. module: account #: help:account.tax,active:0 @@ -2797,7 +2799,7 @@ msgstr "" #: view:account.tax:0 #: model:ir.model,name:account.model_account_tax msgid "Tax" -msgstr "DPH" +msgstr "Daň" #. module: account #: view:account.analytic.account:0 @@ -2815,7 +2817,7 @@ msgstr "Analytický účet" #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "Výchozí DPH na vstupu" +msgstr "Výchozí daň na vstupu" #. module: account #: view:account.account:0 @@ -2875,7 +2877,7 @@ msgstr "Účetní informace" #: view:account.tax:0 #: view:account.tax.template:0 msgid "Special Computation" -msgstr "Speciální výpočetní" +msgstr "Zvláštní výpočet" #. module: account #: view:account.move.bank.reconcile:0 @@ -3188,7 +3190,7 @@ msgstr "Částka základního kódu" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "Výchozí DPH" +msgstr "Výchozí daň na výstupu" #. module: account #: help:account.model.line,date_maturity:0 @@ -3807,7 +3809,7 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Tax Amount" -msgstr "DPH" +msgstr "Částka daně" #. module: account #: view:account.move:0 @@ -5111,7 +5113,7 @@ msgstr "Přidat" #: report:account.overdue:0 #: model:mail.message.subtype,name:account.mt_invoice_paid msgid "Paid" -msgstr "Placeno" +msgstr "Uhrazeno" #. module: account #: field:account.invoice,tax_line:0 @@ -5560,7 +5562,7 @@ msgstr "" #: field:account.tax,child_depend:0 #: field:account.tax.template,child_depend:0 msgid "Tax on Children" -msgstr "Daň z dětí" +msgstr "Podřízená daň" #. module: account #: help:res.partner,last_reconciliation_date:0 @@ -6384,7 +6386,7 @@ msgstr "Toto je model pro opakující se účetní položky" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 msgid "Sales Tax(%)" -msgstr "DPH (%)" +msgstr "Daň (%)" #. module: account #: view:account.tax.code:0 @@ -6962,7 +6964,7 @@ msgstr "Stav je koncept" #. module: account #: view:account.move.line:0 msgid "Total debit" -msgstr "Celkový dluh" +msgstr "Debet celkem" #. module: account #: view:account.move.line:0 @@ -7387,7 +7389,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Taxes:" -msgstr "DPH:" +msgstr "Daně:" #. module: account #: code:addons/account/account_invoice.py:458 @@ -7494,7 +7496,7 @@ msgstr "Pro procenta zadejte násobek mezi 0-1." #: field:account.invoice,date_invoice:0 #: field:report.invoice.created,date_invoice:0 msgid "Invoice Date" -msgstr "Datum vystavení" +msgstr "Datum vystavení faktury" #. module: account #: view:account.invoice.report:0 @@ -7557,7 +7559,7 @@ msgstr "Řádek bankovního výpisu" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 msgid "Default Purchase Tax" -msgstr "Výchozí DPH na vstupu" +msgstr "Výchozí daň na vstupu" #. module: account #: field:account.chart.template,property_account_income_opening:0 @@ -7635,7 +7637,7 @@ msgstr "Účetní deník" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 msgid "Tax calculation rounding method" -msgstr "Způsob zaokrouhlování při výpočtu DPH" +msgstr "Způsob zaokrouhlování při výpočtu daní" #. module: account #: model:process.node,name:account.process_node_paidinvoice0 @@ -7807,7 +7809,7 @@ msgstr "Deník tržeb" #. module: account #: model:ir.model,name:account.model_account_invoice_tax msgid "Invoice Tax" -msgstr "DPH faktury" +msgstr "Daň faktury" #. module: account #: code:addons/account/account_move_line.py:1185 @@ -8147,7 +8149,9 @@ msgstr "" #. module: account #: field:res.company,tax_calculation_rounding_method:0 msgid "Tax Calculation Rounding Method" -msgstr "Způsob zaokrouhlování při výpočtu DPH" +msgstr "" +"/usr/bin/google-chrome: error while loading shared libraries: libudev.so.0: " +"cannot open shared object file: No such file or directory" #. module: account #: field:account.entries.report,move_line_state:0 @@ -8820,7 +8824,7 @@ msgstr "Nezaplacené faktury" #. module: account #: field:account.move.line.reconcile,debit:0 msgid "Debit amount" -msgstr "Částka dluhu" +msgstr "Částka debetu" #. module: account #: view:account.aged.trial.balance:0 @@ -9223,7 +9227,7 @@ msgstr "" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 msgid "Purchase Tax(%)" -msgstr "DPH na vstupu (%)" +msgstr "Daň na vstupu (%)" #. module: account #: code:addons/account/account_invoice.py:901 @@ -9594,7 +9598,7 @@ msgstr "Běžný výkaz" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "Výchozí DPH" +msgstr "Výchozí daň na výstupu" #. module: account #: report:account.overdue:0 @@ -9938,7 +9942,7 @@ msgstr "Ověřit pohyb účtu" #: report:account.vat.declaration:0 #: field:report.account.receivable,credit:0 msgid "Credit" -msgstr "Úvěr" +msgstr "Dal" #. module: account #: view:account.invoice:0 @@ -9980,7 +9984,7 @@ msgstr "Obecný" #: field:account.invoice.report,price_total:0 #: field:account.invoice.report,user_currency_price_total:0 msgid "Total Without Tax" -msgstr "Celkem bez DPH" +msgstr "Celkem bez daně" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -10472,7 +10476,7 @@ msgstr "Faktura dodavatele" #: report:account.vat.declaration:0 #: field:report.account.receivable,debit:0 msgid "Debit" -msgstr "Dluh" +msgstr "Má dáti" #. module: account #: selection:account.financial.report,style_overwrite:0 diff --git a/addons/account/i18n/da.po b/addons/account/i18n/da.po index c81afda5288..eecf9421d1b 100644 --- a/addons/account/i18n/da.po +++ b/addons/account/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:24+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:54+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -27,6 +27,8 @@ msgstr "Systembetaling" msgid "" "An account fiscal position could be defined only once time on same accounts." msgstr "" +"En konto's finansielle/skattemæssige position kan kan angives én gang på " +"samme konto." #. module: account #: help:account.tax.code,sequence:0 @@ -66,7 +68,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_report_aged_receivable msgid "Aged Receivable Till Today" -msgstr "" +msgstr "Aldersopdelte tilgodehavender til i dag" #. module: account #: model:process.transition,name:account.process_transition_invoiceimport0 @@ -215,6 +217,9 @@ msgid "" "invoice) to create analytic entries, OpenERP will look for a matching " "journal of the same type." msgstr "" +"Angiver typen på den analytiske journal. Når det er påkrævet for at danne " +"analytiske posteringer, søger OpenERP efter en matchende journal af samme " +"type." #. module: account #: help:account.tax,account_analytic_collected_id:0 @@ -223,6 +228,8 @@ msgid "" "lines for invoices. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Angiver den analyse konto som bruges standard på fakturaens momslinier. " +"Efterlad tom hvis du ikke ønsker et standard forslag på analyse konto." #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_template_form @@ -238,7 +245,7 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries are an input of the reconciliation." -msgstr "" +msgstr "Konto posteringer danner grundlag for afstemningen" #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports @@ -319,7 +326,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "" +msgstr "Konto mod-udligning" #. module: account #: field:account.config.settings,module_account_budget:0 @@ -363,12 +370,12 @@ msgstr "Juni" #: code:addons/account/wizard/account_automatic_reconcile.py:148 #, python-format msgid "You must select accounts to reconcile." -msgstr "" +msgstr "Du skal vælge konti til afstemning" #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "Giver dig mulighed for at bruge analytisk bogføring" #. module: account #: view:account.invoice:0 @@ -413,7 +420,7 @@ msgstr "" #. module: account #: field:account.journal,default_debit_account_id:0 msgid "Default Debit Account" -msgstr "" +msgstr "Standard Debit konto" #. module: account #: view:account.move:0 @@ -450,7 +457,7 @@ msgstr "Periode:" #: field:account.tax.template,chart_template_id:0 #: field:wizard.multi.charts.accounts,chart_template_id:0 msgid "Chart Template" -msgstr "" +msgstr "Oversigts skabelon" #. module: account #: selection:account.invoice.refund,filter_refund:0 @@ -559,7 +566,7 @@ msgstr "Konto brugt i Journal" #: help:account.vat.declaration,chart_account_id:0 #: help:accounting.report,chart_account_id:0 msgid "Select Charts of Accounts" -msgstr "" +msgstr "Vælg kontoplan" #. module: account #: model:ir.model,name:account.model_account_invoice_refund @@ -580,7 +587,7 @@ msgstr "Ikke afstemt transaktioner" #: report:account.general.ledger:0 #: report:account.general.ledger_landscape:0 msgid "Counterpart" -msgstr "" +msgstr "Modpost" #. module: account #: view:account.fiscal.position:0 @@ -610,7 +617,7 @@ msgstr "" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "Decimal nøjagtighed ved posteringer" #. module: account #: selection:account.config.settings,period:0 @@ -627,7 +634,7 @@ msgstr "Sekvenser" #: field:account.financial.report,account_report_id:0 #: selection:account.financial.report,type:0 msgid "Report Value" -msgstr "" +msgstr "Rapport værdi" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:39 @@ -658,23 +665,24 @@ msgstr "" #: code:addons/account/wizard/account_change_currency.py:70 #, python-format msgid "Current currency is not configured properly." -msgstr "" +msgstr "Aktuel valuta er ikke konfigureret korrekt" #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Indtægts konto" #. module: account #: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" +"Ingen periode eller mere end en periode blev fundet for den anførte dato." #. module: account #: model:ir.model,name:account.model_report_account_type_sales msgid "Report of the Sales by Account Type" -msgstr "" +msgstr "Salgsrapport pr. konto type" #. module: account #: code:addons/account/account.py:3201 @@ -699,7 +707,7 @@ msgstr "" #: view:account.period:0 #: view:account.period.close:0 msgid "Close Period" -msgstr "" +msgstr "Luk periode" #. module: account #: model:ir.model,name:account.model_account_common_partner_report @@ -709,12 +717,12 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,period_id:0 msgid "Opening Entries Period" -msgstr "" +msgstr "Åbnings periode" #. module: account #: model:ir.model,name:account.model_account_journal_period msgid "Journal Period" -msgstr "" +msgstr "Kladde periode" #. module: account #: constraint:account.move:0 @@ -741,17 +749,17 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" -msgstr "" +msgstr "Debitor konti" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "Opsæt firmaets bank konti" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Opret kreditnota" #. module: account #: constraint:account.move.line:0 @@ -763,12 +771,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_report_general_ledger msgid "General Ledger Report" -msgstr "" +msgstr "Finans rapport" #. module: account #: view:account.invoice:0 msgid "Re-Open" -msgstr "" +msgstr "Gen-åben" #. module: account #: view:account.use.model:0 @@ -779,12 +787,12 @@ msgstr "" #: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." -msgstr "" +msgstr "Faktura delvist betalt: %s%s of %s%s (%s%s remaining)." #. module: account #: view:account.invoice:0 msgid "Print Invoice" -msgstr "" +msgstr "Udskriv faktura" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:111 @@ -803,12 +811,12 @@ msgstr "" #: selection:account.payment.term.line,value:0 #: selection:account.tax.template,type:0 msgid "Percent" -msgstr "" +msgstr "Procent" #. module: account #: model:ir.ui.menu,name:account.menu_finance_charts msgid "Charts" -msgstr "" +msgstr "Oversigter" #. module: account #: code:addons/account/project/wizard/project_account_analytic_line.py:47 @@ -820,12 +828,12 @@ msgstr "" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "" +msgstr "Krediterings metode" #. module: account #: model:ir.ui.menu,name:account.menu_account_report msgid "Financial Report" -msgstr "" +msgstr "Finans rapport" #. module: account #: view:account.analytic.account:0 @@ -842,7 +850,7 @@ msgstr "" #: xsl:account.transfer:0 #: field:report.invoice.created,type:0 msgid "Type" -msgstr "" +msgstr "Type" #. module: account #: code:addons/account/account_invoice.py:826 @@ -850,7 +858,7 @@ msgstr "" msgid "" "Taxes are missing!\n" "Click on compute button." -msgstr "" +msgstr "Moms mangler" #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -860,35 +868,35 @@ msgstr "" #. module: account #: help:account.invoice,reference:0 msgid "The partner reference of this invoice." -msgstr "" +msgstr "Partner reference for denne faktura" #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "" +msgstr "Leverandør fakturaer og -kreditnotaer" #. module: account #: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "Postering er allerede udlignet" #. module: account #: view:account.move.line.unreconcile.select:0 #: view:account.unreconcile.reconcile:0 #: model:ir.model,name:account.model_account_move_line_unreconcile_select msgid "Unreconciliation" -msgstr "" +msgstr "af-udligning" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "" +msgstr "Konto i analytisk journal" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Send pr. e-mail" #. module: account #: help:account.central.journal,amount_currency:0 @@ -908,7 +916,7 @@ msgstr "" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Konto kode og navn" #. module: account #: selection:account.entries.report,month:0 @@ -917,12 +925,12 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "September" -msgstr "" +msgstr "September" #. module: account #: selection:account.subscription,period_type:0 msgid "days" -msgstr "" +msgstr "dage" #. module: account #: help:account.account.template,nocreate:0 @@ -957,24 +965,24 @@ msgstr "" #: view:account.payment.term:0 #: field:account.payment.term.line,value:0 msgid "Computation" -msgstr "" +msgstr "Beregning" #. module: account #: field:account.journal.cashbox.line,pieces:0 msgid "Values" -msgstr "" +msgstr "Værdier" #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_chart #: model:ir.actions.act_window,name:account.action_tax_code_tree #: model:ir.ui.menu,name:account.menu_action_tax_code_tree msgid "Chart of Taxes" -msgstr "" +msgstr "Moms oversigt" #. module: account #: view:account.fiscalyear:0 msgid "Create 3 Months Periods" -msgstr "" +msgstr "Opret 3 måneders perioder" #. module: account #: report:account.overdue:0 @@ -984,25 +992,25 @@ msgstr "Forfalder" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "" +msgstr "Indkøbs journal" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "" +msgstr "Faktura betalt" #. module: account #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Approve" -msgstr "" +msgstr "Godkende" #. module: account #: view:account.invoice:0 #: view:account.move:0 #: view:report.invoice.created:0 msgid "Total Amount" -msgstr "" +msgstr "Totalt beløb" #. module: account #: help:account.invoice,supplier_invoice_number:0 @@ -1014,14 +1022,14 @@ msgstr "" #: selection:account.account.template,type:0 #: selection:account.entries.report,type:0 msgid "Consolidation" -msgstr "" +msgstr "Konsolidering" #. module: account #: model:account.account.type,name:account.data_account_type_liability #: model:account.financial.report,name:account.account_financial_report_liability0 #: model:account.financial.report,name:account.account_financial_report_liabilitysum0 msgid "Liability" -msgstr "" +msgstr "Gæld" #. module: account #: code:addons/account/account_invoice.py:899 @@ -1032,7 +1040,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Udvidede filtre" #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal @@ -1042,17 +1050,17 @@ msgstr "" #. module: account #: selection:account.journal,type:0 msgid "Sale Refund" -msgstr "" +msgstr "Salgs kreditnota" #. module: account #: model:process.node,note:account.process_node_accountingstatemententries0 msgid "Bank statement" -msgstr "" +msgstr "Bank kontoudtog" #. module: account #: field:account.analytic.line,move_id:0 msgid "Move Line" -msgstr "" +msgstr "Flyt linie" #. module: account #: help:account.move.line,tax_amount:0 @@ -1065,7 +1073,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Purchases" -msgstr "" +msgstr "Indkøb" #. module: account #: field:account.model,lines_id:0 @@ -1087,12 +1095,12 @@ msgstr "" #: report:account.partner.balance:0 #: field:account.period,code:0 msgid "Code" -msgstr "" +msgstr "Kode" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Funktionalitet" #. module: account #: code:addons/account/account.py:2346 @@ -1102,7 +1110,7 @@ msgstr "" #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" -msgstr "" +msgstr "Ingen analytisk journal" #. module: account #: report:account.partner.balance:0 @@ -1110,7 +1118,7 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance #: model:ir.ui.menu,name:account.menu_account_partner_balance_report msgid "Partner Balance" -msgstr "" +msgstr "Partner balance" #. module: account #: model:ir.actions.act_window,help:account.action_account_gain_loss @@ -1132,12 +1140,12 @@ msgstr "" #. module: account #: field:account.bank.accounts.wizard,acc_name:0 msgid "Account Name." -msgstr "" +msgstr "Konto navn" #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "" +msgstr "Åbning med sidste afslutnings balance" #. module: account #: help:account.tax.code,notprintable:0 @@ -1149,17 +1157,17 @@ msgstr "" #. module: account #: field:report.account.receivable,name:0 msgid "Week of Year" -msgstr "" +msgstr "Uge i året" #. module: account #: field:account.report.general.ledger,landscape:0 msgid "Landscape Mode" -msgstr "" +msgstr "Liggende" #. module: account #: help:account.fiscalyear.close,fy_id:0 msgid "Select a Fiscal year to close" -msgstr "" +msgstr "Vælg regnskabsår der skal lukkes" #. module: account #: help:account.account.template,user_type:0 @@ -1171,7 +1179,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "Kreditering " #. module: account #: code:addons/account/account_analytic_line.py:90 @@ -1182,7 +1190,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Applicability Options" -msgstr "" +msgstr "Anvendeligheds muligheder" #. module: account #: report:account.partner.balance:0 @@ -1194,12 +1202,12 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_view_bank_statement_tree #: model:ir.ui.menu,name:account.journal_cash_move_lines msgid "Cash Registers" -msgstr "" +msgstr "Kontant kasser" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Salgs krediteringsjournal" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1225,22 +1233,22 @@ msgstr "" #: code:addons/account/account.py:3092 #, python-format msgid "Bank" -msgstr "" +msgstr "Bank" #. module: account #: field:account.period,date_start:0 msgid "Start of Period" -msgstr "" +msgstr "Start på periode" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Krediteringer" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 msgid "Confirm statement" -msgstr "" +msgstr "Bekræft opgørelse" #. module: account #: view:account.tax:0 @@ -1258,7 +1266,7 @@ msgstr "" #: field:account.fiscal.position.tax,tax_dest_id:0 #: field:account.fiscal.position.tax.template,tax_dest_id:0 msgid "Replacement Tax" -msgstr "" +msgstr "Erstatnings moms" #. module: account #: selection:account.move.line,centralisation:0 @@ -1269,7 +1277,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_tax_code_template_form #: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form msgid "Tax Code Templates" -msgstr "" +msgstr "Moms skabeloner" #. module: account #: constraint:account.move.line:0 @@ -1281,17 +1289,17 @@ msgstr "" #. module: account #: view:account.invoice.cancel:0 msgid "Cancel Invoices" -msgstr "" +msgstr "Annnulér fakturaer" #. module: account #: help:account.journal,code:0 msgid "The code will be displayed on reports." -msgstr "" +msgstr "Koden vises i rapporter" #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "" +msgstr "Moms i indkøb" #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1300,18 +1308,18 @@ msgstr "" #: field:account.tax.template,tax_code_id:0 #: model:ir.model,name:account.model_account_tax_code msgid "Tax Code" -msgstr "" +msgstr "Momskode" #. module: account #: field:account.account,currency_mode:0 msgid "Outgoing Currencies Rate" -msgstr "" +msgstr "Valutakurs-princip" #. module: account #: view:account.analytic.account:0 #: field:account.config.settings,chart_template_id:0 msgid "Template" -msgstr "" +msgstr "Skabelon" #. module: account #: selection:account.analytic.journal,type:0 @@ -1346,7 +1354,7 @@ msgstr "" #: view:account.analytic.line:0 #: view:account.journal:0 msgid "Others" -msgstr "" +msgstr "Øvrige" #. module: account #: view:account.subscription:0 @@ -1379,25 +1387,25 @@ msgstr "" #: model:ir.model,name:account.model_account_account #: field:report.account.sales,account_id:0 msgid "Account" -msgstr "" +msgstr "Konto" #. module: account #: field:account.tax,include_base_amount:0 msgid "Included in base amount" -msgstr "" +msgstr "Inkluderet i basis-beløb" #. module: account #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.action_account_entries_report_all #: model:ir.ui.menu,name:account.menu_action_account_entries_report_all msgid "Entries Analysis" -msgstr "" +msgstr "Posterings analyse" #. module: account #: field:account.account,level:0 #: field:account.financial.report,level:0 msgid "Level" -msgstr "" +msgstr "Niveau" #. module: account #: code:addons/account/wizard/account_change_currency.py:38 @@ -1417,19 +1425,19 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_tax_report #: model:ir.ui.menu,name:account.next_id_27 msgid "Taxes" -msgstr "" +msgstr "Afgifter/moms" #. module: account #: code:addons/account/wizard/account_financial_report.py:70 #, python-format msgid "Select a starting and an ending period" -msgstr "" +msgstr "Vælg en start og slut periode" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitandloss0 #: model:ir.actions.act_window,name:account.action_account_report_pl msgid "Profit and Loss" -msgstr "" +msgstr "Resultatopgørelse/drift" #. module: account #: model:ir.model,name:account.model_account_account_template @@ -1439,57 +1447,57 @@ msgstr "Skablon for kontoplan" #. module: account #: view:account.tax.code.template:0 msgid "Search tax template" -msgstr "" +msgstr "Søg momsskabelon" #. module: account #: view:account.move.reconcile:0 #: model:ir.actions.act_window,name:account.action_account_reconcile_select #: model:ir.actions.act_window,name:account.action_view_account_move_line_reconcile msgid "Reconcile Entries" -msgstr "" +msgstr "Udlign posteringer" #. module: account #: model:ir.actions.report.xml,name:account.account_overdue #: view:res.company:0 msgid "Overdue Payments" -msgstr "" +msgstr "Forfaldne betalinger" #. module: account #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Initial Balance" -msgstr "" +msgstr "Udgangsbalance" #. module: account #: view:account.invoice:0 msgid "Reset to Draft" -msgstr "" +msgstr "Kør tilbage til kladde" #. module: account #: view:account.aged.trial.balance:0 #: view:account.common.report:0 msgid "Report Options" -msgstr "" +msgstr "Rapport optioner" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "Regnskabsår til lukning" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 msgid "Invoice sequence" -msgstr "" +msgstr "Faktura bilagsnummer" #. module: account #: model:ir.model,name:account.model_account_entries_report msgid "Journal Items Analysis" -msgstr "" +msgstr "Journal posteringer analyse" #. module: account #: model:ir.ui.menu,name:account.next_id_22 msgid "Partners" -msgstr "" +msgstr "Partnere" #. module: account #: help:account.bank.statement,state:0 @@ -1502,7 +1510,7 @@ msgstr "" #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "Faktura status" #. module: account #: view:account.bank.statement:0 @@ -1511,12 +1519,12 @@ msgstr "" #: model:process.node,name:account.process_node_bankstatement0 #: model:process.node,name:account.process_node_supplierbankstatement0 msgid "Bank Statement" -msgstr "" +msgstr "Bank kontoudtog" #. module: account #: field:res.partner,property_account_receivable:0 msgid "Account Receivable" -msgstr "" +msgstr "Tigodehavende konto" #. module: account #: code:addons/account/account.py:612 @@ -1547,7 +1555,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Search Taxes" -msgstr "" +msgstr "Søg moms/afgifter" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger @@ -1557,7 +1565,7 @@ msgstr "" #. module: account #: view:account.model:0 msgid "Create entries" -msgstr "" +msgstr "Opret posteringer" #. module: account #: field:account.entries.report,nbr:0 @@ -1567,7 +1575,7 @@ msgstr "" #. module: account #: field:account.automatic.reconcile,max_amount:0 msgid "Maximum write-off amount" -msgstr "" +msgstr "Max. afskrivningsbeløb" #. module: account #. openerp-web @@ -1595,22 +1603,22 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:164 #, python-format msgid "Not implemented." -msgstr "" +msgstr "Ikke implementeret" #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "" +msgstr "Kreditnota" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "" +msgstr "E-fakturaer og betalinger" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 msgid "Cost Ledger for Period" -msgstr "" +msgstr "Omkostningsregnskab for perioden" #. module: account #: view:account.entries.report:0 @@ -1633,7 +1641,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree4 #: model:ir.ui.menu,name:account.menu_action_invoice_tree4 msgid "Supplier Refunds" -msgstr "" +msgstr "Leverandør kreditnotaer" #. module: account #: field:account.tax.code,code:0 @@ -1655,59 +1663,59 @@ msgstr "" #: selection:account.fiscalyear,state:0 #: selection:account.period,state:0 msgid "Closed" -msgstr "" +msgstr "Lukket" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries msgid "Recurring Entries" -msgstr "" +msgstr "Gentagne posteringer" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template msgid "Template for Fiscal Position" -msgstr "" +msgstr "Skabelon for finansiel position" #. module: account #: view:account.subscription:0 msgid "Recurring" -msgstr "" +msgstr "Tilbagevendende" #. module: account #: field:account.journal,groups_id:0 msgid "Groups" -msgstr "" +msgstr "Grupper" #. module: account #: field:report.invoice.created,amount_untaxed:0 msgid "Untaxed" -msgstr "" +msgstr "uden moms" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "Udvidede indstillinger" #. module: account #: view:account.bank.statement:0 msgid "Search Bank Statements" -msgstr "" +msgstr "Søg i bank kontoudtog" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "" +msgstr "Ikke-posterede journalposteringer" #. module: account #: view:account.chart.template:0 #: field:account.chart.template,property_account_payable:0 msgid "Payable Account" -msgstr "" +msgstr "Kreditor konto" #. module: account #: field:account.tax,account_paid_id:0 #: field:account.tax.template,account_paid_id:0 msgid "Refund Tax Account" -msgstr "" +msgstr "Indgående moms konto" #. module: account #: model:ir.model,name:account.model_ir_sequence @@ -1718,24 +1726,24 @@ msgstr "" #: view:account.bank.statement:0 #: field:account.bank.statement,line_ids:0 msgid "Statement lines" -msgstr "" +msgstr "Udtogs linier" #. module: account #: report:account.analytic.account.cost_ledger:0 msgid "Date/Code" -msgstr "" +msgstr "Dato/kode" #. module: account #: field:account.analytic.line,general_account_id:0 #: view:analytic.entries.report:0 #: field:analytic.entries.report,general_account_id:0 msgid "General Account" -msgstr "" +msgstr "Finans konto" #. module: account #: field:res.partner,debit_limit:0 msgid "Payable Limit" -msgstr "" +msgstr "Betalings max." #. module: account #: model:ir.actions.act_window,help:account.action_account_type_form @@ -1765,28 +1773,28 @@ msgstr "" #: model:res.request.link,name:account.req_link_invoice #, python-format msgid "Invoice" -msgstr "" +msgstr "Faktura" #. module: account #: field:account.move,balance:0 msgid "balance" -msgstr "" +msgstr "balance" #. module: account #: model:process.node,note:account.process_node_analytic0 #: model:process.node,note:account.process_node_analyticcost0 msgid "Analytic costs to invoice" -msgstr "" +msgstr "Analytisk omkostning til fakturering" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequence" -msgstr "" +msgstr "Finansår nummerserie" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Analytisk regnskab" #. module: account #: report:account.overdue:0 @@ -1810,24 +1818,24 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all #: view:report.account_type.sales:0 msgid "Sales by Account Type" -msgstr "" +msgstr "Salg pr. kontotype" #. module: account #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 dage" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing msgid "Invoicing" -msgstr "" +msgstr "Fakturering" #. module: account #: code:addons/account/report/account_partner_balance.py:115 #, python-format msgid "Unknown Partner" -msgstr "" +msgstr "Ukendt partner" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:103 @@ -1841,12 +1849,12 @@ msgstr "" #: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." -msgstr "" +msgstr "Nogle posteringer er allerede udlignet" #. module: account #: field:account.tax.code,sum:0 msgid "Year Sum" -msgstr "" +msgstr "Års sum" #. module: account #: view:account.change.currency:0 @@ -1863,7 +1871,7 @@ msgstr "" #. module: account #: view:account.analytic.account:0 msgid "Pending Accounts" -msgstr "" +msgstr "Konti afventende godkendelse" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -1874,7 +1882,7 @@ msgstr "" #: report:account.journal.period.print.sale.purchase:0 #: view:account.tax.template:0 msgid "Tax Declaration" -msgstr "" +msgstr "Moms opgørelse" #. module: account #: help:account.journal.period,active:0 @@ -1886,28 +1894,28 @@ msgstr "" #. module: account #: field:account.report.general.ledger,sortby:0 msgid "Sort by" -msgstr "" +msgstr "Sorter efter" #. module: account #: model:ir.actions.act_window,name:account.act_account_partner_account_move_all msgid "Receivables & Payables" -msgstr "" +msgstr "Kreditorer og debitorer" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "" +msgstr "Håndtér betalinger" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "Varighed" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,last_closing_balance:0 msgid "Last Closing Balance" -msgstr "" +msgstr "Sidste afslutningsbalance" #. module: account #: model:ir.model,name:account.model_account_common_journal_report @@ -1917,17 +1925,17 @@ msgstr "" #. module: account #: selection:account.partner.balance,display_partner:0 msgid "All Partners" -msgstr "" +msgstr "Alle partnere" #. module: account #: view:account.analytic.chart:0 msgid "Analytic Account Charts" -msgstr "" +msgstr "Analyse konti oversigter" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "" +msgstr "Kunde ref.:" #. module: account #: help:account.tax,base_code_id:0 @@ -1939,38 +1947,38 @@ msgstr "" #: help:account.tax.template,ref_tax_code_id:0 #: help:account.tax.template,tax_code_id:0 msgid "Use this code for the tax declaration." -msgstr "" +msgstr "Brug denne kode for momsopgørelse" #. module: account #: help:account.period,special:0 msgid "These periods can overlap." -msgstr "" +msgstr "Disse perioder kan overlappe." #. module: account #: model:process.node,name:account.process_node_draftstatement0 msgid "Draft statement" -msgstr "" +msgstr "Kladde kontoudtog" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "" +msgstr "Faktura godkendt" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "Betal dine leverandører pr. check" #. module: account #: field:account.move.line.reconcile,credit:0 msgid "Credit amount" -msgstr "" +msgstr "Betalings max." #. module: account #: field:account.bank.statement,message_ids:0 #: field:account.invoice,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Beskeder" #. module: account #: view:account.vat.declaration:0 @@ -2037,7 +2045,7 @@ msgstr "" #: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" -msgstr "" +msgstr "Fejl!" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree2 @@ -2063,17 +2071,17 @@ msgstr "Forkert kredit eller debet værdi i posteringerne!" #: model:ir.actions.act_window,name:account.action_account_invoice_report_all #: model:ir.ui.menu,name:account.menu_action_account_invoice_report_all msgid "Invoices Analysis" -msgstr "" +msgstr "Faktura analyse" #. module: account #: model:ir.model,name:account.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Wizard til at skrive Email" #. module: account #: model:ir.model,name:account.model_account_period_close msgid "period close" -msgstr "" +msgstr "Periode afslutning" #. module: account #: code:addons/account/account.py:1058 @@ -2086,12 +2094,12 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form msgid "Entries By Line" -msgstr "" +msgstr "Posteringer pr. linie" #. module: account #: field:account.vat.declaration,based_on:0 msgid "Based on" -msgstr "" +msgstr "Baseret på" #. module: account #: model:ir.actions.act_window,help:account.action_bank_statement_tree @@ -2114,19 +2122,19 @@ msgstr "" #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "Standard firma valuta" #. module: account #: field:account.invoice,move_id:0 #: field:account.invoice,move_name:0 #: field:account.move.line,move_id:0 msgid "Journal Entry" -msgstr "" +msgstr "Postering" #. module: account #: view:account.invoice:0 msgid "Unpaid" -msgstr "" +msgstr "Ubetalt" #. module: account #: view:account.treasury.report:0 @@ -2134,18 +2142,18 @@ msgstr "" #: model:ir.model,name:account.model_account_treasury_report #: model:ir.ui.menu,name:account.menu_action_account_treasury_report_all msgid "Treasury Analysis" -msgstr "" +msgstr "Skatte analyse" #. module: account #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase msgid "Sale/Purchase Journal" -msgstr "" +msgstr "Salgs-/indkøbs journal" #. module: account #: view:account.analytic.account:0 #: field:account.invoice.tax,account_analytic_id:0 msgid "Analytic account" -msgstr "" +msgstr "Analytisk konto" #. module: account #: code:addons/account/account_bank_statement.py:406 @@ -2156,24 +2164,24 @@ msgstr "" #. module: account #: selection:account.entries.report,move_line_state:0 msgid "Valid" -msgstr "" +msgstr "Gyldig" #. module: account #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Followers" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal #: model:ir.model,name:account.model_account_print_journal msgid "Account Print Journal" -msgstr "" +msgstr "Print konto journal" #. module: account #: model:ir.model,name:account.model_product_category msgid "Product Category" -msgstr "" +msgstr "Produkt katagori" #. module: account #: code:addons/account/account.py:656 @@ -2186,19 +2194,19 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance msgid "Account Aged Trial balance Report" -msgstr "" +msgstr "Aldersopdelt råbalance" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close Fiscal Year" -msgstr "" +msgstr "Luk regnskabsår" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "" +msgstr "Journal" #. module: account #: sql_constraint:account.fiscal.position.tax:0 @@ -2209,18 +2217,18 @@ msgstr "" #: view:account.tax:0 #: view:account.tax.template:0 msgid "Tax Definition" -msgstr "" +msgstr "Moms definition" #. module: account #: view:account.config.settings:0 #: model:ir.actions.act_window,name:account.action_account_config msgid "Configure Accounting" -msgstr "" +msgstr "Konfigurér Regnskab" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference Unit of Measure" -msgstr "" +msgstr "Reference enhed" #. module: account #: help:account.journal,allow_date:0 @@ -2234,12 +2242,12 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 #, python-format msgid "Good job!" -msgstr "" +msgstr "Godt gået!" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "Styring af aktiver" #. module: account #: view:account.account:0 @@ -2253,7 +2261,7 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" -msgstr "" +msgstr "Leverandør konti" #. module: account #: constraint:account.move.line:0 @@ -2267,7 +2275,7 @@ msgstr "" #: view:account.invoice:0 #: view:report.invoice.created:0 msgid "Untaxed Amount" -msgstr "" +msgstr "Beløb før moms" #. module: account #: help:account.tax,active:0 @@ -2279,7 +2287,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "" +msgstr "Analytiske posteringer relateret til salgs-journal" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -2304,18 +2312,18 @@ msgstr "" #: selection:account.subscription,state:0 #: selection:report.invoice.created,state:0 msgid "Draft" -msgstr "" +msgstr "Kladde" #. module: account #: field:account.move.reconcile,line_partial_ids:0 msgid "Partial Entry lines" -msgstr "" +msgstr "Delvise indtastninger" #. module: account #: view:account.fiscalyear:0 #: field:account.treasury.report,fiscalyear_id:0 msgid "Fiscalyear" -msgstr "" +msgstr "Regnskabsår" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:53 @@ -2327,17 +2335,17 @@ msgstr "" #: view:account.journal.select:0 #: view:project.account.analytic.line:0 msgid "Open Entries" -msgstr "" +msgstr "Åbne posteringer" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "" +msgstr "Næste leverandør kreditnota nummer" #. module: account #: field:account.automatic.reconcile,account_ids:0 msgid "Accounts to Reconcile" -msgstr "" +msgstr "Konti til udligning/afstemning" #. module: account #: model:process.transition,note:account.process_transition_filestatement0 @@ -2347,7 +2355,7 @@ msgstr "" #. module: account #: model:process.node,name:account.process_node_importinvoice0 msgid "Import from invoice" -msgstr "" +msgstr "Import fra faktura" #. module: account #: selection:account.entries.report,month:0 @@ -2356,23 +2364,23 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "January" -msgstr "" +msgstr "Januar" #. module: account #: view:account.entries.report:0 msgid "This F.Year" -msgstr "" +msgstr "Dette finansår" #. module: account #: view:account.tax.chart:0 msgid "Account tax charts" -msgstr "" +msgstr "Momsoversigt konto" #. module: account #: model:account.payment.term,name:account.account_payment_term_net #: model:account.payment.term,note:account.account_payment_term_net msgid "30 Net Days" -msgstr "" +msgstr "30 dage netto" #. module: account #: code:addons/account/account_cash_statement.py:256 @@ -2383,7 +2391,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "" +msgstr "Tjek total på leverandør fakturaer" #. module: account #: selection:account.invoice,state:0 @@ -2391,7 +2399,7 @@ msgstr "" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Pro-forma" -msgstr "" +msgstr "Proforma" #. module: account #: help:account.account.template,type:0 @@ -2407,12 +2415,12 @@ msgstr "" #. module: account #: view:account.chart.template:0 msgid "Search Chart of Account Templates" -msgstr "" +msgstr "Søg i konto-oversigter" #. module: account #: report:account.invoice:0 msgid "Customer Code" -msgstr "" +msgstr "Kundekode" #. module: account #: view:account.account.type:0 @@ -2429,26 +2437,26 @@ msgstr "" #: field:analytic.entries.report,name:0 #: field:report.invoice.created,name:0 msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. module: account #: field:account.tax,price_include:0 #: field:account.tax.template,price_include:0 msgid "Tax Included in Price" -msgstr "" +msgstr "Moms inkluderet i prisen" #. module: account #: view:account.subscription:0 #: selection:account.subscription,state:0 msgid "Running" -msgstr "" +msgstr "Kører" #. module: account #: view:account.chart.template:0 #: field:product.category,property_account_income_categ:0 #: field:product.template,property_account_income:0 msgid "Income Account" -msgstr "" +msgstr "Omsætnings konto" #. module: account #: help:account.config.settings,default_sale_tax:0 @@ -2460,12 +2468,12 @@ msgstr "" #: report:account.journal.period.print:0 #: report:account.journal.period.print.sale.purchase:0 msgid "Entries Sorted By" -msgstr "" +msgstr "Posteringer sorteret efter" #. module: account #: field:account.change.currency,currency_id:0 msgid "Change to" -msgstr "" +msgstr "Ændre til" #. module: account #: view:account.entries.report:0 @@ -2475,7 +2483,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_product_template msgid "Product Template" -msgstr "" +msgstr "Produktskabelon" #. module: account #: report:account.account.balance:0 @@ -2515,7 +2523,7 @@ msgstr "" #: field:accounting.report,fiscalyear_id_cmp:0 #: model:ir.model,name:account.model_account_fiscalyear msgid "Fiscal Year" -msgstr "" +msgstr "Finans år" #. module: account #: help:account.aged.trial.balance,fiscalyear_id:0 @@ -2552,7 +2560,7 @@ msgstr "" #. module: account #: view:account.addtmpl.wizard:0 msgid "Create an Account Based on this Template" -msgstr "" +msgstr "Opret en konto med udgangspunkt i denne skabelon" #. module: account #: code:addons/account/account_invoice.py:933 @@ -2568,12 +2576,12 @@ msgstr "" #: view:account.move:0 #: model:ir.model,name:account.model_account_move msgid "Account Entry" -msgstr "" +msgstr "Konto indtastning" #. module: account #: field:account.sequence.fiscalyear,sequence_main_id:0 msgid "Main Sequence" -msgstr "" +msgstr "Hovedrækkefølge" #. module: account #: code:addons/account/account_bank_statement.py:478 @@ -2591,13 +2599,13 @@ msgstr "" #: field:account.payment.term.line,payment_id:0 #: model:ir.model,name:account.model_account_payment_term msgid "Payment Term" -msgstr "" +msgstr "Betalingsbetingelse" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_form #: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form msgid "Fiscal Positions" -msgstr "" +msgstr "Regnskabs positioner" #. module: account #: code:addons/account/account_move_line.py:579 @@ -2613,33 +2621,33 @@ msgstr "" #. module: account #: view:account.common.report:0 msgid "Filters" -msgstr "" +msgstr "Filtre" #. module: account #: model:process.node,note:account.process_node_draftinvoices0 #: model:process.node,note:account.process_node_supplierdraftinvoices0 msgid "Draft state of an invoice" -msgstr "" +msgstr "Faktura i kladde-stadie" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Konto egenskaber" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Opret en kladde-kreditnota" #. module: account #: view:account.partner.reconcile.process:0 msgid "Partner Reconciliation" -msgstr "" +msgstr "Partner afstemning" #. module: account #: view:account.analytic.line:0 msgid "Fin. Account" -msgstr "" +msgstr "Finanskonto" #. module: account #: field:account.tax,tax_code_id:0 @@ -2656,7 +2664,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Unreconciled entries" -msgstr "" +msgstr "Ikke-udlignede posteringer" #. module: account #: field:account.invoice.tax,base_code_id:0 @@ -2686,7 +2694,7 @@ msgstr "Debet centralisering." #: view:account.invoice.confirm:0 #: model:ir.actions.act_window,name:account.action_account_invoice_confirm msgid "Confirm Draft Invoices" -msgstr "" +msgstr "Godkend fakturakladder" #. module: account #: field:account.entries.report,day:0 @@ -2695,12 +2703,12 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,day:0 msgid "Day" -msgstr "" +msgstr "Dag" #. module: account #: model:ir.actions.act_window,name:account.act_account_renew_view msgid "Accounts to Renew" -msgstr "" +msgstr "Konti der skal fornys" #. module: account #: model:ir.model,name:account.model_account_model_line @@ -2721,7 +2729,7 @@ msgstr "Leverandør moms" #. module: account #: view:res.partner:0 msgid "Bank Details" -msgstr "" +msgstr "Bankoplysninger" #. module: account #: model:ir.actions.act_window,help:account.action_move_journal_line @@ -2760,7 +2768,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "" +msgstr "Næste leverandør fakturanummer" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -2770,7 +2778,7 @@ msgstr "Vælg periode" #. module: account #: model:ir.ui.menu,name:account.menu_account_pp_statements msgid "Statements" -msgstr "" +msgstr "Kontoudtog" #. module: account #: report:account.analytic.account.journal:0 @@ -2791,7 +2799,7 @@ msgstr "" #: view:account.tax:0 #: model:ir.model,name:account.model_account_tax msgid "Tax" -msgstr "" +msgstr "Moms" #. module: account #: view:account.analytic.account:0 @@ -2803,13 +2811,13 @@ msgstr "" #: field:account.move.line,analytic_account_id:0 #: field:account.move.line.reconcile.writeoff,analytic_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analyse konto" #. module: account #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "Standard indkøbsmoms" #. module: account #: view:account.account:0 @@ -2822,7 +2830,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_account_form #: model:ir.ui.menu,name:account.menu_analytic msgid "Accounts" -msgstr "" +msgstr "Konti" #. module: account #: code:addons/account/account.py:3541 @@ -2835,7 +2843,7 @@ msgstr "" #: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Konfigurationsfejl!" #. module: account #: code:addons/account/account_bank_statement.py:434 @@ -2847,7 +2855,7 @@ msgstr "" #: field:account.invoice.report,price_average:0 #: field:account.invoice.report,user_currency_price_average:0 msgid "Average Price" -msgstr "" +msgstr "Gennemsnits pris" #. module: account #: report:account.overdue:0 @@ -2863,7 +2871,7 @@ msgstr "" #. module: account #: view:res.partner.bank:0 msgid "Accounting Information" -msgstr "" +msgstr "Regnskabs information" #. module: account #: view:account.tax:0 @@ -2894,7 +2902,7 @@ msgstr "Ref" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "" +msgstr "Indkøbs moms" #. module: account #: help:account.move.line,tax_code_id:0 @@ -2910,12 +2918,12 @@ msgstr "" #: model:process.node,note:account.process_node_reconciliation0 #: model:process.node,note:account.process_node_supplierreconciliation0 msgid "Comparison between accounting and payment entries" -msgstr "Sammenligning mellem bogførings- og betalingsindtastninger" +msgstr "Sammenligning mellem regnskab- og betalingsindtastninger" #. module: account #: model:ir.ui.menu,name:account.menu_automatic_reconcile msgid "Automatic Reconciliation" -msgstr "" +msgstr "Automatisk udligning" #. module: account #: field:account.invoice,reconciled:0 @@ -2932,7 +2940,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_bank_statement_tree #: model:ir.ui.menu,name:account.menu_bank_statement_tree msgid "Bank Statements" -msgstr "" +msgstr "Bank kontoudtog" #. module: account #: model:ir.actions.act_window,help:account.action_account_fiscalyear @@ -2960,31 +2968,31 @@ msgstr "" #: view:account.move.line:0 #: view:accounting.report:0 msgid "Dates" -msgstr "" +msgstr "Datoer" #. module: account #: field:account.chart.template,parent_id:0 msgid "Parent Chart Template" -msgstr "" +msgstr "Hoved skabelon" #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 msgid "Parent Tax Account" -msgstr "" +msgstr "Hoved momskonto" #. module: account #: view:account.aged.trial.balance:0 #: model:ir.actions.act_window,name:account.action_account_aged_balance_view #: model:ir.ui.menu,name:account.menu_aged_trial_balance msgid "Aged Partner Balance" -msgstr "" +msgstr "Aldersopdelt partner balance" #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries" -msgstr "" +msgstr "Regnskabs indtastninger" #. module: account #: constraint:account.move.line:0 @@ -3009,13 +3017,13 @@ msgstr "" #. module: account #: field:account.move.line.reconcile,writeoff:0 msgid "Write-Off amount" -msgstr "" +msgstr "Tab/vind konto" #. module: account #: field:account.bank.statement,message_unread:0 #: field:account.invoice,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Ulæste beskeder" #. module: account #: code:addons/account/wizard/account_invoice_state.py:44 @@ -3036,7 +3044,7 @@ msgstr "" #: view:report.account.sales:0 #: view:report.account_type.sales:0 msgid "Sales by Account" -msgstr "" +msgstr "Salg pr. konto" #. module: account #: code:addons/account/account.py:1449 @@ -3047,12 +3055,12 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Accounting Period" -msgstr "" +msgstr "Regnskabs periode" #. module: account #: field:account.config.settings,sale_journal_id:0 msgid "Sale journal" -msgstr "" +msgstr "Salgs journal" #. module: account #: code:addons/account/account.py:2346 @@ -3082,18 +3090,18 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_tax_code_list #: model:ir.ui.menu,name:account.menu_action_tax_code_list msgid "Tax codes" -msgstr "" +msgstr "Moms koder" #. module: account #: view:account.account:0 msgid "Unrealized Gains and losses" -msgstr "" +msgstr "Urealisterede tab/vind" #. module: account #: model:ir.ui.menu,name:account.menu_account_customer #: model:ir.ui.menu,name:account.menu_finance_receivables msgid "Customers" -msgstr "" +msgstr "Kunder" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -3109,12 +3117,12 @@ msgstr "Periode til" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "August" -msgstr "" +msgstr "August" #. module: account #: field:accounting.report,debit_credit:0 msgid "Display Debit/Credit Columns" -msgstr "" +msgstr "Vis debit/kredit kolonner" #. module: account #: selection:account.entries.report,month:0 @@ -3123,7 +3131,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "October" -msgstr "" +msgstr "Oktober" #. module: account #: help:account.move.line,quantity:0 @@ -3136,7 +3144,7 @@ msgstr "" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Fjern udligning fra transaktioner" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 @@ -3148,13 +3156,13 @@ msgstr "" #: field:product.category,property_account_expense_categ:0 #: field:product.template,property_account_expense:0 msgid "Expense Account" -msgstr "" +msgstr "Udgifts konto" #. module: account #: field:account.bank.statement,message_summary:0 #: field:account.invoice,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Sammendrag" #. module: account #: help:account.invoice,period_id:0 @@ -3180,7 +3188,7 @@ msgstr "" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "" +msgstr "Standard salgsmoms" #. module: account #: help:account.model.line,date_maturity:0 @@ -3193,12 +3201,12 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_accounting msgid "Financial Accounting" -msgstr "Finans" +msgstr "Finans regnskab" #. module: account #: model:ir.ui.menu,name:account.menu_account_report_pl msgid "Profit And Loss" -msgstr "" +msgstr "Tab & vind" #. module: account #: view:account.fiscal.position:0 @@ -3212,7 +3220,7 @@ msgstr "" #: model:ir.model,name:account.model_account_fiscal_position #: field:res.partner,property_account_position:0 msgid "Fiscal Position" -msgstr "Nuværende position" +msgstr "Momskode" #. module: account #: code:addons/account/account_invoice.py:823 @@ -3231,7 +3239,7 @@ msgstr "En partner pr. side" #: field:account.account,child_parent_ids:0 #: field:account.account.template,child_parent_ids:0 msgid "Children" -msgstr "" +msgstr "Under-konti" #. module: account #: report:account.account.balance:0 @@ -3239,7 +3247,7 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_account_balance #: model:ir.ui.menu,name:account.menu_general_Balance_report msgid "Trial Balance" -msgstr "" +msgstr "Råbalance" #. module: account #: code:addons/account/account.py:431 @@ -3264,23 +3272,23 @@ msgstr "Vælg regnskabs år" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "" +msgstr "Datointerval" #. module: account #: view:account.period:0 msgid "Search Period" -msgstr "" +msgstr "Søg periode" #. module: account #: view:account.change.currency:0 msgid "Invoice Currency" -msgstr "" +msgstr "Faktura valuta" #. module: account #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "Konto rapporter" #. module: account #: field:account.payment.term,line_ids:0 @@ -3290,12 +3298,12 @@ msgstr "Betingelser" #. module: account #: field:account.chart.template,tax_template_ids:0 msgid "Tax Template List" -msgstr "" +msgstr "Moms skabelon liste" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "" +msgstr "Salgs/indkøbs journaler" #. module: account #: help:account.account,currency_mode:0 @@ -3328,33 +3336,33 @@ msgstr "Antal decimaler til brug for konto koden" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "Leverandør betalingsbetingelse" #. module: account #: view:account.fiscalyear:0 msgid "Search Fiscalyear" -msgstr "" +msgstr "Søg regnskabsår" #. module: account #: selection:account.tax,applicable_type:0 msgid "Always" -msgstr "" +msgstr "Altid" #. module: account #: field:account.config.settings,module_account_accountant:0 msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." -msgstr "" +msgstr "Komplette regnskabs faciliteter: Journaler, kontoplan, tab & vind" #. module: account #: view:account.analytic.line:0 msgid "Total Quantity" -msgstr "" +msgstr "Total antal/sum" #. module: account #: field:account.move.line.reconcile.writeoff,writeoff_acc_id:0 msgid "Write-Off account" -msgstr "" +msgstr "Tab/Vind konto" #. module: account #: field:account.model.line,model_id:0 @@ -3391,32 +3399,32 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Proforma Invoices" -msgstr "" +msgstr "Proforma fakturaer" #. module: account #: model:process.node,name:account.process_node_electronicfile0 msgid "Electronic File" -msgstr "" +msgstr "Elektronisk fil/arkiv" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Udlignings-reference" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 msgid "Company has a chart of accounts" -msgstr "" +msgstr "Firma har en kontoplan" #. module: account #: model:ir.model,name:account.model_account_tax_code_template msgid "Tax Code Template" -msgstr "" +msgstr "Momskode skabelon" #. module: account #: model:ir.model,name:account.model_account_partner_ledger msgid "Account Partner Ledger" -msgstr "" +msgstr "Partner finans konto" #. module: account #: model:email.template,body_html:account.email_template_edi_invoice @@ -3506,7 +3514,7 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Account Period" -msgstr "" +msgstr "Konto periode" #. module: account #: help:account.account,currency_id:0 @@ -3526,12 +3534,12 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_chart_template_form #: model:ir.ui.menu,name:account.menu_action_account_chart_template_form msgid "Chart of Accounts Templates" -msgstr "" +msgstr "Kontoplan skabeloner" #. module: account #: view:account.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Transaktioner" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile @@ -3589,12 +3597,12 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_journals #: model:ir.ui.menu,name:account.menu_journals_report msgid "Journals" -msgstr "" +msgstr "Journaler" #. module: account #: field:account.partner.reconcile.process,to_reconcile:0 msgid "Remaining Partners" -msgstr "" +msgstr "Tilbageværende partnere" #. module: account #: view:account.subscription:0 @@ -3618,12 +3626,12 @@ msgstr "Indløb" #: view:account.installer:0 #: view:wizard.multi.charts.accounts:0 msgid "Accounting Application Configuration" -msgstr "Regnskabsmodulets konfigurering" +msgstr "Opsætning af regnskabsmodulet" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration msgid "Account Tax Declaration" -msgstr "" +msgstr "konto momsopgørelse" #. module: account #: help:account.bank.statement,name:0 @@ -3646,26 +3654,26 @@ msgstr "" #: field:account.bank.statement,balance_start:0 #: field:account.treasury.report,starting_balance:0 msgid "Starting Balance" -msgstr "" +msgstr "Opstarts balance" #. module: account #: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" -msgstr "" +msgstr "Ingen partner angivet" #. module: account #: model:ir.actions.act_window,name:account.action_account_period_close #: model:ir.actions.act_window,name:account.action_account_period_tree #: model:ir.ui.menu,name:account.menu_action_account_period_close_tree msgid "Close a Period" -msgstr "" +msgstr "Luk en periode" #. module: account #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Åbnings subtotal" #. module: account #: constraint:account.move.line:0 @@ -3677,12 +3685,12 @@ msgstr "" #. module: account #: field:account.financial.report,display_detail:0 msgid "Display details" -msgstr "" +msgstr "Vis detaljer" #. module: account #: report:account.overdue:0 msgid "VAT:" -msgstr "" +msgstr "Moms" #. module: account #: help:account.analytic.line,amount_currency:0 @@ -3715,40 +3723,40 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile #: model:ir.actions.act_window,name:account.action_account_unreconcile_select msgid "Unreconcile Entries" -msgstr "" +msgstr "Uudlignede posteringer" #. module: account #: field:account.tax.code,notprintable:0 #: field:account.tax.code.template,notprintable:0 msgid "Not Printable in Invoice" -msgstr "" +msgstr "Ingen faktura der kan printes" #. module: account #: report:account.vat.declaration:0 #: field:account.vat.declaration,chart_tax_id:0 msgid "Chart of Tax" -msgstr "" +msgstr "moms oversigt" #. module: account #: view:account.journal:0 msgid "Search Account Journal" -msgstr "" +msgstr "Søg konto journal" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice msgid "Pending Invoice" -msgstr "" +msgstr "Afventende faktura" #. module: account #: view:account.invoice.report:0 #: selection:account.subscription,period_type:0 msgid "year" -msgstr "" +msgstr "år" #. module: account #: field:account.config.settings,date_start:0 msgid "Start date" -msgstr "" +msgstr "Startdato" #. module: account #: view:account.invoice.refund:0 @@ -3778,7 +3786,7 @@ msgstr "" #. module: account #: model:ir.actions.report.xml,name:account.account_transfers msgid "Transfers" -msgstr "" +msgstr "Overførsler" #. module: account #: field:account.config.settings,expects_chart_of_accounts:0 @@ -3788,7 +3796,7 @@ msgstr "" #. module: account #: view:account.chart:0 msgid "Account charts" -msgstr "" +msgstr "Konto oversigter" #. module: account #: view:cash.box.out:0 @@ -3799,7 +3807,7 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Tax Amount" -msgstr "" +msgstr "Momsbeløb" #. module: account #: view:account.move:0 @@ -3836,17 +3844,17 @@ msgstr "" #: view:account.invoice:0 #: model:process.node,name:account.process_node_draftinvoices0 msgid "Draft Invoice" -msgstr "" +msgstr "Proforma faktura" #. module: account #: view:account.config.settings:0 msgid "Options" -msgstr "" +msgstr "Optioner" #. module: account #: field:account.aged.trial.balance,period_length:0 msgid "Period Length (days)" -msgstr "" +msgstr "Perilde længde (dage)" #. module: account #: code:addons/account/account.py:1363 @@ -3859,7 +3867,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal msgid "Print Sale/Purchase Journal" -msgstr "" +msgstr "Udskriv salgs-/indkøbs journal" #. module: account #: view:account.installer:0 @@ -3870,7 +3878,7 @@ msgstr "Fortsæt" #: view:account.invoice.report:0 #: field:account.invoice.report,categ_id:0 msgid "Category of Product" -msgstr "" +msgstr "Produkt kategori" #. module: account #: code:addons/account/account.py:930 @@ -3879,12 +3887,14 @@ msgid "" "There is no fiscal year defined for this date.\n" "Please create one from the configuration of the accounting menu." msgstr "" +"Der er ikke oprettet nogen regnskabsperiode for denne dato.\n" +"Opret denne fra konfigureringen/opsætningen i regnskabs menuen." #. module: account #: view:account.addtmpl.wizard:0 #: model:ir.actions.act_window,name:account.action_account_addtmpl_wizard_form msgid "Create Account" -msgstr "" +msgstr "Opret konto" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:62 @@ -3895,17 +3905,17 @@ msgstr "" #. module: account #: field:account.invoice.tax,tax_amount:0 msgid "Tax Code Amount" -msgstr "" +msgstr "Momskode beløb" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "" +msgstr "Uudlignede posteringer" #. module: account #: selection:account.account.type,close_method:0 msgid "Detail" -msgstr "" +msgstr "Detalje" #. module: account #: help:account.config.settings,default_purchase_tax:0 @@ -3932,7 +3942,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_tree #: model:ir.ui.menu,name:account.menu_action_account_tree2 msgid "Chart of Accounts" -msgstr "Kontoplan" +msgstr "Posterings ark" #. module: account #: view:account.tax.chart:0 @@ -3947,7 +3957,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process msgid "Reconcilation Process partner by partner" -msgstr "" +msgstr "Udlignings proces partner for partner" #. module: account #: view:account.chart:0 @@ -3994,7 +4004,7 @@ msgstr "" #: selection:accounting.report,filter_cmp:0 #: field:analytic.entries.report,date:0 msgid "Date" -msgstr "" +msgstr "Dato" #. module: account #: view:account.move:0 @@ -4005,12 +4015,12 @@ msgstr "" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile" -msgstr "" +msgstr "Fjern udligning" #. module: account #: view:account.chart.template:0 msgid "Chart of Accounts Template" -msgstr "" +msgstr "Kontooversigt skabelon" #. module: account #: code:addons/account/account.py:2358 @@ -4035,7 +4045,7 @@ msgstr "Alle" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reporting_budgets msgid "Budgets" -msgstr "" +msgstr "Budgetter" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -4054,18 +4064,18 @@ msgstr "" #: selection:accounting.report,filter:0 #: selection:accounting.report,filter_cmp:0 msgid "No Filters" -msgstr "" +msgstr "Ingen filtre" #. module: account #: view:account.invoice.report:0 #: model:res.groups,name:account.group_proforma_invoices msgid "Pro-forma Invoices" -msgstr "" +msgstr "proforma fakturaer" #. module: account #: view:res.partner:0 msgid "History" -msgstr "" +msgstr "Historik" #. module: account #: help:account.tax,applicable_type:0 @@ -4078,7 +4088,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "Tjek totalen på leverandør fakturaer" #. module: account #: view:account.tax:0 @@ -4097,7 +4107,7 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,product_qty:0 msgid "Qty" -msgstr "" +msgstr "Antal" #. module: account #: help:account.tax.code,sign:0 @@ -4115,7 +4125,7 @@ msgstr "" #. module: account #: field:res.partner,property_account_payable:0 msgid "Account Payable" -msgstr "" +msgstr "Kreditor" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:88 @@ -4126,7 +4136,7 @@ msgstr "" #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 msgid "Payment Order" -msgstr "" +msgstr "Betalings ordre" #. module: account #: help:account.account.template,reconcile:0 @@ -4153,17 +4163,17 @@ msgstr "" #. module: account #: view:account.state.open:0 msgid "Open Invoice" -msgstr "" +msgstr "Åben faktura" #. module: account #: field:account.invoice.tax,factor_tax:0 msgid "Multipication factor Tax code" -msgstr "" +msgstr "Multiplikationsfaktor for moms" #. module: account #: field:account.config.settings,complete_tax_set:0 msgid "Complete set of taxes" -msgstr "" +msgstr "Komplet sæt momskoder" #. module: account #: field:account.account,name:0 @@ -4175,7 +4185,7 @@ msgstr "" #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 msgid "Name" -msgstr "" +msgstr "Navn" #. module: account #: code:addons/account/installer.py:115 @@ -4191,7 +4201,7 @@ msgstr "" #. module: account #: field:account.move.line,date:0 msgid "Effective date" -msgstr "" +msgstr "Ikrafttrædelses dato" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:100 @@ -4203,23 +4213,23 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_bank_tree #: model:ir.ui.menu,name:account.menu_action_bank_tree msgid "Setup your Bank Accounts" -msgstr "" +msgstr "Opsætning bank konti" #. module: account #: xsl:account.transfer:0 msgid "Partner ID" -msgstr "" +msgstr "Partner ID" #. module: account #: help:account.bank.statement,message_ids:0 #: help:account.invoice,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Besked- og kommunikations historik" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "" +msgstr "Journal for analytiske posteringer" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4267,12 +4277,12 @@ msgstr "" #: view:product.template:0 #: view:res.partner:0 msgid "Accounting" -msgstr "" +msgstr "Regnskab" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current year" -msgstr "" +msgstr "Posteringer med datoer i indeværende år." #. module: account #: field:account.account,child_consol_ids:0 @@ -4284,7 +4294,7 @@ msgstr "" #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Utilstrækkelige data!" #. module: account #: help:account.account,unrealized_gain_loss:0 @@ -4296,7 +4306,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "General Accounting" -msgstr "" +msgstr "Regnskab" #. module: account #: help:account.fiscalyear.close,journal_id:0 @@ -4310,55 +4320,55 @@ msgstr "" #. module: account #: view:account.installer:0 msgid "title" -msgstr "" +msgstr "titel" #. module: account #: view:account.invoice:0 #: view:account.subscription:0 msgid "Set to Draft" -msgstr "" +msgstr "Sæt til udkast" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form msgid "Recurring Lines" -msgstr "" +msgstr "Gentagne linier" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "" +msgstr "Vis partnere" #. module: account #: view:account.invoice:0 msgid "Validate" -msgstr "" +msgstr "Validér" #. module: account #: model:account.financial.report,name:account.account_financial_report_assets0 msgid "Assets" -msgstr "" +msgstr "Aktiver" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "" +msgstr "Regnskab & finans" #. module: account #: view:account.invoice.confirm:0 msgid "Confirm Invoices" -msgstr "" +msgstr "Bekræft fakturaer" #. module: account #: selection:account.account,currency_mode:0 msgid "Average Rate" -msgstr "" +msgstr "Gennemsnits rate" #. module: account #: field:account.balance.report,display_account:0 #: field:account.common.account.report,display_account:0 #: field:account.report.general.ledger,display_account:0 msgid "Display Accounts" -msgstr "" +msgstr "Vis konti" #. module: account #: view:account.state.open:0 @@ -4368,25 +4378,25 @@ msgstr "" #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "Faktura moms analyse konto" #. module: account #: field:account.chart,period_from:0 msgid "Start period" -msgstr "" +msgstr "Start periode" #. module: account #: field:account.tax,name:0 #: field:account.tax.template,name:0 #: report:account.vat.declaration:0 msgid "Tax Name" -msgstr "" +msgstr "Moms navn" #. module: account #: view:account.config.settings:0 #: model:ir.ui.menu,name:account.menu_finance_configuration msgid "Configuration" -msgstr "" +msgstr "Konfiguration" #. module: account #: model:account.payment.term,name:account.account_payment_term @@ -4398,7 +4408,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_analytic_balance #: model:ir.actions.report.xml,name:account.account_analytic_account_balance msgid "Analytic Balance" -msgstr "" +msgstr "Analytisk balance" #. module: account #: help:res.partner,property_payment_term:0 @@ -4406,6 +4416,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Denne betalingsbetingelse vil blive anvendt i stedet for den der er standard " +"på salgsordrer og fakturaer" #. module: account #: view:account.config.settings:0 @@ -4424,7 +4436,7 @@ msgstr "" #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "" +msgstr "Registrerede posteringer" #. module: account #: field:account.move.line,blocked:0 @@ -4434,12 +4446,12 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Search Tax Templates" -msgstr "" +msgstr "Søg moms skabeloner" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation msgid "Draft Entries" -msgstr "" +msgstr "Kladde indtastninger" #. module: account #: help:account.config.settings,decimal_precision:0 @@ -4453,7 +4465,7 @@ msgstr "" #: field:account.account,shortcut:0 #: field:account.account.template,shortcut:0 msgid "Shortcut" -msgstr "" +msgstr "Genvej" #. module: account #: view:account.account:0 @@ -4469,7 +4481,7 @@ msgstr "" #: field:report.account.receivable,type:0 #: field:report.account_type.sales,user_type:0 msgid "Account Type" -msgstr "" +msgstr "Kontotype" #. module: account #: view:account.bank.statement:0 @@ -4479,7 +4491,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_invoice_cancel msgid "Cancel the Selected Invoices" -msgstr "" +msgstr "Fortryd valgte fakturaer" #. module: account #: code:addons/account/account_bank_statement.py:424 @@ -4493,6 +4505,8 @@ msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft supplier invoices." msgstr "" +"Analytiske omkostninger (tidsskemaer, nogle købte varer..) stammer fra " +"analytiske konti. Disse danner kladde leverandør fakturaer." #. module: account #: model:ir.actions.act_window,help:account.action_bank_tree @@ -4533,7 +4547,7 @@ msgstr "" #: field:report.account.sales,month:0 #: field:report.account_type.sales,month:0 msgid "Month" -msgstr "" +msgstr "Måned" #. module: account #: code:addons/account/account.py:668 @@ -4544,7 +4558,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "" +msgstr "Leverandør faktura bilagsrække" #. module: account #: code:addons/account/account_invoice.py:610 @@ -4560,27 +4574,27 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,product_uom_id:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Vare enhed" #. module: account #: field:res.company,paypal_account:0 msgid "Paypal Account" -msgstr "" +msgstr "Paypal konto" #. module: account #: view:account.entries.report:0 msgid "Acc.Type" -msgstr "" +msgstr "Konto type" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Bank og checks" #. module: account #: field:account.account.template,note:0 msgid "Note" -msgstr "" +msgstr "Notat" #. module: account #: selection:account.financial.report,sign:0 @@ -4592,7 +4606,7 @@ msgstr "" #: code:addons/account/account.py:191 #, python-format msgid "Balance Sheet (Liability account)" -msgstr "" +msgstr "Balance (Gælds konto)" #. module: account #: help:account.invoice,date_invoice:0 @@ -4603,7 +4617,7 @@ msgstr "" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Luknings subtotal" #. module: account #: field:account.tax,base_code_id:0 @@ -4642,12 +4656,12 @@ msgstr "" #: code:addons/account/report/common_report_header.py:68 #, python-format msgid "All Posted Entries" -msgstr "" +msgstr "Alle bogførte posteringer" #. module: account #: field:report.aged.receivable,name:0 msgid "Month Range" -msgstr "" +msgstr "Måneds interval" #. module: account #: help:account.analytic.balance,empty_acc:0 @@ -4657,7 +4671,7 @@ msgstr "" #. module: account #: field:account.move.reconcile,opening_reconciliation:0 msgid "Opening Entries Reconciliation" -msgstr "" +msgstr "Udligninger på åbningsposteringer" #. module: account #. openerp-web @@ -4674,7 +4688,7 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_importinvoice0 msgid "Statement from invoice or payment" -msgstr "" +msgstr "Kontoudtog fra faktura eller betaling" #. module: account #: code:addons/account/installer.py:115 @@ -4687,17 +4701,17 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart msgid "Set Your Accounting Options" -msgstr "" +msgstr "Angiv konto optioner" #. module: account #: model:ir.model,name:account.model_account_chart msgid "Account chart" -msgstr "" +msgstr "Konto oversigt" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "" +msgstr "Betalings reference" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -4708,7 +4722,7 @@ msgstr "" #: report:account.analytic.account.balance:0 #: report:account.central.journal:0 msgid "Account Name" -msgstr "" +msgstr "Kontonavn" #. module: account #: help:account.fiscalyear.close,report_name:0 @@ -4718,12 +4732,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_invoice_report msgid "Invoices Statistics" -msgstr "" +msgstr "Faktura statistik" #. module: account #: field:account.account,exchange_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Omregnings kurs" #. module: account #: model:process.transition,note:account.process_transition_paymentorderreconcilation0 @@ -4734,18 +4748,18 @@ msgstr "" #: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" -msgstr "" +msgstr "Udlign afskrivninger" #. module: account #: view:account.account.template:0 #: view:account.chart.template:0 msgid "Account Template" -msgstr "" +msgstr "Konto skabelon" #. module: account #: view:account.bank.statement:0 msgid "Closing Balance" -msgstr "" +msgstr "Luknings balance" #. module: account #: field:account.chart.template,visible:0 @@ -4760,18 +4774,18 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Credit Notes" -msgstr "" +msgstr "Kreditnotaer" #. module: account #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "" +msgstr "Posteringer til udligning" #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "Templates for Taxes" -msgstr "" +msgstr "Moms skabeloner" #. module: account #: sql_constraint:account.period:0 @@ -4786,7 +4800,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Tax Computation" -msgstr "" +msgstr "Moms beregning" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4811,7 +4825,7 @@ msgstr "" #: field:account.account,reconcile:0 #: field:account.account.template,reconcile:0 msgid "Allow Reconciliation" -msgstr "" +msgstr "Tillad udligning" #. module: account #: constraint:account.account:0 @@ -4833,7 +4847,7 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Based On" -msgstr "" +msgstr "Baseret på" #. module: account #: code:addons/account/account.py:3204 @@ -4881,7 +4895,7 @@ msgstr "" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Cancelled" -msgstr "" +msgstr "Annulleret" #. module: account #: help:account.config.settings,group_proforma_invoices:0 @@ -4905,19 +4919,19 @@ msgstr "" #: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" -msgstr "" +msgstr "Købsmoms %.2f%%" #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate #: model:ir.ui.menu,name:account.menu_generate_subscription msgid "Generate Entries" -msgstr "" +msgstr "Dan posteringer" #. module: account #: help:account.vat.declaration,chart_tax_id:0 msgid "Select Charts of Taxes" -msgstr "" +msgstr "Vælg moms oversigter" #. module: account #: view:account.fiscal.position:0 @@ -4929,43 +4943,43 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Confirmed" -msgstr "" +msgstr "Bekræftet" #. module: account #: report:account.invoice:0 msgid "Cancelled Invoice" -msgstr "" +msgstr "Annulleret faktura" #. module: account #: view:account.invoice:0 msgid "My Invoices" -msgstr "" +msgstr "Mine fakturaer" #. module: account #: selection:account.bank.statement,state:0 msgid "New" -msgstr "" +msgstr "Ny" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Sale Tax" -msgstr "" +msgstr "Salgs moms" #. module: account #: field:account.tax,ref_tax_code_id:0 #: field:account.tax.template,ref_tax_code_id:0 msgid "Refund Tax Code" -msgstr "" +msgstr "Refusions momskode" #. module: account #: view:account.invoice:0 msgid "Invoice " -msgstr "" +msgstr "Faktura " #. module: account #: field:account.chart.template,property_account_income:0 msgid "Income Account on Product Template" -msgstr "" +msgstr "Omsætningskonto på vare skabelon" #. module: account #: help:account.journal.period,state:0 @@ -4997,7 +5011,7 @@ msgstr "Nyt regnskabsår" #: view:report.invoice.created:0 #: field:res.partner,invoice_ids:0 msgid "Invoices" -msgstr "" +msgstr "Fakturaer" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 @@ -5008,7 +5022,7 @@ msgstr "" #: model:account.account.type,name:account.conf_account_type_chk #: selection:account.bank.accounts.wizard,account_type:0 msgid "Check" -msgstr "" +msgstr "Tjek" #. module: account #: view:account.aged.trial.balance:0 @@ -5048,17 +5062,17 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "eller" #. module: account #: view:account.invoice.report:0 msgid "Invoiced" -msgstr "" +msgstr "Faktureret" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "" +msgstr "Bogført under posteringer" #. module: account #: view:account.use.model:0 @@ -5076,7 +5090,7 @@ msgstr "" #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 msgid "Partners Reconciled Today" -msgstr "" +msgstr "Partnere udlignet i dag" #. module: account #: help:account.invoice.tax,tax_code_id:0 @@ -5086,19 +5100,19 @@ msgstr "" #. module: account #: view:account.addtmpl.wizard:0 msgid "Add" -msgstr "" +msgstr "Tilføj" #. module: account #: selection:account.invoice,state:0 #: report:account.overdue:0 #: model:mail.message.subtype,name:account.mt_invoice_paid msgid "Paid" -msgstr "" +msgstr "Betalt" #. module: account #: field:account.invoice,tax_line:0 msgid "Tax Lines" -msgstr "" +msgstr "Moms linier" #. module: account #: help:account.move.line,statement_id:0 @@ -5108,7 +5122,7 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 msgid "Draft invoices are validated. " -msgstr "" +msgstr "Kladdefakturaer er godkendt. " #. module: account #: help:account.tax,account_collected_id:0 @@ -5121,23 +5135,23 @@ msgstr "" #: code:addons/account/account.py:890 #, python-format msgid "Opening Period" -msgstr "" +msgstr "Åbnings periode" #. module: account #: view:account.move:0 msgid "Journal Entries to Review" -msgstr "" +msgstr "Posteringer til vurdering" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round Globally" -msgstr "" +msgstr "Global afrunding" #. module: account #: view:account.bank.statement:0 #: view:account.subscription:0 msgid "Compute" -msgstr "" +msgstr "Beregn" #. module: account #: field:account.tax,type_tax_use:0 @@ -5160,7 +5174,7 @@ msgstr "" #: field:account.payment.term,active:0 #: field:account.tax,active:0 msgid "Active" -msgstr "" +msgstr "Aktiv" #. module: account #: view:account.bank.statement:0 @@ -5175,22 +5189,22 @@ msgstr "" #: field:account.analytic.inverted.balance,date2:0 #: field:account.analytic.journal.report,date2:0 msgid "End of period" -msgstr "" +msgstr "Periode afslutning" #. module: account #: model:process.node,note:account.process_node_supplierpaymentorder0 msgid "Payment of invoices" -msgstr "" +msgstr "Betaling af fakturaer" #. module: account #: sql_constraint:account.invoice:0 msgid "Invoice Number must be unique per Company!" -msgstr "" +msgstr "Fakturanummer skal være unikt pr. firma" #. module: account #: model:ir.actions.act_window,name:account.action_account_receivable_graph msgid "Balance by Type of Account" -msgstr "" +msgstr "Balance pr. konto type" #. module: account #: code:addons/account/account_cash_statement.py:301 @@ -5201,7 +5215,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_account_user msgid "Accountant" -msgstr "" +msgstr "Bogholder" #. module: account #: model:ir.actions.act_window,help:account.action_account_treasury_report_all @@ -5213,17 +5227,17 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "" +msgstr "Regnskabschef" #. module: account #: field:account.journal,group_invoice_lines:0 msgid "Group Invoice Lines" -msgstr "" +msgstr "Grupper fakturalinier" #. module: account #: view:account.automatic.reconcile:0 msgid "Close" -msgstr "" +msgstr "Luk" #. module: account #: field:account.bank.statement.line,move_ids:0 @@ -5239,7 +5253,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_vat_declaration msgid "Account Vat Declaration" -msgstr "" +msgstr "Momsopgørelse for konto" #. module: account #: help:account.config.settings,module_account_accountant:0 @@ -5251,27 +5265,27 @@ msgstr "" #. module: account #: view:account.period:0 msgid "To Close" -msgstr "" +msgstr "Skal lukkes" #. module: account #: field:account.treasury.report,date:0 msgid "Beginning of Period Date" -msgstr "" +msgstr "Dato for periodestart" #. module: account #: model:ir.ui.menu,name:account.account_template_folder msgid "Templates" -msgstr "" +msgstr "Skabeloner" #. module: account #: field:account.invoice.tax,name:0 msgid "Tax Description" -msgstr "" +msgstr "Moms beskrivelse" #. module: account #: field:account.tax,child_ids:0 msgid "Child Tax Accounts" -msgstr "" +msgstr "Under momskonti" #. module: account #: help:account.tax,price_include:0 @@ -5284,7 +5298,7 @@ msgstr "" #. module: account #: report:account.analytic.account.balance:0 msgid "Analytic Balance -" -msgstr "" +msgstr "Analytisk balance -" #. module: account #: report:account.account.balance:0 @@ -5332,19 +5346,19 @@ msgstr "" #. module: account #: field:account.subscription,period_type:0 msgid "Period Type" -msgstr "" +msgstr "Periode type" #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 #: selection:account.vat.declaration,based_on:0 msgid "Payments" -msgstr "" +msgstr "Betalinger" #. module: account #: field:account.subscription.line,move_id:0 msgid "Entry" -msgstr "" +msgstr "Indtastning" #. module: account #: field:account.tax,python_compute_inv:0 @@ -5357,7 +5371,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_payment_term_form #: model:ir.ui.menu,name:account.menu_action_payment_term_form msgid "Payment Terms" -msgstr "" +msgstr "Betalingsbetingelser" #. module: account #: help:account.chart.template,complete_tax_set:0 @@ -5372,7 +5386,7 @@ msgstr "" #: field:account.financial.report,children_ids:0 #: model:ir.model,name:account.model_account_financial_report msgid "Account Report" -msgstr "" +msgstr "Konto rapport" #. module: account #: field:account.entries.report,year:0 @@ -5385,7 +5399,7 @@ msgstr "" #: view:report.account_type.sales:0 #: field:report.account_type.sales,name:0 msgid "Year" -msgstr "" +msgstr "År" #. module: account #: help:account.invoice,sent:0 @@ -5409,48 +5423,48 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Pro Forma Invoice " -msgstr "" +msgstr "Proforma faktura " #. module: account #: selection:account.subscription,period_type:0 msgid "month" -msgstr "" +msgstr "måned" #. module: account #: view:account.move.line:0 #: field:account.partner.reconcile.process,next_partner_id:0 msgid "Next Partner to Reconcile" -msgstr "" +msgstr "Afstemning af næste partner" #. module: account #: field:account.invoice.tax,account_id:0 #: field:account.move.line,tax_code_id:0 msgid "Tax Account" -msgstr "" +msgstr "Moms konto" #. module: account #: model:account.financial.report,name:account.account_financial_report_balancesheet0 #: model:ir.actions.act_window,name:account.action_account_report_bs #: model:ir.ui.menu,name:account.menu_account_report_bs msgid "Balance Sheet" -msgstr "" +msgstr "Balance" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "" +msgstr "Tab & Vind (Indtægstkonto)" #. module: account #: field:account.journal,allow_date:0 msgid "Check Date in Period" -msgstr "" +msgstr "Tjek dato i perioden" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports msgid "Accounting Reports" -msgstr "" +msgstr "Regnskabs rapporter" #. module: account #: field:account.move,line_id:0 @@ -5462,7 +5476,7 @@ msgstr "Postering" #. module: account #: view:account.entries.report:0 msgid "This Period" -msgstr "" +msgstr "Denne periode" #. module: account #: view:account.tax.template:0 @@ -5491,7 +5505,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_automatic_reconcile msgid "Automatic Reconcile" -msgstr "" +msgstr "Automatisk udligning" #. module: account #: view:account.analytic.line:0 @@ -5526,7 +5540,7 @@ msgstr "" #: model:process.transition,name:account.process_transition_suppliervalidentries0 #: model:process.transition,name:account.process_transition_validentries0 msgid "Validation" -msgstr "" +msgstr "Validering" #. module: account #: help:account.bank.statement,message_summary:0 @@ -5556,7 +5570,7 @@ msgstr "" #. module: account #: field:account.journal,update_posted:0 msgid "Allow Cancelling Entries" -msgstr "" +msgstr "Tillad annullering af indtastninger" #. module: account #: code:addons/account/wizard/account_use_model.py:44 @@ -5580,12 +5594,12 @@ msgstr "(Konto / Kontakt) Navn" #. module: account #: field:account.partner.reconcile.process,progress:0 msgid "Progress" -msgstr "" +msgstr "Fremdrift" #. module: account #: field:wizard.multi.charts.accounts,bank_accounts_id:0 msgid "Cash and Banks" -msgstr "" +msgstr "Kasse og banker" #. module: account #: model:ir.model,name:account.model_account_installer @@ -5595,7 +5609,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Recompute taxes and total" -msgstr "" +msgstr "Genberegn moms og totaler" #. module: account #: code:addons/account/account.py:1116 @@ -5606,12 +5620,12 @@ msgstr "" #. module: account #: field:account.tax.template,include_base_amount:0 msgid "Include in Base Amount" -msgstr "" +msgstr "Inkludér i basisbeløb" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "Leverandør fakturanummer" #. module: account #: help:account.payment.term.line,days:0 @@ -5623,7 +5637,7 @@ msgstr "" #. module: account #: view:account.payment.term.line:0 msgid "Amount Computation" -msgstr "" +msgstr "Beløbs beregning" #. module: account #: code:addons/account/account_move_line.py:1105 @@ -5649,7 +5663,7 @@ msgstr "(Holdes tom for at åbne nuværende situation)" #: field:account.analytic.inverted.balance,date1:0 #: field:account.analytic.journal.report,date1:0 msgid "Start of period" -msgstr "" +msgstr "Periode start" #. module: account #: model:account.account.type,name:account.account_type_asset_view1 @@ -5672,13 +5686,13 @@ msgstr "" #: selection:account.period,state:0 #: selection:report.invoice.created,state:0 msgid "Open" -msgstr "" +msgstr "Åbn" #. module: account #: view:account.config.settings:0 #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" -msgstr "" +msgstr "Analytisk regnskab" #. module: account #: help:account.payment.term.line,value:0 @@ -5697,14 +5711,14 @@ msgstr "" #. module: account #: view:account.invoice.tax:0 msgid "Tax Codes" -msgstr "" +msgstr "Moms koder" #. module: account #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 #: selection:report.invoice.created,type:0 msgid "Customer Refund" -msgstr "" +msgstr "Kunde kreditnota" #. module: account #: field:account.tax,ref_tax_sign:0 @@ -5717,17 +5731,17 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_report_invoice_created msgid "Report of Invoices Created within Last 15 days" -msgstr "" +msgstr "Rapport over fakturaer dannet indenfor seneste 15 dage" #. module: account #: field:account.fiscalyear,end_journal_period_id:0 msgid "End of Year Entries Journal" -msgstr "" +msgstr "Årsafslutnings journal" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "Kladde kreditnota " #. module: account #: view:cash.box.in:0 @@ -5738,7 +5752,7 @@ msgstr "" #: view:account.payment.term.line:0 #: field:account.payment.term.line,value_amount:0 msgid "Amount To Pay" -msgstr "" +msgstr "Beløb til betaling" #. module: account #: help:account.partner.reconcile.process,to_reconcile:0 @@ -5756,7 +5770,7 @@ msgstr "" #. module: account #: field:account.entries.report,quantity:0 msgid "Products Quantity" -msgstr "" +msgstr "Vare antal" #. module: account #: view:account.entries.report:0 @@ -5765,25 +5779,25 @@ msgstr "" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Unposted" -msgstr "" +msgstr "Ikke bogført" #. module: account #: view:account.change.currency:0 #: model:ir.actions.act_window,name:account.action_account_change_currency #: model:ir.model,name:account.model_account_change_currency msgid "Change Currency" -msgstr "" +msgstr "Skift valuta" #. module: account #: model:process.node,note:account.process_node_accountingentries0 #: model:process.node,note:account.process_node_supplieraccountingentries0 msgid "Accounting entries." -msgstr "" +msgstr "Konto registreringer" #. module: account #: view:account.invoice:0 msgid "Payment Date" -msgstr "" +msgstr "Betalingsdato" #. module: account #: view:account.bank.statement:0 @@ -5801,7 +5815,7 @@ msgstr "Analyse konto" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "" +msgstr "Kunde fakturaer og kreditnotaer" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -5814,7 +5828,7 @@ msgstr "Beløb Valuta" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round per Line" -msgstr "" +msgstr "Afrunding pr. linie" #. module: account #: report:account.analytic.account.balance:0 @@ -5839,7 +5853,7 @@ msgstr "" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Normal Text" -msgstr "" +msgstr "Normal tekst" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 @@ -5852,6 +5866,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Betalingsbetingelsen vil blive brugt i stedet for standardbetingelen på " +"indkøbsordrer og leverandørfakturaer." #. module: account #: help:account.automatic.reconcile,power:0 @@ -5875,14 +5891,14 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Kladde kreditnota" #. module: account #: view:account.analytic.chart:0 #: view:account.chart:0 #: view:account.tax.chart:0 msgid "Open Charts" -msgstr "" +msgstr "Åbn oversigter" #. module: account #: field:account.central.journal,amount_currency:0 @@ -5892,7 +5908,7 @@ msgstr "" #: field:account.print.journal,amount_currency:0 #: field:account.report.general.ledger,amount_currency:0 msgid "With Currency" -msgstr "" +msgstr "Med valuta" #. module: account #: view:account.bank.statement:0 @@ -5902,12 +5918,12 @@ msgstr "" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Automatic formatting" -msgstr "" +msgstr "Automatisk formattering" #. module: account #: view:account.move.line.reconcile:0 msgid "Reconcile With Write-Off" -msgstr "" +msgstr "Udlign med afskrivninger" #. module: account #: constraint:account.move.line:0 @@ -5929,7 +5945,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile msgid "Account Automatic Reconcile" -msgstr "" +msgstr "Automatisk udligning af konto" #. module: account #: view:account.move:0 @@ -5941,22 +5957,22 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close #: model:ir.ui.menu,name:account.menu_wizard_fy_close msgid "Generate Opening Entries" -msgstr "" +msgstr "Dan åbningsposteringer" #. module: account #: help:account.tax,type:0 msgid "The computation method for the tax amount." -msgstr "" +msgstr "Beregningsmetode for denne momskode." #. module: account #: view:account.payment.term.line:0 msgid "Due Date Computation" -msgstr "" +msgstr "Forfaldsdato beregning" #. module: account #: field:report.invoice.created,create_date:0 msgid "Create Date" -msgstr "" +msgstr "Opret dato" #. module: account #: view:account.analytic.journal:0 @@ -5964,12 +5980,12 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_form #: model:ir.ui.menu,name:account.account_def_analytic_journal msgid "Analytic Journals" -msgstr "" +msgstr "Analytiske journaler" #. module: account #: field:account.account,child_id:0 msgid "Child Accounts" -msgstr "" +msgstr "Under-konti" #. module: account #: code:addons/account/account_move_line.py:1117 @@ -5982,17 +5998,17 @@ msgstr "" #: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" -msgstr "" +msgstr "Afskrivning" #. module: account #: view:account.entries.report:0 msgid "entries" -msgstr "" +msgstr "poster" #. module: account #: field:res.partner,debit:0 msgid "Total Payable" -msgstr "" +msgstr "Total skyldig" #. module: account #: model:account.account.type,name:account.data_account_type_income @@ -6017,7 +6033,7 @@ msgstr "Leverandør" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "March" -msgstr "" +msgstr "Marts" #. module: account #: report:account.analytic.account.journal:0 @@ -6040,7 +6056,7 @@ msgstr "Fri Reference" #: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" -msgstr "" +msgstr "Debitor og kreditor konti" #. module: account #: field:account.fiscal.position.account.template,position_id:0 @@ -6050,7 +6066,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Select Company" -msgstr "" +msgstr "Vælg firma" #. module: account #: model:ir.actions.act_window,name:account.action_account_state_open @@ -6061,13 +6077,13 @@ msgstr "" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Max Qty:" -msgstr "" +msgstr "Max antal" #. module: account #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.action_account_invoice_refund msgid "Refund Invoice" -msgstr "" +msgstr "Kreditnota" #. module: account #: model:ir.actions.act_window,help:account.action_account_entries_report_all @@ -6090,7 +6106,7 @@ msgstr "" #: field:report.account.sales,period_id:0 #: field:report.account_type.sales,period_id:0 msgid "Force Period" -msgstr "" +msgstr "Gennemtving periode" #. module: account #: model:ir.actions.act_window,help:account.action_account_form @@ -6138,7 +6154,7 @@ msgstr "" #: field:accounting.report,filter:0 #: field:accounting.report,filter_cmp:0 msgid "Filter by" -msgstr "" +msgstr "filtrer efter" #. module: account #: code:addons/account/account.py:2334 @@ -6159,13 +6175,13 @@ msgstr "" #. module: account #: field:account.journal,loss_account_id:0 msgid "Loss Account" -msgstr "" +msgstr "Tabs konto" #. module: account #: field:account.tax,account_collected_id:0 #: field:account.tax.template,account_collected_id:0 msgid "Invoice Tax Account" -msgstr "" +msgstr "Faktura moms konto" #. module: account #: model:ir.actions.act_window,name:account.action_account_general_journal @@ -6186,7 +6202,7 @@ msgstr "" #. module: account #: field:account.payment.term.line,days:0 msgid "Number of Days" -msgstr "" +msgstr "Antal dage" #. module: account #: code:addons/account/account.py:1357 @@ -6199,7 +6215,7 @@ msgstr "" #. module: account #: view:account.financial.report:0 msgid "Report" -msgstr "" +msgstr "Rapport" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template @@ -6215,20 +6231,20 @@ msgstr "" #: report:account.analytic.account.cost_ledger:0 #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Printing date" -msgstr "" +msgstr "Udskrivningsdato" #. module: account #: selection:account.account.type,close_method:0 #: selection:account.tax,type:0 #: selection:account.tax.template,type:0 msgid "None" -msgstr "" +msgstr "Ingen" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree3 #: model:ir.ui.menu,name:account.menu_action_invoice_tree3 msgid "Customer Refunds" -msgstr "" +msgstr "Kunde kreditnotaer" #. module: account #: field:account.account,foreign_balance:0 @@ -6238,7 +6254,7 @@ msgstr "" #. module: account #: field:account.journal.period,name:0 msgid "Journal-Period Name" -msgstr "" +msgstr "Journal periode navn" #. module: account #: field:account.invoice.tax,factor_base:0 @@ -6248,12 +6264,12 @@ msgstr "" #. module: account #: help:account.journal,company_id:0 msgid "Company related to this journal" -msgstr "" +msgstr "Firma knyttet til denne konto" #. module: account #: help:account.config.settings,group_multi_currency:0 msgid "Allows you multi currency environment" -msgstr "" +msgstr "Tillader multi-valuta" #. module: account #: view:account.subscription:0 @@ -6287,18 +6303,18 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Entry" -msgstr "" +msgstr "Analytisk postering" #. module: account #: view:res.company:0 #: field:res.company,overdue_msg:0 msgid "Overdue Payments Message" -msgstr "" +msgstr "Forfalden betalings besked" #. module: account #: field:account.entries.report,date_created:0 msgid "Date Created" -msgstr "" +msgstr "Dato oprettet" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form @@ -6316,7 +6332,7 @@ msgstr "" #: view:account.chart.template:0 #: field:account.chart.template,account_root_id:0 msgid "Root Account" -msgstr "" +msgstr "Oprindelses konto" #. module: account #: field:res.partner,last_reconciliation_date:0 @@ -6332,7 +6348,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_action_model_form msgid "Models" -msgstr "" +msgstr "Modeller" #. module: account #: code:addons/account/account_invoice.py:1124 @@ -6345,7 +6361,7 @@ msgstr "" #. module: account #: field:product.template,taxes_id:0 msgid "Customer Taxes" -msgstr "" +msgstr "Kunde moms" #. module: account #: help:account.model,name:0 @@ -6355,12 +6371,12 @@ msgstr "" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 msgid "Sales Tax(%)" -msgstr "" +msgstr "Salgsmoms" #. module: account #: view:account.tax.code:0 msgid "Reporting Configuration" -msgstr "" +msgstr "Rapporterings opsætning" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree4 @@ -6380,13 +6396,13 @@ msgstr "" #: field:account.tax,type:0 #: field:account.tax.template,type:0 msgid "Tax Type" -msgstr "" +msgstr "Moms type" #. module: account #: model:ir.actions.act_window,name:account.action_account_template_form #: model:ir.ui.menu,name:account.menu_action_account_template_form msgid "Account Templates" -msgstr "" +msgstr "Konto skabeloner" #. module: account #: help:account.config.settings,complete_tax_set:0 @@ -6401,17 +6417,17 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Tax Statement" -msgstr "" +msgstr "Moms kontoudtog" #. module: account #: model:ir.model,name:account.model_res_company msgid "Companies" -msgstr "" +msgstr "Firmaer" #. module: account #: view:account.invoice.report:0 msgid "Open and Paid Invoices" -msgstr "" +msgstr "Åbne og betalte fakturaer" #. module: account #: selection:account.financial.report,display_detail:0 @@ -6421,12 +6437,12 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "" +msgstr "Bank og kasse" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 msgid "Select a fiscal year to close" -msgstr "" +msgstr "Vælg regnskabsår at lukke" #. module: account #: help:account.chart.template,tax_template_ids:0 @@ -6447,12 +6463,12 @@ msgstr "" #: field:account.chart,fiscalyear:0 #: view:account.fiscalyear:0 msgid "Fiscal year" -msgstr "" +msgstr "Regnskabsår" #. module: account #: view:account.move.reconcile:0 msgid "Partial Reconcile Entries" -msgstr "" +msgstr "Delvist udlignede poster" #. module: account #: view:account.aged.trial.balance:0 @@ -6491,7 +6507,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Cancel" -msgstr "" +msgstr "Annullér" #. module: account #: selection:account.account,type:0 @@ -6499,7 +6515,7 @@ msgstr "" #: model:account.account.type,name:account.data_account_type_receivable #: selection:account.entries.report,type:0 msgid "Receivable" -msgstr "" +msgstr "Kreditor" #. module: account #: constraint:account.move.line:0 @@ -6515,12 +6531,12 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Other Info" -msgstr "" +msgstr "Anden info" #. module: account #: field:account.journal,default_credit_account_id:0 msgid "Default Credit Account" -msgstr "" +msgstr "Standard krediterings konto" #. module: account #: help:account.analytic.line,currency_id:0 @@ -6531,7 +6547,7 @@ msgstr "" #: code:addons/account/installer.py:69 #, python-format msgid "Custom" -msgstr "" +msgstr "Tilpasset" #. module: account #: view:account.analytic.account:0 @@ -6547,12 +6563,12 @@ msgstr "" #: model:account.account.type,name:account.account_type_cash_equity #: model:account.account.type,name:account.conf_account_type_equity msgid "Equity" -msgstr "" +msgstr "Egenkapital" #. module: account #: field:account.journal,internal_account_id:0 msgid "Internal Transfers Account" -msgstr "" +msgstr "Konto for interne flytninger" #. module: account #: code:addons/account/wizard/pos_box.py:32 @@ -6563,12 +6579,12 @@ msgstr "" #. module: account #: selection:account.tax,type:0 msgid "Percentage" -msgstr "" +msgstr "Procent" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round globally" -msgstr "" +msgstr "Afrund globalt" #. module: account #: selection:account.report.general.ledger,sortby:0 @@ -6589,18 +6605,18 @@ msgstr "" #. module: account #: view:project.account.analytic.line:0 msgid "View Account Analytic Lines" -msgstr "" +msgstr "Vis kontoens analytiske poster" #. module: account #: field:account.invoice,internal_number:0 #: field:report.invoice.created,number:0 msgid "Invoice Number" -msgstr "" +msgstr "Fakturanummer" #. module: account #: field:account.bank.statement,difference:0 msgid "Difference" -msgstr "" +msgstr "Forskel" #. module: account #: help:account.tax,include_base_amount:0 @@ -6612,7 +6628,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile msgid "Reconciliation: Go to Next Partner" -msgstr "" +msgstr "Udligning: Gå til næste partner" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance @@ -6642,6 +6658,8 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" +"Der er ikke defineret nogen åbnings-/lukningsperiode, opret en for at få en " +"åbningsbalance." #. module: account #: help:account.tax.template,sequence:0 @@ -6666,25 +6684,25 @@ msgstr "" #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "User Error!" -msgstr "" +msgstr "Brugerfejl !" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "Kasser" #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 #: view:account.journal:0 msgid "Liquidity" -msgstr "" +msgstr "Likviditet" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form #: model:ir.ui.menu,name:account.account_analytic_journal_entries msgid "Analytic Journal Items" -msgstr "" +msgstr "Analytisk journalposteringer" #. module: account #: field:account.config.settings,has_default_company:0 @@ -6702,7 +6720,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_bank_and_cash msgid "Bank and Cash" -msgstr "" +msgstr "Bank og kasse" #. module: account #: model:ir.actions.act_window,help:account.action_analytic_entries_report @@ -6716,12 +6734,12 @@ msgstr "" #. module: account #: sql_constraint:account.journal:0 msgid "The name of the journal must be unique per company !" -msgstr "" +msgstr "Journalens navn skal være unik pr. firma !" #. module: account #: field:account.account.template,nocreate:0 msgid "Optional create" -msgstr "" +msgstr "Optionel oprettelse" #. module: account #: code:addons/account/account.py:686 @@ -6739,12 +6757,12 @@ msgstr "" #: selection:report.invoice.created,type:0 #, python-format msgid "Supplier Refund" -msgstr "" +msgstr "Leverandør kreditnota" #. module: account #: field:account.bank.statement,move_line_ids:0 msgid "Entry lines" -msgstr "" +msgstr "Indtastningslinier" #. module: account #: field:account.move.line,centralisation:0 @@ -6772,7 +6790,7 @@ msgstr "" #: view:account.tax.code.template:0 #: view:analytic.entries.report:0 msgid "Group By..." -msgstr "" +msgstr "Sorter efter" #. module: account #: code:addons/account/account.py:1024 @@ -6781,13 +6799,15 @@ msgid "" "There is no period defined for this date: %s.\n" "Please create one." msgstr "" +"Der er ikke oprettet nogen periode for denne dato: %s.\n" +"Venligst opret én." #. module: account #: field:account.analytic.line,product_uom_id:0 #: field:account.invoice.line,uos_id:0 #: field:account.move.line,product_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Enhed" #. module: account #: help:account.journal,group_invoice_lines:0 @@ -6816,12 +6836,12 @@ msgstr "" #: model:ir.model,name:account.model_account_analytic_journal #: model:ir.ui.menu,name:account.account_analytic_journal_print msgid "Analytic Journal" -msgstr "" +msgstr "Analytisk journal" #. module: account #: view:account.entries.report:0 msgid "Reconciled" -msgstr "" +msgstr "Udlignet/afstemt" #. module: account #: constraint:account.payment.term.line:0 @@ -6834,27 +6854,27 @@ msgstr "" #: report:account.invoice:0 #: field:account.invoice.tax,base:0 msgid "Base" -msgstr "" +msgstr "Basis" #. module: account #: field:account.model,name:0 msgid "Model Name" -msgstr "" +msgstr "Modelnavn" #. module: account #: field:account.chart.template,property_account_expense_categ:0 msgid "Expense Category Account" -msgstr "" +msgstr "Omkostningskonto" #. module: account #: sql_constraint:account.tax:0 msgid "Tax Name must be unique per company!" -msgstr "" +msgstr "Moms navn skal være unikt pr. firma !" #. module: account #: view:account.bank.statement:0 msgid "Cash Transactions" -msgstr "" +msgstr "Kasse-bevægelser" #. module: account #: view:account.unreconcile:0 @@ -6871,24 +6891,24 @@ msgstr "" #: field:account.fiscal.position,note:0 #: field:account.fiscal.position.template,note:0 msgid "Notes" -msgstr "" +msgstr "Noter" #. module: account #: model:ir.model,name:account.model_analytic_entries_report msgid "Analytic Entries Statistics" -msgstr "" +msgstr "Statistik over analytiske posteringer" #. module: account #: code:addons/account/account_analytic_line.py:142 #: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " -msgstr "" +msgstr "Posteringer " #. module: account #: help:res.partner.bank,currency_id:0 msgid "Currency of the related account journal." -msgstr "" +msgstr "Valuta på den relaterede kontojournal." #. module: account #: constraint:account.move.line:0 @@ -6907,27 +6927,27 @@ msgstr "Sandt" #: code:addons/account/account.py:190 #, python-format msgid "Balance Sheet (Asset account)" -msgstr "" +msgstr "Balance (aktiver)" #. module: account #: model:process.node,note:account.process_node_draftstatement0 msgid "State is draft" -msgstr "" +msgstr "I \"kladde\" status" #. module: account #: view:account.move.line:0 msgid "Total debit" -msgstr "" +msgstr "Total debit" #. module: account #: view:account.move.line:0 msgid "Next Partner Entries to reconcile" -msgstr "" +msgstr "Ingen partner posteringer at udligne" #. module: account #: report:account.invoice:0 msgid "Fax :" -msgstr "" +msgstr "Fax :" #. module: account #: help:res.partner,property_account_receivable:0 @@ -6950,7 +6970,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current period" -msgstr "" +msgstr "Posteringer med dato i indeværende periode" #. module: account #: help:account.journal,update_posted:0 @@ -6962,42 +6982,42 @@ msgstr "" #. module: account #: view:account.fiscalyear.close:0 msgid "Create" -msgstr "" +msgstr "Opret" #. module: account #: model:process.transition.action,name:account.process_transition_action_createentries0 msgid "Create entry" -msgstr "" +msgstr "Indtast" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:189 #, python-format msgid "Profit & Loss (Expense account)" -msgstr "" +msgstr "Tab & Vind (udgiftskonto)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 msgid "Total Transactions" -msgstr "" +msgstr "Totale posteringer" #. module: account #: code:addons/account/account.py:636 #, python-format msgid "You cannot remove an account that contains journal items." -msgstr "" +msgstr "Du kan ikke fjerne en konto der indeholder posteringer" #. module: account #: code:addons/account/account.py:1024 #: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" -msgstr "" +msgstr "Fejl!" #. module: account #: field:account.financial.report,style_overwrite:0 msgid "Financial Report Style" -msgstr "" +msgstr "Finans rapport opsætning" #. module: account #: selection:account.financial.report,sign:0 @@ -7009,33 +7029,33 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_vat_declaration #: model:ir.ui.menu,name:account.menu_account_vat_declaration msgid "Taxes Report" -msgstr "" +msgstr "Moms rapport" #. module: account #: selection:account.journal.period,state:0 msgid "Printed" -msgstr "" +msgstr "Udskrevet" #. module: account #: view:account.analytic.line:0 msgid "Project line" -msgstr "" +msgstr "Projektlinie" #. module: account #: field:account.invoice.tax,manual:0 msgid "Manual" -msgstr "" +msgstr "Manuel" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "Annulér: opret kreditnota og udlign" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "You must set a start date." -msgstr "" +msgstr "Du skal angive en startdato" #. module: account #: view:account.automatic.reconcile:0 @@ -7051,7 +7071,7 @@ msgstr "" #: view:account.move:0 #: field:account.move,to_check:0 msgid "To Review" -msgstr "" +msgstr "Til gennemgang" #. module: account #: help:account.partner.ledger,initial_balance:0 @@ -7069,18 +7089,18 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "" +msgstr "Posteringer" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 #, python-format msgid "No period found on the invoice." -msgstr "" +msgstr "Ingen periode angivet på fakturaen" #. module: account #: help:account.partner.ledger,page_split:0 msgid "Display Ledger Report with One partner per page" -msgstr "" +msgstr "Vis finansrapport med én partner pr. side" #. module: account #: report:account.general.ledger:0 @@ -7115,17 +7135,17 @@ msgstr "Ja" #: code:addons/account/report/common_report_header.py:67 #, python-format msgid "All Entries" -msgstr "" +msgstr "Alle indtastninger" #. module: account #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." -msgstr "" +msgstr "Du kan kun afstemme posteringer fra den samme partner." #. module: account #: view:account.journal.select:0 msgid "Journal Select" -msgstr "" +msgstr "Journal udvælgelse" #. module: account #: view:account.bank.statement:0 @@ -7133,12 +7153,12 @@ msgstr "" #: code:addons/account/account.py:434 #, python-format msgid "Opening Balance" -msgstr "" +msgstr "Åbningsbalance" #. module: account #: model:ir.model,name:account.model_account_move_reconcile msgid "Account Reconciliation" -msgstr "" +msgstr "Kontoafstemning" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax @@ -7153,12 +7173,12 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_general_ledger_landscape #: model:ir.ui.menu,name:account.menu_general_ledger msgid "General Ledger" -msgstr "" +msgstr "Finans" #. module: account #: model:process.transition,note:account.process_transition_paymentorderbank0 msgid "The payment order is sent to the bank." -msgstr "" +msgstr "Betalingsordre sendt til banken." #. module: account #: help:account.move,to_check:0 @@ -7171,7 +7191,7 @@ msgstr "" #: field:account.chart.template,complete_tax_set:0 #: field:wizard.multi.charts.accounts,complete_tax_set:0 msgid "Complete Set of Taxes" -msgstr "" +msgstr "Komplet sæt momskoder" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:61 @@ -7183,12 +7203,12 @@ msgstr "" #. module: account #: view:account.chart.template:0 msgid "Properties" -msgstr "" +msgstr "Egenskaber" #. module: account #: model:ir.model,name:account.model_account_tax_chart msgid "Account tax chart" -msgstr "" +msgstr "Konto momsoversigt" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -7200,7 +7220,7 @@ msgstr "" #: report:account.journal.period.print.sale.purchase:0 #: report:account.partner.balance:0 msgid "Total:" -msgstr "" +msgstr "Total:" #. module: account #: constraint:account.journal:0 @@ -7208,6 +7228,8 @@ msgid "" "Configuration error!\n" "The currency chosen should be shared by the default accounts too." msgstr "" +"Konfigurations fejl!\n" +"Den valgte valuta skal være delt med standard kontoen." #. module: account #: code:addons/account/account.py:2304 @@ -7226,12 +7248,12 @@ msgstr "" #. module: account #: field:account.invoice,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "Paypal Url" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "Håndtér kunde betalinger" #. module: account #: help:report.invoice.created,origin:0 @@ -7242,7 +7264,7 @@ msgstr "" #: field:account.tax.code,child_ids:0 #: field:account.tax.code.template,child_ids:0 msgid "Child Codes" -msgstr "" +msgstr "Under-koder" #. module: account #: constraint:account.fiscalyear:0 @@ -7254,23 +7276,23 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Taxes used in Sales" -msgstr "" +msgstr "Moms anvendt i salg" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 msgid "Customer Invoices" -msgstr "" +msgstr "Kunde fakturaer" #. module: account #: view:account.tax:0 msgid "Misc" -msgstr "" +msgstr "Diverse" #. module: account #: view:account.analytic.line:0 msgid "Sales" -msgstr "" +msgstr "Salg" #. module: account #: selection:account.invoice.report,state:0 @@ -7278,7 +7300,7 @@ msgstr "" #: selection:account.subscription,state:0 #: selection:report.invoice.created,state:0 msgid "Done" -msgstr "" +msgstr "Udført" #. module: account #: code:addons/account/account.py:1319 @@ -7292,7 +7314,7 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 msgid "A statement with manual entries becomes a draft statement." -msgstr "" +msgstr "Et udtog med manuelle posteringer bliver et kladde-udtog" #. module: account #: view:account.aged.trial.balance:0 @@ -7310,7 +7332,7 @@ msgstr "" #: field:account.invoice.line,origin:0 #: field:report.invoice.created,origin:0 msgid "Source Document" -msgstr "" +msgstr "Kilde dokument" #. module: account #: help:account.config.settings,company_footer:0 @@ -7328,17 +7350,17 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_accounting_report msgid "Accounting Report" -msgstr "" +msgstr "Regnskabs rapport" #. module: account #: field:account.analytic.line,currency_id:0 msgid "Account Currency" -msgstr "" +msgstr "Konto valuta" #. module: account #: report:account.invoice:0 msgid "Taxes:" -msgstr "" +msgstr "Moms" #. module: account #: code:addons/account/account_invoice.py:458 @@ -7356,29 +7378,29 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy msgid "Financial Reports Hierarchy" -msgstr "" +msgstr "Hierarki af finansrapporter" #. module: account #: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation msgid "Monthly Turnover" -msgstr "" +msgstr "Omsætning pr. måned" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Analytic Lines" -msgstr "" +msgstr "Analytiske linier" #. module: account #: field:account.analytic.journal,line_ids:0 #: field:account.tax.code,line_ids:0 msgid "Lines" -msgstr "" +msgstr "Linier" #. module: account #: view:account.tax.template:0 msgid "Account Tax Template" -msgstr "" +msgstr "Konto momsskabelon" #. module: account #: view:account.journal.select:0 @@ -7393,22 +7415,22 @@ msgstr "" #. module: account #: field:account.chart.template,property_account_expense_opening:0 msgid "Opening Entries Expense Account" -msgstr "" +msgstr "Udgiftsrapport over åbningsposteringer" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Kunde Reference" #. module: account #: field:account.account.template,parent_id:0 msgid "Parent Account Template" -msgstr "" +msgstr "Hoved kontoskabelon" #. module: account #: report:account.invoice:0 msgid "Price" -msgstr "" +msgstr "Pris" #. module: account #: view:account.bank.statement:0 @@ -7422,7 +7444,7 @@ msgstr "" #: field:account.move.line,statement_id:0 #: model:process.process,name:account.process_process_statementprocess0 msgid "Statement" -msgstr "" +msgstr "Kontoudtog" #. module: account #: help:account.journal,default_debit_account_id:0 @@ -7432,7 +7454,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "" +msgstr "Bogførte posteringer" #. module: account #: help:account.payment.term.line,value_amount:0 @@ -7450,42 +7472,42 @@ msgstr "Faktura dato" #. module: account #: view:account.invoice.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "Sorter efter år ud fra fakturadato" #. module: account #: field:account.config.settings,purchase_tax_rate:0 msgid "Purchase tax (%)" -msgstr "" +msgstr "Indkøbs moms (%)" #. module: account #: help:res.partner,credit:0 msgid "Total amount this customer owes you." -msgstr "" +msgstr "Totalbeløb denne kunde skylder dig." #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "" +msgstr "Posteringer i ubalance" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules msgid "Chart Templates" -msgstr "" +msgstr "Oversigts skabeloner" #. module: account #: field:account.journal.period,icon:0 msgid "Icon" -msgstr "" +msgstr "Ikon" #. module: account #: view:account.use.model:0 msgid "Ok" -msgstr "" +msgstr "OK" #. module: account #: field:account.chart.template,tax_code_root_id:0 msgid "Root Tax Code" -msgstr "" +msgstr "Basis momskode" #. module: account #: help:account.journal,centralisation:0 @@ -7503,27 +7525,27 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "" +msgstr "Bank kontoudtogslinie" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 msgid "Default Purchase Tax" -msgstr "" +msgstr "Standard indkøbsmoms" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "" +msgstr "Omsætningskonto for åbningsposteringer" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "" +msgstr "Tillad proforma fakturaer" #. module: account #: view:account.bank.statement:0 msgid "Confirm" -msgstr "" +msgstr "Bekræft" #. module: account #: help:account.tax,domain:0 @@ -7537,17 +7559,17 @@ msgstr "" #: field:account.invoice,reference:0 #: field:account.invoice.line,invoice_id:0 msgid "Invoice Reference" -msgstr "" +msgstr "Faktura reference" #. module: account #: field:account.fiscalyear.close,report_name:0 msgid "Name of new entries" -msgstr "" +msgstr "Navn på nye indtastninger" #. module: account #: view:account.use.model:0 msgid "Create Entries" -msgstr "" +msgstr "Opret indtastninger" #. module: account #: model:ir.model,name:account.model_cash_box_out @@ -7557,12 +7579,12 @@ msgstr "" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "" +msgstr "Hovedvaluta for firmaet" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports msgid "Reporting" -msgstr "" +msgstr "Rapportering" #. module: account #. openerp-web @@ -7570,29 +7592,29 @@ msgstr "" #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" -msgstr "" +msgstr "Advarsel!" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open msgid "Contracts/Analytic Accounts" -msgstr "" +msgstr "Kontrakter/analytiske konti" #. module: account #: view:account.journal:0 #: field:res.partner.bank,journal_id:0 msgid "Account Journal" -msgstr "" +msgstr "Konto journal" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 msgid "Tax calculation rounding method" -msgstr "" +msgstr "Momsafrundings-metode" #. module: account #: model:process.node,name:account.process_node_paidinvoice0 #: model:process.node,name:account.process_node_supplierpaidinvoice0 msgid "Paid invoice" -msgstr "" +msgstr "Betalt faktura" #. module: account #: view:account.invoice.refund:0 @@ -7615,7 +7637,7 @@ msgstr "" #. module: account #: field:account.move.line.reconcile.writeoff,comment:0 msgid "Comment" -msgstr "" +msgstr "Kommentar" #. module: account #: field:account.tax,domain:0 @@ -7641,12 +7663,12 @@ msgstr "" #: field:account.invoice.tax,invoice_id:0 #: model:ir.model,name:account.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Faktura linie" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "Kunde og leverandør kreditnotaer" #. module: account #: field:account.financial.report,sign:0 @@ -7677,7 +7699,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_view msgid "Root/View" -msgstr "" +msgstr "Basis/oversigt" #. module: account #: code:addons/account/account.py:3206 @@ -7689,30 +7711,30 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 msgid "PRO-FORMA" -msgstr "" +msgstr "PRO-FORMA" #. module: account #: selection:account.entries.report,move_line_state:0 #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "" +msgstr "Ikke i balance" #. module: account #: selection:account.move.line,centralisation:0 msgid "Normal" -msgstr "" +msgstr "Normal" #. module: account #: model:ir.actions.act_window,name:account.action_email_templates #: model:ir.ui.menu,name:account.menu_email_templates msgid "Email Templates" -msgstr "" +msgstr "Email Templates" #. module: account #: view:account.move.line:0 msgid "Optional Information" -msgstr "" +msgstr "Valgfri information" #. module: account #: view:account.analytic.line:0 @@ -7727,7 +7749,7 @@ msgstr "Bruger" #. module: account #: selection:account.account,currency_mode:0 msgid "At Date" -msgstr "" +msgstr "På dato" #. module: account #: help:account.move.line,date_maturity:0 @@ -7739,23 +7761,23 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_multi_currency msgid "Multi-Currencies" -msgstr "" +msgstr "Multi-valuta" #. module: account #: field:account.model.line,date_maturity:0 msgid "Maturity Date" -msgstr "" +msgstr "Modenheds dato" #. module: account #: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" -msgstr "" +msgstr "Salgs journal" #. module: account #: model:ir.model,name:account.model_account_invoice_tax msgid "Invoice Tax" -msgstr "" +msgstr "Faktura moms" #. module: account #: code:addons/account/account_move_line.py:1185 @@ -7767,7 +7789,7 @@ msgstr "" #: view:account.financial.report:0 #: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy msgid "Account Reports Hierarchy" -msgstr "" +msgstr "Konto rapport hierarki" #. module: account #: help:account.account.template,chart_template_id:0 @@ -7782,7 +7804,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "" +msgstr "Ikke-bogførte posteringer" #. module: account #: help:account.invoice.refund,date:0 @@ -7794,7 +7816,7 @@ msgstr "" #. module: account #: view:product.template:0 msgid "Sales Properties" -msgstr "" +msgstr "Salgs egenskaber" #. module: account #: code:addons/account/account.py:3541 @@ -7807,36 +7829,36 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile msgid "Manual Reconciliation" -msgstr "" +msgstr "Manuel afstemning/udligning" #. module: account #: report:account.overdue:0 msgid "Total amount due:" -msgstr "" +msgstr "Totalf forfaldende beløb:" #. module: account #: field:account.analytic.chart,to_date:0 #: field:project.account.analytic.line,to_date:0 msgid "To" -msgstr "" +msgstr "Til" #. module: account #: selection:account.move.line,centralisation:0 #: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" -msgstr "" +msgstr "Vauta justering" #. module: account #: field:account.fiscalyear.close,fy_id:0 msgid "Fiscal Year to close" -msgstr "" +msgstr "Finansår til afslutning" #. module: account #: view:account.invoice.cancel:0 #: model:ir.actions.act_window,name:account.action_account_invoice_cancel msgid "Cancel Selected Invoices" -msgstr "" +msgstr "Fortryd valgte fakturaer" #. module: account #: help:account.account.type,report_type:0 @@ -7851,7 +7873,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "May" -msgstr "" +msgstr "Maj" #. module: account #: code:addons/account/account_invoice.py:820 @@ -7862,7 +7884,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_chart_template msgid "Templates for Account Chart" -msgstr "" +msgstr "Skabeloner for kontooversigter" #. module: account #: help:account.model.line,sequence:0 @@ -7874,12 +7896,12 @@ msgstr "" #. module: account #: field:account.move.line,amount_residual_currency:0 msgid "Residual Amount in Currency" -msgstr "" +msgstr "Tilbageværende valutabeløb" #. module: account #: field:account.config.settings,sale_refund_sequence_prefix:0 msgid "Credit note sequence" -msgstr "" +msgstr "Kreditnota bilagsrækkefølge" #. module: account #: model:ir.actions.act_window,name:account.action_validate_account_move @@ -7888,7 +7910,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "" +msgstr "Efterposteringer" #. module: account #: selection:account.bank.statement.line,type:0 @@ -7898,12 +7920,12 @@ msgstr "" #: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" -msgstr "" +msgstr "Kunde" #. module: account #: field:account.financial.report,name:0 msgid "Report Name" -msgstr "" +msgstr "Rapport navn" #. module: account #: model:account.account.type,name:account.data_account_type_cash @@ -7914,13 +7936,13 @@ msgstr "" #: code:addons/account/account.py:3092 #, python-format msgid "Cash" -msgstr "" +msgstr "Kontanter" #. module: account #: field:account.fiscal.position.account,account_dest_id:0 #: field:account.fiscal.position.account.template,account_dest_id:0 msgid "Account Destination" -msgstr "" +msgstr "Konto destination" #. module: account #: help:account.invoice.refund,filter_refund:0 @@ -7940,22 +7962,22 @@ msgstr "" #: field:account.tax.code,sequence:0 #: field:account.tax.template,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Rækkefølge" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "Paypal konto" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "" +msgstr "Journalindtastnings nummer" #. module: account #: view:account.financial.report:0 msgid "Parent Report" -msgstr "" +msgstr "Hoved rapport" #. module: account #: constraint:account.account:0 @@ -7964,6 +7986,8 @@ msgid "" "Error!\n" "You cannot create recursive accounts." msgstr "" +"Fejl!\n" +"Du kan ikke oprette rekursive konti." #. module: account #: model:ir.model,name:account.model_cash_box_in @@ -7973,7 +7997,7 @@ msgstr "" #. module: account #: help:account.invoice,move_id:0 msgid "Link to the automatically generated Journal Items." -msgstr "" +msgstr "Link til automatisk oprettede posteringer" #. module: account #: model:ir.model,name:account.model_account_config_settings @@ -7984,24 +8008,24 @@ msgstr "" #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "Monthly" -msgstr "" +msgstr "Månedlig" #. module: account #: model:account.account.type,name:account.data_account_type_asset msgid "Asset" -msgstr "" +msgstr "Aktiv" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "" +msgstr "Beregnet Balance" #. module: account #. openerp-web #: code:addons/account/static/src/js/account_move_reconciliation.js:89 #, python-format msgid "You must choose at least one record." -msgstr "" +msgstr "Du skal vælge mindst en post." #. module: account #: field:account.account,parent_id:0 @@ -8013,7 +8037,7 @@ msgstr "Forrige" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Profit" -msgstr "" +msgstr "Fortjeneste" #. module: account #: help:account.payment.term.line,days2:0 @@ -8029,7 +8053,7 @@ msgstr "" #. module: account #: view:account.move.line.reconcile:0 msgid "Reconciliation Transactions" -msgstr "" +msgstr "Udlignings transaktioner" #. module: account #: model:ir.ui.menu,name:account.menu_finance_legal_statement @@ -8067,7 +8091,7 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_3rdparty_ledger_other #: model:ir.ui.menu,name:account.menu_account_partner_ledger msgid "Partner Ledger" -msgstr "" +msgstr "Partner regnskab" #. module: account #: selection:account.tax.template,type:0 @@ -8087,17 +8111,17 @@ msgstr "Advarsel !" #: help:account.bank.statement,message_unread:0 #: help:account.invoice,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Hvis afmærket, kræver nye beskeder din attention" #. module: account #: field:res.company,tax_calculation_rounding_method:0 msgid "Tax Calculation Rounding Method" -msgstr "" +msgstr "Moms afrundingsmetode" #. module: account #: field:account.entries.report,move_line_state:0 msgid "State of Move Line" -msgstr "" +msgstr "Status på flytte-linie" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile @@ -8108,12 +8132,12 @@ msgstr "" #: view:account.subscription.generate:0 #: model:ir.model,name:account.model_account_subscription_generate msgid "Subscription Compute" -msgstr "" +msgstr "Abonnements beregning" #. module: account #: view:account.move.line.unreconcile.select:0 msgid "Open for Unreconciliation" -msgstr "" +msgstr "Åben af af-udligning" #. module: account #: field:account.bank.statement.line,partner_id:0 @@ -8138,23 +8162,23 @@ msgstr "" #: model:ir.model,name:account.model_res_partner #: field:report.invoice.created,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Partner" #. module: account #: help:account.change.currency,currency_id:0 msgid "Select a currency to apply on the invoice" -msgstr "" +msgstr "Vælg en valuta til fakturaen" #. module: account #: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" -msgstr "" +msgstr "Ingen faktura linier !" #. module: account #: view:account.financial.report:0 msgid "Report Type" -msgstr "" +msgstr "Rapport type" #. module: account #: help:account.open.closed.fiscalyear,fyear_id:0 @@ -8190,7 +8214,7 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_electronicfile0 msgid "Automatic entry" -msgstr "" +msgstr "Automatisk postering" #. module: account #: help:account.account,reconcile:0 @@ -8213,12 +8237,12 @@ msgstr "" #: view:account.analytic.line:0 #: model:ir.actions.act_window,name:account.action_account_analytic_line_form msgid "Analytic Entries" -msgstr "" +msgstr "Analytiske posteringer" #. module: account #: view:account.analytic.account:0 msgid "Associated Partner" -msgstr "" +msgstr "Tilknyttet partner" #. module: account #: code:addons/account/account_invoice.py:1465 @@ -8235,7 +8259,7 @@ msgstr "Yderligere information" #: field:account.invoice.report,residual:0 #: field:account.invoice.report,user_currency_residual:0 msgid "Total Residual" -msgstr "" +msgstr "Totalt tilbageværende" #. module: account #: view:account.bank.statement:0 @@ -8246,7 +8270,7 @@ msgstr "" #: model:process.node,note:account.process_node_invoiceinvoice0 #: model:process.node,note:account.process_node_supplierinvoiceinvoice0 msgid "Invoice's state is Open" -msgstr "" +msgstr "Fakturaens status er Åben" #. module: account #: view:account.analytic.account:0 @@ -8275,17 +8299,17 @@ msgstr "Status" #: model:ir.actions.act_window,name:account.action_account_analytic_cost #: model:ir.actions.report.xml,name:account.account_analytic_account_cost_ledger msgid "Cost Ledger" -msgstr "" +msgstr "Omkostnings konto" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "" +msgstr "Intet regnskabsår er oprettet for dette firma" #. module: account #: view:account.invoice:0 msgid "Proforma" -msgstr "" +msgstr "Proforma" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -8305,13 +8329,13 @@ msgstr "" #: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" -msgstr "" +msgstr "Indkøbs kreditnota journal" #. module: account #: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Vælg en bilagsserie på journalen" #. module: account #: help:account.tax.template,amount:0 @@ -8321,17 +8345,17 @@ msgstr "" #. module: account #: view:account.analytic.account:0 msgid "Current Accounts" -msgstr "" +msgstr "Nuværende konti" #. module: account #: view:account.invoice.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "Sorter efter faktura dato" #. module: account #: help:account.journal,user_id:0 msgid "The user responsible for this journal" -msgstr "" +msgstr "Brugeren er ansvarlig for denne journal" #. module: account #: help:account.config.settings,module_account_followup:0 @@ -8382,32 +8406,32 @@ msgstr "Net Total:" #: code:addons/account/wizard/account_report_common.py:158 #, python-format msgid "Select a starting and an ending period." -msgstr "" +msgstr "Vælg en start- og slutperiode." #. module: account #: field:account.config.settings,sale_sequence_next:0 msgid "Next invoice number" -msgstr "" +msgstr "Næste faktura nummer" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting msgid "Generic Reporting" -msgstr "" +msgstr "Generisk rapportering" #. module: account #: field:account.move.line.reconcile.writeoff,journal_id:0 msgid "Write-Off Journal" -msgstr "" +msgstr "Afskrivnings journal" #. module: account #: field:account.chart.template,property_account_income_categ:0 msgid "Income Category Account" -msgstr "" +msgstr "Omsætnings kategori konto" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "" +msgstr "Justeret balance" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form @@ -8459,24 +8483,24 @@ msgstr "Firma valuta" #: field:account.vat.declaration,chart_account_id:0 #: field:accounting.report,chart_account_id:0 msgid "Chart of Account" -msgstr "" +msgstr "Konto oversigt" #. module: account #: model:process.node,name:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_reconcilepaid0 msgid "Payment" -msgstr "" +msgstr "Betaling" #. module: account #: view:account.automatic.reconcile:0 msgid "Reconciliation Result" -msgstr "" +msgstr "Afstemnings/udlignings resultat" #. module: account #: field:account.bank.statement,balance_end_real:0 #: field:account.treasury.report,ending_balance:0 msgid "Ending Balance" -msgstr "" +msgstr "Afslutnings balance" #. module: account #: field:account.journal,centralisation:0 @@ -8520,7 +8544,7 @@ msgstr "" #. module: account #: model:process.transition,name:account.process_transition_filestatement0 msgid "Automatic import of the bank sta" -msgstr "" +msgstr "Automatisk import af bank-udtog" #. module: account #: code:addons/account/account_invoice.py:381 @@ -8536,7 +8560,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Tilføj" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -8575,12 +8599,12 @@ msgstr "" #: model:process.node,name:account.process_node_supplierreconciliation0 #, python-format msgid "Reconciliation" -msgstr "" +msgstr "Udlingning/afstemning" #. module: account #: view:account.tax.template:0 msgid "Keep empty to use the income account" -msgstr "" +msgstr "Efterlad tom for at anvende omsætningskontoen" #. module: account #: view:account.invoice:0 @@ -8615,12 +8639,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state msgid "Fiscalyear Close state" -msgstr "" +msgstr "Regnskabsår luknings status" #. module: account #: field:account.invoice.refund,journal_id:0 msgid "Refund Journal" -msgstr "" +msgstr "Krediterings journal" #. module: account #: report:account.account.balance:0 @@ -8630,7 +8654,7 @@ msgstr "" #: report:account.general.ledger_landscape:0 #: report:account.partner.balance:0 msgid "Filter By" -msgstr "" +msgstr "Sorter efter" #. module: account #: code:addons/account/wizard/account_period_close.py:51 @@ -8638,18 +8662,19 @@ msgstr "" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" +"For at lukke en periode, skal du først bogføre relaterede bogføringskladder." #. module: account #: view:account.entries.report:0 #: view:board.board:0 #: model:ir.actions.act_window,name:account.action_company_analysis_tree msgid "Company Analysis" -msgstr "" +msgstr "Firma analyse" #. module: account #: help:account.invoice,account_id:0 msgid "The partner account used for this invoice." -msgstr "" +msgstr "Partner konto bag denne faktura." #. module: account #: code:addons/account/account.py:3391 @@ -8662,28 +8687,28 @@ msgstr "" #: view:account.tax.code.template:0 #: field:account.tax.code.template,parent_id:0 msgid "Parent Code" -msgstr "" +msgstr "Basis kode" #. module: account #: model:ir.model,name:account.model_account_payment_term_line msgid "Payment Term Line" -msgstr "" +msgstr "Betalingsbetingelse linie" #. module: account #: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" -msgstr "" +msgstr "Indkøbs journal" #. module: account #: field:account.invoice,amount_untaxed:0 msgid "Subtotal" -msgstr "" +msgstr "Subtotal" #. module: account #: view:account.vat.declaration:0 msgid "Print Tax Statement" -msgstr "" +msgstr "Udskriv moms oversigt" #. module: account #: view:account.model.line:0 @@ -8703,12 +8728,12 @@ msgstr "Forfaldsdato" #: model:ir.ui.menu,name:account.menu_account_supplier #: model:ir.ui.menu,name:account.menu_finance_payables msgid "Suppliers" -msgstr "" +msgstr "Leverandører" #. module: account #: view:account.journal:0 msgid "Accounts Type Allowed (empty for no control)" -msgstr "" +msgstr "Tilladte konto typer (tom hvis ingen kontrol)" #. module: account #: help:account.move.line,amount_residual:0 @@ -8720,13 +8745,13 @@ msgstr "" #. module: account #: view:account.tax.code:0 msgid "Statistics" -msgstr "" +msgstr "Statistik" #. module: account #: field:account.analytic.chart,from_date:0 #: field:project.account.analytic.line,from_date:0 msgid "From" -msgstr "" +msgstr "Fra" #. module: account #: help:accounting.report,debit_credit:0 @@ -8739,7 +8764,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close msgid "Fiscalyear Close" -msgstr "" +msgstr "Regnskabsår lukning" #. module: account #: sql_constraint:account.account:0 @@ -8756,12 +8781,12 @@ msgstr "" #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened msgid "Unpaid Invoices" -msgstr "" +msgstr "Ubetalte fakturaer" #. module: account #: field:account.move.line.reconcile,debit:0 msgid "Debit amount" -msgstr "" +msgstr "Debit beløb" #. module: account #: view:account.aged.trial.balance:0 @@ -8773,29 +8798,29 @@ msgstr "" #: view:account.common.report:0 #: view:account.invoice:0 msgid "Print" -msgstr "" +msgstr "Udskriv" #. module: account #: view:account.period.close:0 msgid "Are you sure?" -msgstr "" +msgstr "Er du sikker?" #. module: account #: view:account.journal:0 msgid "Accounts Allowed (empty for no control)" -msgstr "" +msgstr "Tilladte konti (tom hvis ingen kontrol)" #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "Salgs moms (%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 #: model:ir.actions.act_window,name:account.action_account_analytic_chart #: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 msgid "Chart of Analytic Accounts" -msgstr "" +msgstr "Analytisk konto oversigt" #. module: account #: model:ir.actions.act_window,help:account.action_subscription_form @@ -8818,36 +8843,36 @@ msgstr "" #: view:account.journal:0 #: model:ir.ui.menu,name:account.menu_configuration_misc msgid "Miscellaneous" -msgstr "" +msgstr "Diverse" #. module: account #: help:res.partner,debit:0 msgid "Total amount you have to pay to this supplier." -msgstr "" +msgstr "Total beløb du skal betale denne leverandør." #. module: account #: model:process.node,name:account.process_node_analytic0 #: model:process.node,name:account.process_node_analyticcost0 msgid "Analytic Costs" -msgstr "" +msgstr "Analytiske omkostninger" #. module: account #: field:account.analytic.journal,name:0 #: report:account.general.journal:0 #: field:account.journal,name:0 msgid "Journal Name" -msgstr "" +msgstr "Journal navn" #. module: account #: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" -msgstr "" +msgstr "Indtastning \"%s\" er ikke valid !" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Smallest Text" -msgstr "" +msgstr "Mindste skrift" #. module: account #: help:account.config.settings,module_account_check_writing:0 @@ -8920,7 +8945,7 @@ msgstr "" #: field:res.partner.bank,currency_id:0 #: field:wizard.multi.charts.accounts,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Valuta" #. module: account #: help:account.invoice.refund,journal_id:0 @@ -8939,35 +8964,35 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_validentries0 msgid "Accountant validates the accounting entries coming from the invoice." -msgstr "" +msgstr "Bogholder godkender kontoregistreringer der oprinder fra fakturaen." #. module: account #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open msgid "Reconciled entries" -msgstr "" +msgstr "Udlignede posteringer" #. module: account #: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" -msgstr "" +msgstr "Forkert model !" #. module: account #: view:account.tax.code.template:0 #: view:account.tax.template:0 msgid "Tax Template" -msgstr "" +msgstr "Moms skabelon" #. module: account #: field:account.invoice.refund,period:0 msgid "Force period" -msgstr "" +msgstr "Gennemtving periode" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "" +msgstr "Udskriv partner balance" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -8991,7 +9016,7 @@ msgstr "" #. module: account #: field:res.partner,contract_ids:0 msgid "Contracts" -msgstr "" +msgstr "Kontrakter" #. module: account #: field:account.cashbox.line,bank_statement_id:0 @@ -9000,14 +9025,14 @@ msgstr "" #: field:account.financial.report,credit:0 #: field:account.financial.report,debit:0 msgid "unknown" -msgstr "" +msgstr "ukendt" #. module: account #: field:account.fiscalyear.close,journal_id:0 #: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" -msgstr "" +msgstr "Åbnings journal" #. module: account #: model:process.transition,note:account.process_transition_customerinvoice0 @@ -9018,14 +9043,14 @@ msgstr "" #: field:account.bank.statement,message_is_follower:0 #: field:account.invoice,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Er en \"follower\"" #. module: account #: view:account.move:0 #: field:account.move,narration:0 #: field:account.move.line,narration:0 msgid "Internal Note" -msgstr "" +msgstr "Intern note" #. module: account #: constraint:account.account:0 @@ -9038,7 +9063,7 @@ msgstr "" #. module: account #: field:account.config.settings,has_fiscal_year:0 msgid "Company has a fiscal year" -msgstr "" +msgstr "Firmaet har et regnskabsår" #. module: account #: help:account.tax,child_depend:0 @@ -9052,34 +9077,34 @@ msgstr "" #: code:addons/account/account.py:634 #, python-format msgid "You cannot deactivate an account that contains journal items." -msgstr "" +msgstr "Du kan ikke in-aktivere en konto med posteringer." #. module: account #: selection:account.tax,applicable_type:0 msgid "Given by Python Code" -msgstr "" +msgstr "Styret af Python programmering" #. module: account #: field:account.analytic.journal,code:0 msgid "Journal Code" -msgstr "" +msgstr "Journal kode" #. module: account #: view:account.invoice:0 #: field:account.move.line,amount_residual:0 msgid "Residual Amount" -msgstr "" +msgstr "Tilbageværende beløb" #. module: account #: field:account.invoice,move_lines:0 #: field:account.move.reconcile,line_id:0 msgid "Entry Lines" -msgstr "" +msgstr "Indtastnings linier" #. module: account #: model:ir.actions.act_window,name:account.action_open_journal_button msgid "Open Journal" -msgstr "" +msgstr "Åben journal" #. module: account #: report:account.analytic.account.journal:0 @@ -9091,24 +9116,24 @@ msgstr "" #: report:account.analytic.account.journal:0 #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Period from" -msgstr "" +msgstr "Periode fra" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Valuta" #. module: account #: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" -msgstr "" +msgstr "Salgs kredit journal" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Information" -msgstr "" +msgstr "Information" #. module: account #: view:account.invoice.confirm:0 @@ -9123,22 +9148,22 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_bankstatement0 msgid "Registered payment" -msgstr "" +msgstr "Registreret betaling" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close states of Fiscal year and periods" -msgstr "" +msgstr "Luk status på regnskabsår og perioder" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "Indkøbs kredit journal" #. module: account #: view:account.analytic.line:0 msgid "Product Information" -msgstr "" +msgstr "Produktinformation" #. module: account #: report:account.analytic.account.journal:0 @@ -9146,29 +9171,29 @@ msgstr "" #: view:account.move.line:0 #: model:ir.ui.menu,name:account.next_id_40 msgid "Analytic" -msgstr "" +msgstr "Analytisk" #. module: account #: model:process.node,name:account.process_node_invoiceinvoice0 #: model:process.node,name:account.process_node_supplierinvoiceinvoice0 msgid "Create Invoice" -msgstr "" +msgstr "Dan faktura" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "Opsæt regnskabs data" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 msgid "Purchase Tax(%)" -msgstr "" +msgstr "Indkøbs moms(%)" #. module: account #: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." -msgstr "" +msgstr "Venligst opret faktura linier." #. module: account #: code:addons/account/wizard/pos_box.py:36 @@ -9181,7 +9206,7 @@ msgstr "" #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "" +msgstr "Vis detaljer" #. module: account #: code:addons/account/account.py:3203 @@ -9200,7 +9225,7 @@ msgstr "" #: view:account.analytic.line:0 #: view:analytic.entries.report:0 msgid "My Entries" -msgstr "" +msgstr "Mine indtastninger" #. module: account #: help:account.invoice,state:0 @@ -9220,7 +9245,7 @@ msgstr "" #: field:account.period,date_stop:0 #: model:ir.ui.menu,name:account.menu_account_end_year_treatments msgid "End of Period" -msgstr "" +msgstr "Slut på periode" #. module: account #: field:account.account,financial_report_ids:0 @@ -9229,7 +9254,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_report #: model:ir.ui.menu,name:account.menu_account_reports msgid "Financial Reports" -msgstr "" +msgstr "Finans rapporter" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 @@ -9262,7 +9287,7 @@ msgstr "" #: field:accounting.report,period_from:0 #: field:accounting.report,period_from_cmp:0 msgid "Start Period" -msgstr "" +msgstr "Start periode" #. module: account #: model:ir.actions.report.xml,name:account.account_central_journal @@ -9277,12 +9302,12 @@ msgstr "" #. module: account #: field:res.partner,ref_companies:0 msgid "Companies that refers to partner" -msgstr "" +msgstr "Firmaer med relation til partneren" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "Udbed kreditnota" #. module: account #: view:account.move.line:0 @@ -9297,28 +9322,28 @@ msgstr "" #. module: account #: field:account.subscription,period_total:0 msgid "Number of Periods" -msgstr "" +msgstr "Antal perioder" #. module: account #: report:account.overdue:0 msgid "Document: Customer account statement" -msgstr "" +msgstr "Dokument: Kunde konto udtog" #. module: account #: view:account.account.template:0 msgid "Receivale Accounts" -msgstr "" +msgstr "Debitor konti" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 msgid "Supplier credit note sequence" -msgstr "" +msgstr "Leverandør kreditnota bilagsserie" #. module: account #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "" +msgstr "Fakturaen er allerede udlignet." #. module: account #: help:account.config.settings,module_account_payment:0 @@ -9334,13 +9359,13 @@ msgstr "" #. module: account #: xsl:account.transfer:0 msgid "Document" -msgstr "" +msgstr "Dokument" #. module: account #: view:account.chart.template:0 #: field:account.chart.template,property_account_receivable:0 msgid "Receivable Account" -msgstr "" +msgstr "Debitor konto" #. module: account #: code:addons/account/account_move_line.py:771 @@ -9348,6 +9373,8 @@ msgstr "" #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" +"For at udligne/afstemme posteringerne skal firma være det samme på alle " +"posteringer." #. module: account #: field:account.account,balance:0 @@ -9373,18 +9400,18 @@ msgstr "" #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 msgid "Balance" -msgstr "" +msgstr "Balance" #. module: account #: model:process.node,note:account.process_node_supplierbankstatement0 msgid "Manually or automatically entered in the system" -msgstr "" +msgstr "Manuelt indtastet eller automatisk genereret i systemet" #. module: account #: report:account.account.balance:0 #: report:account.general.ledger_landscape:0 msgid "Display Account" -msgstr "" +msgstr "Vis Konto" #. module: account #: selection:account.account,type:0 @@ -9413,13 +9440,13 @@ msgstr "" #. module: account #: view:account.fiscalyear.close:0 msgid "Generate Fiscal Year Opening Entries" -msgstr "" +msgstr "Opret regnskabsår åbningsposteringer" #. module: account #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Filters By" -msgstr "" +msgstr "Filtrér efter" #. module: account #: field:account.cashbox.line,number_closing:0 @@ -9431,7 +9458,7 @@ msgstr "" #: model:process.node,note:account.process_node_manually0 #: model:process.transition,name:account.process_transition_invoicemanually0 msgid "Manual entry" -msgstr "" +msgstr "Manuel indtastning" #. module: account #: report:account.general.ledger:0 @@ -9442,19 +9469,19 @@ msgstr "" #: view:account.move.line:0 #: field:analytic.entries.report,move_id:0 msgid "Move" -msgstr "" +msgstr "Flytning" #. module: account #: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Ulovlig handling!" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "Dato / Periode" #. module: account #: report:account.central.journal:0 @@ -9464,7 +9491,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement msgid "Bank statements" -msgstr "" +msgstr "Bank kontoudtog" #. module: account #: constraint:account.period:0 @@ -9477,7 +9504,7 @@ msgstr "" #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Kunden har intet forfaldent." #. module: account #: help:account.tax,account_paid_id:0 @@ -9495,12 +9522,12 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Source" -msgstr "" +msgstr "Kilde" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Date of the day" -msgstr "" +msgstr "Dagens dato" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:49 @@ -9520,7 +9547,7 @@ msgstr "" #. module: account #: field:account.invoice,sent:0 msgid "Sent" -msgstr "" +msgstr "Sendt" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu @@ -9531,12 +9558,12 @@ msgstr "" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "Standard salgs moms" #. module: account #: report:account.overdue:0 msgid "Balance :" -msgstr "" +msgstr "Balance :" #. module: account #: code:addons/account/account.py:1587 @@ -9547,19 +9574,19 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "Periodisk behandling" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "" +msgstr "Kunde og leverandør fakturaer" #. module: account #: model:process.node,note:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_paymentorderbank0 #: model:process.transition,name:account.process_transition_paymentreconcile0 msgid "Payment entries" -msgstr "" +msgstr "Betalings posteringer" #. module: account #: selection:account.entries.report,month:0 @@ -9568,22 +9595,22 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "July" -msgstr "" +msgstr "Juli" #. module: account #: view:account.account:0 msgid "Chart of accounts" -msgstr "Kontoplan" +msgstr "Posterings ark" #. module: account #: field:account.subscription.line,subscription_id:0 msgid "Subscription" -msgstr "" +msgstr "Abonnement" #. module: account #: model:ir.model,name:account.model_account_analytic_balance msgid "Account Analytic Balance" -msgstr "" +msgstr "Balance for analytisk konto" #. module: account #: report:account.account.balance:0 @@ -9611,23 +9638,23 @@ msgstr "" #: field:accounting.report,period_to:0 #: field:accounting.report,period_to_cmp:0 msgid "End Period" -msgstr "" +msgstr "Slut periode" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 msgid "Expense View" -msgstr "" +msgstr "Omkostnings visning" #. module: account #: field:account.move.line,date_maturity:0 msgid "Due date" -msgstr "" +msgstr "Forfaldsdato" #. module: account #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "Straks betaling" #. module: account #: code:addons/account/account.py:1502 @@ -9649,17 +9676,17 @@ msgstr "" #: view:account.subscription:0 #: model:ir.model,name:account.model_account_subscription msgid "Account Subscription" -msgstr "" +msgstr "Konto for abonnement" #. module: account #: report:account.overdue:0 msgid "Maturity date" -msgstr "" +msgstr "Forældelses dato" #. module: account #: view:account.subscription:0 msgid "Entry Subscription" -msgstr "" +msgstr "Abonnements indtastning" #. module: account #: report:account.account.balance:0 @@ -9689,7 +9716,7 @@ msgstr "" #: field:accounting.report,date_from:0 #: field:accounting.report,date_from_cmp:0 msgid "Start Date" -msgstr "" +msgstr "Start dato" #. module: account #: help:account.invoice,reconciled:0 @@ -9703,31 +9730,31 @@ msgstr "" #: view:account.invoice.report:0 #: model:process.node,name:account.process_node_supplierdraftinvoices0 msgid "Draft Invoices" -msgstr "" +msgstr "Faktura kladder" #. module: account #: view:cash.box.in:0 #: model:ir.actions.act_window,name:account.action_cash_box_in msgid "Put Money In" -msgstr "" +msgstr "Læg penge i" #. module: account #: selection:account.account.type,close_method:0 #: view:account.entries.report:0 #: view:account.move.line:0 msgid "Unreconciled" -msgstr "" +msgstr "Uudlignet" #. module: account #: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" -msgstr "" +msgstr "Forkert total !" #. module: account #: field:account.journal,sequence_id:0 msgid "Entry Sequence" -msgstr "" +msgstr "Bilagsserie" #. module: account #: model:ir.actions.act_window,help:account.action_account_period_tree @@ -9744,29 +9771,29 @@ msgstr "" #. module: account #: view:account.analytic.account:0 msgid "Pending" -msgstr "" +msgstr "Afventer" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_cost_ledger_journal #: model:ir.actions.report.xml,name:account.account_analytic_account_quantity_cost_ledger msgid "Cost Ledger (Only quantities)" -msgstr "" +msgstr "Omkostnings konto (kun antal)" #. module: account #: model:process.transition,name:account.process_transition_analyticinvoice0 #: model:process.transition,name:account.process_transition_supplieranalyticcost0 msgid "From analytic accounts" -msgstr "" +msgstr "Fra analytiske konti" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Opsæt dit regnskabsår" #. module: account #: field:account.period,name:0 msgid "Period Name" -msgstr "" +msgstr "Periode navn" #. module: account #: code:addons/account/wizard/account_invoice_state.py:68 @@ -9801,7 +9828,7 @@ msgstr "" #. module: account #: view:accounting.report:0 msgid "Comparison" -msgstr "" +msgstr "Sammenligning" #. module: account #: code:addons/account/account_move_line.py:1119 @@ -9837,19 +9864,19 @@ msgstr "" #. module: account #: field:account.period,special:0 msgid "Opening/Closing Period" -msgstr "" +msgstr "Åbnings-/luknings periode" #. module: account #: field:account.account,currency_id:0 #: field:account.account.template,currency_id:0 #: field:account.bank.accounts.wizard,currency_id:0 msgid "Secondary Currency" -msgstr "" +msgstr "Sekundær valuta" #. module: account #: model:ir.model,name:account.model_validate_account_move msgid "Validate Account Move" -msgstr "" +msgstr "Godkend konto flytning" #. module: account #: field:account.account,credit:0 @@ -9873,12 +9900,12 @@ msgstr "" #: report:account.vat.declaration:0 #: field:report.account.receivable,credit:0 msgid "Credit" -msgstr "" +msgstr "Kredit" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "Proforma faktura " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal @@ -9888,7 +9915,7 @@ msgstr "" #. module: account #: view:account.model:0 msgid "Journal Entry Model" -msgstr "" +msgstr "Journal indtastnings model" #. module: account #: code:addons/account/account.py:1073 @@ -9915,7 +9942,7 @@ msgstr "" #: field:account.invoice.report,price_total:0 #: field:account.invoice.report,user_currency_price_total:0 msgid "Total Without Tax" -msgstr "" +msgstr "Total før moms" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -9946,12 +9973,12 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_account_period #: model:ir.ui.menu,name:account.next_id_23 msgid "Periods" -msgstr "" +msgstr "Perioder" #. module: account #: field:account.invoice.report,currency_rate:0 msgid "Currency Rate" -msgstr "" +msgstr "Valuta kurs" #. module: account #: field:account.account,tax_ids:0 @@ -9959,7 +9986,7 @@ msgstr "" #: field:account.account.template,tax_ids:0 #: view:account.chart.template:0 msgid "Default Taxes" -msgstr "" +msgstr "Standard moms" #. module: account #: selection:account.entries.report,month:0 @@ -9968,12 +9995,12 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "April" -msgstr "" +msgstr "April" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 msgid "Profit (Loss) to report" -msgstr "" +msgstr "Tab/vind til rapportering" #. module: account #: code:addons/account/account_invoice.py:379 @@ -9984,7 +10011,7 @@ msgstr "" #. module: account #: view:account.move.line.reconcile.select:0 msgid "Open for Reconciliation" -msgstr "" +msgstr "Åben for udligning" #. module: account #: field:account.account,parent_left:0 @@ -10000,7 +10027,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree2 #: model:ir.ui.menu,name:account.menu_action_invoice_tree2 msgid "Supplier Invoices" -msgstr "" +msgstr "Leverandør fakturaer" #. module: account #: view:account.analytic.line:0 @@ -10016,7 +10043,7 @@ msgstr "" #: field:report.account.sales,product_id:0 #: field:report.account_type.sales,product_id:0 msgid "Product" -msgstr "" +msgstr "Vare" #. module: account #: model:ir.actions.act_window,help:account.action_validate_account_move @@ -10029,19 +10056,19 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_period msgid "Account period" -msgstr "" +msgstr "Konto periode" #. module: account #: view:account.subscription:0 msgid "Remove Lines" -msgstr "" +msgstr "Fjern linier" #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 #: selection:account.entries.report,type:0 msgid "Regular" -msgstr "" +msgstr "Almindelig" #. module: account #: view:account.account:0 @@ -10050,17 +10077,17 @@ msgstr "" #: field:account.account.template,type:0 #: field:account.entries.report,type:0 msgid "Internal Type" -msgstr "" +msgstr "Intern type" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Dan posteringer før" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running msgid "Running Subscriptions" -msgstr "" +msgstr "Aktive abonnementer" #. module: account #: view:account.analytic.balance:0 @@ -10068,7 +10095,7 @@ msgstr "" #: view:account.analytic.inverted.balance:0 #: view:account.analytic.journal.report:0 msgid "Select Period" -msgstr "" +msgstr "Vælg periode" #. module: account #: view:account.entries.report:0 @@ -10077,7 +10104,7 @@ msgstr "" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Posted" -msgstr "" +msgstr "Posteret" #. module: account #: report:account.account.balance:0 @@ -10106,7 +10133,7 @@ msgstr "" #: field:accounting.report,date_to:0 #: field:accounting.report,date_to_cmp:0 msgid "End Date" -msgstr "" +msgstr "Slut dato" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -10153,12 +10180,12 @@ msgstr "" #: help:product.category,property_account_income_categ:0 #: help:product.template,property_account_income:0 msgid "This account will be used to value outgoing stock using sale price." -msgstr "" +msgstr "Denne konto bruge til at værdiansætte udgående lager til salgspris." #. module: account #: field:account.invoice,check_total:0 msgid "Verification Total" -msgstr "" +msgstr "Afstemnings total" #. module: account #: report:account.analytic.account.balance:0 @@ -10170,7 +10197,7 @@ msgstr "" #: field:report.account_type.sales,amount_total:0 #: field:report.invoice.created,amount_total:0 msgid "Total" -msgstr "" +msgstr "Total" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:109 @@ -10181,7 +10208,7 @@ msgstr "" #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Moms refusion analytisk konto" #. module: account #: view:account.move.bank.reconcile:0 @@ -10235,24 +10262,24 @@ msgstr "Åben bank afstemning" #: field:analytic.entries.report,company_id:0 #: field:wizard.multi.charts.accounts,company_id:0 msgid "Company" -msgstr "" +msgstr "Firma" #. module: account #: model:ir.ui.menu,name:account.menu_action_subscription_form msgid "Define Recurring Entries" -msgstr "" +msgstr "Definer gentagne posteringer" #. module: account #: field:account.entries.report,date_maturity:0 msgid "Date Maturity" -msgstr "" +msgstr "Forældelses dato" #. module: account #: field:account.invoice.refund,description:0 #: field:cash.box.in,name:0 #: field:cash.box.out,name:0 msgid "Reason" -msgstr "" +msgstr "Årsag" #. module: account #: selection:account.partner.ledger,filter:0 @@ -10260,7 +10287,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled #, python-format msgid "Unreconciled Entries" -msgstr "" +msgstr "Uudlignede posteringer" #. module: account #: help:account.partner.reconcile.process,today_reconciled:0 @@ -10273,7 +10300,7 @@ msgstr "" #. module: account #: view:account.fiscalyear:0 msgid "Create Monthly Periods" -msgstr "" +msgstr "Opret månedlige perioder" #. module: account #: field:account.tax.code.template,sign:0 @@ -10283,12 +10310,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_balance_report msgid "Trial Balance Report" -msgstr "" +msgstr "Råbalance rapport" #. module: account #: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree msgid "Draft statements" -msgstr "" +msgstr "Kladde oversigter" #. module: account #: model:process.transition,note:account.process_transition_statemententries0 @@ -10322,12 +10349,12 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Invoice lines" -msgstr "" +msgstr "Faktura linier" #. module: account #: field:account.chart,period_to:0 msgid "End period" -msgstr "" +msgstr "Slut periode" #. module: account #: sql_constraint:account.journal:0 @@ -10345,28 +10372,28 @@ msgstr "" #. module: account #: view:account.partner.reconcile.process:0 msgid "Go to Next Partner" -msgstr "" +msgstr "Gå til næste partner" #. module: account #: view:account.automatic.reconcile:0 #: view:account.move.line.reconcile.writeoff:0 msgid "Write-Off Move" -msgstr "" +msgstr "Afskrivnings flytning" #. module: account #: model:process.node,note:account.process_node_paidinvoice0 msgid "Invoice's state is Done" -msgstr "" +msgstr "Fakturaens status er Udført" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Styr kundebetalings opfølgning" #. module: account #: model:ir.model,name:account.model_report_account_sales msgid "Report of the Sales by Account" -msgstr "" +msgstr "Salgsrapport pr. konto" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account @@ -10383,7 +10410,7 @@ msgstr "" #: selection:report.invoice.created,type:0 #, python-format msgid "Supplier Invoice" -msgstr "" +msgstr "Leverandør faktura" #. module: account #: field:account.account,debit:0 @@ -10407,7 +10434,7 @@ msgstr "" #: report:account.vat.declaration:0 #: field:report.account.receivable,debit:0 msgid "Debit" -msgstr "" +msgstr "Debet" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -10418,22 +10445,22 @@ msgstr "" #: view:account.invoice:0 #: field:account.invoice,invoice_line:0 msgid "Invoice Lines" -msgstr "" +msgstr "Faktura linier" #. module: account #: help:account.model.line,quantity:0 msgid "The optional quantity on entries." -msgstr "" +msgstr "De optionelle antal på posteringer" #. module: account #: field:account.automatic.reconcile,reconciled:0 msgid "Reconciled transactions" -msgstr "" +msgstr "Udlignings posteringer" #. module: account #: model:ir.model,name:account.model_report_account_receivable msgid "Receivable accounts" -msgstr "" +msgstr "Kreditor konti" #. module: account #: code:addons/account/account_move_line.py:783 @@ -10449,7 +10476,7 @@ msgstr "Partners betalings betingelse" #. module: account #: field:temp.range,name:0 msgid "Range" -msgstr "" +msgstr "Interval" #. module: account #: view:account.analytic.line:0 @@ -10473,17 +10500,17 @@ msgstr "" #: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" -msgstr "" +msgstr "Med flytninger" #. module: account #: view:account.tax.code.template:0 msgid "Account Tax Code Template" -msgstr "" +msgstr "Konto momskode skabelon" #. module: account #: model:process.node,name:account.process_node_manually0 msgid "Manually" -msgstr "" +msgstr "Manuelt" #. module: account #: help:account.move,balance:0 @@ -10498,24 +10525,25 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "December" -msgstr "" +msgstr "December" #. module: account #: view:account.invoice.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "Sorter på måned efter faktura datoen" #. module: account #: code:addons/account/account_analytic_line.py:99 #, python-format msgid "There is no income account defined for this product: \"%s\" (id:%d)." msgstr "" +"Der er ikke angivet nogen indtægtskonto for denne vare: \"%s\" (id:%d)." #. module: account #: model:ir.actions.act_window,name:account.action_aged_receivable_graph #: view:report.aged.receivable:0 msgid "Aged Receivable" -msgstr "" +msgstr "Forfalden debitorsaldo" #. module: account #: field:account.tax,applicable_type:0 @@ -10536,33 +10564,33 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing msgid "Billing" -msgstr "" +msgstr "Fakturering" #. module: account #: view:account.account:0 #: view:account.analytic.account:0 msgid "Parent Account" -msgstr "" +msgstr "Basis konto" #. module: account #: view:report.account.receivable:0 msgid "Accounts by Type" -msgstr "" +msgstr "Konti pr. type" #. module: account #: model:ir.model,name:account.model_account_analytic_chart msgid "Account Analytic Chart" -msgstr "" +msgstr "Analytisk kontooversigt" #. module: account #: help:account.invoice,residual:0 msgid "Remaining amount due." -msgstr "" +msgstr "Tilbageværende forfaldent beløb" #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "" +msgstr "Posteringer sorteret efter" #. module: account #: code:addons/account/account_invoice.py:1546 @@ -10602,7 +10630,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "November" -msgstr "" +msgstr "November" #. module: account #: model:ir.actions.act_window,help:account.action_account_moves_all_a @@ -10629,7 +10657,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Install more chart templates" -msgstr "" +msgstr "Installer flere oversigts skabeloner" #. module: account #: report:account.general.journal:0 @@ -10640,7 +10668,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Search Invoice" -msgstr "" +msgstr "Søg faktura" #. module: account #: report:account.invoice:0 @@ -10649,28 +10677,28 @@ msgstr "" #: code:addons/account/account_invoice.py:1159 #, python-format msgid "Refund" -msgstr "" +msgstr "Tilbagebetaling" #. module: account #: model:ir.model,name:account.model_res_partner_bank msgid "Bank Accounts" -msgstr "" +msgstr "Bankkonti" #. module: account #: field:res.partner,credit:0 msgid "Total Receivable" -msgstr "" +msgstr "Total debitor beløb" #. module: account #: view:account.move.line:0 msgid "General Information" -msgstr "" +msgstr "Generelle oplysninger" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Accounting Documents" -msgstr "" +msgstr "Regnskabs dokumenter" #. module: account #: code:addons/account/account.py:641 @@ -10683,7 +10711,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_validate_account_move_lines msgid "Validate Account Move Lines" -msgstr "" +msgstr "Godkend konto flytnings linier" #. module: account #: help:res.partner,property_account_position:0 @@ -10694,28 +10722,28 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 msgid "Invoice's state is Done." -msgstr "" +msgstr "Fakturaens status er Udført" #. module: account #: model:process.transition,note:account.process_transition_reconcilepaid0 msgid "As soon as the reconciliation is done, the invoice can be paid." -msgstr "" +msgstr "Så snart afstemning er udført, kan fakturaen betales." #. module: account #: code:addons/account/wizard/account_change_currency.py:59 #, python-format msgid "New currency is not configured properly." -msgstr "" +msgstr "Ny valuta er ikke konfigureret korrekt." #. module: account #: view:account.account.template:0 msgid "Search Account Templates" -msgstr "" +msgstr "Søg konto skabeloner" #. module: account #: view:account.invoice.tax:0 msgid "Manual Invoice Taxes" -msgstr "" +msgstr "Manuel faktura moms" #. module: account #: code:addons/account/account_invoice.py:573 @@ -10734,7 +10762,7 @@ msgstr "" #: code:addons/account/static/src/js/account_move_reconciliation.js:80 #, python-format msgid "Never" -msgstr "" +msgstr "Aldrig" #. module: account #: model:ir.model,name:account.model_account_addtmpl_wizard @@ -10750,19 +10778,19 @@ msgstr "" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Partner's" -msgstr "" +msgstr "Partnere" #. module: account #: field:account.account,note:0 msgid "Internal Notes" -msgstr "" +msgstr "Interne noter" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear #: view:ir.sequence:0 #: model:ir.ui.menu,name:account.menu_action_account_fiscalyear msgid "Fiscal Years" -msgstr "" +msgstr "Finans år" #. module: account #: help:account.analytic.journal,active:0 @@ -10774,19 +10802,19 @@ msgstr "" #. module: account #: field:account.analytic.line,ref:0 msgid "Ref." -msgstr "" +msgstr "Ref." #. module: account #: field:account.use.model,model:0 #: model:ir.model,name:account.model_account_model msgid "Account Model" -msgstr "" +msgstr "Konto model" #. module: account #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Loss" -msgstr "" +msgstr "Tab" #. module: account #: selection:account.entries.report,month:0 @@ -10795,7 +10823,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "February" -msgstr "" +msgstr "Februar" #. module: account #: view:account.bank.statement:0 @@ -10810,7 +10838,7 @@ msgstr "" #: field:account.invoice,partner_bank_id:0 #: field:account.invoice.report,partner_bank_id:0 msgid "Bank Account" -msgstr "" +msgstr "Bank konto" #. module: account #: model:ir.actions.act_window,name:account.action_account_central_journal @@ -10821,17 +10849,17 @@ msgstr "" #. module: account #: report:account.overdue:0 msgid "Maturity" -msgstr "" +msgstr "Forældelse" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 msgid "Future" -msgstr "" +msgstr "Fremtidig" #. module: account #: view:account.move.line:0 msgid "Search Journal Items" -msgstr "" +msgstr "Søg i journal posteringer" #. module: account #: help:account.tax,base_sign:0 @@ -10853,12 +10881,12 @@ msgstr "" #. module: account #: field:account.chart.template,property_account_expense:0 msgid "Expense Account on Product Template" -msgstr "" +msgstr "Vareforbrugskonto på Produkt skabelon" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "Kunde betalings betingelse" #. module: account #: help:accounting.report,label_filter:0 @@ -11120,3 +11148,6 @@ msgstr "" #~ msgid "last month" #~ msgstr "sidste måned" + +#~ msgid "Reference Number" +#~ msgstr "Referencenummer" diff --git a/addons/account/i18n/de.po b/addons/account/i18n/de.po index 801d0af40e4..a795bf798c4 100644 --- a/addons/account/i18n/de.po +++ b/addons/account/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:25+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -35,7 +35,7 @@ msgid "" "Generic Reporting \\ Taxes \\ Taxes Report'" msgstr "" "Legen Sie die Reihenfolge der Anzeige im Bericht 'Finanzen \\ Berichte \\ " -"Standard Auswertungen \\ Steuern \\ Umsatzsteuer Anmeldung' fest" +"Standard Auswertungen \\ Steuern \\ Umsatzsteuer-Anmeldung' fest" #. module: account #: view:account.move.reconcile:0 @@ -96,7 +96,7 @@ msgid "" "You cannot create recursive account templates." msgstr "" "Fehler!\n" -"Es dürfen keine rekursiven Kontoplan Vorlagen erstellt werden." +"Es dürfen keine rekursiven Kontenplan-Vorlagen erstellt werden." #. module: account #. openerp-web @@ -157,7 +157,7 @@ msgstr "Achtung!" #: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" -msgstr "\"verschiedenes\" Journal" +msgstr "\"Verschiedenes\"-Journal" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -167,8 +167,8 @@ msgid "" "which is set after generating opening entries from 'Generate Opening " "Entries'." msgstr "" -"Zur Buchung der Jahreseröffnungsbuchungen müssen Sie ein Jahreswechsel " -"Journal hinterlegen." +"Für Jahreseröffnungsbuchungen müssen Sie ein Jahreswechsel-Journal " +"hinterlegen." #. module: account #: field:account.fiscal.position.account,account_src_id:0 @@ -221,7 +221,7 @@ msgid "" msgstr "" "Definieren Sie den Kostenstellentyp. Wenn durch einen Beleg (z.B. eine " "Rechnung) zusätzlich zu den Finanzbuchungen auch Kostenstellen gebucht " -"werden sollen, prüft OpenERP ob ein Kostenstellen Journal der gleichen Art " +"werden sollen, prüft OpenERP ob ein Kostenstellen-Journal der gleichen Art " "(z.B. Verkauf) vorliegt." #. module: account @@ -238,7 +238,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_tax_template_form #: model:ir.ui.menu,name:account.menu_action_account_tax_template_form msgid "Tax Templates" -msgstr "Umsatzsteuer Vorlagen" +msgstr "Umsatzsteuer-Vorlagen" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_select @@ -263,7 +263,7 @@ msgstr "Bestätigt" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "Erlöse Ansicht" +msgstr "Erlöseansicht" #. module: account #: help:account.account,user_type:0 @@ -288,7 +288,7 @@ msgid "" "sales, purchase, expense, contra, etc.\n" " This installs the module account_voucher." msgstr "" -"Ermöglicht erfassen und buchen Ihrer Bankbelege, Kassenquittungen, Belege " +"Ermöglicht Erfassen und Buchen Ihrer Bankbelege, Kassenquittungen, Belege " "für Verkauf, Einkauf, Spesen, Gutschriften etc.\n" " Hierdurch installieren Sie das Modul account_voucher." @@ -300,12 +300,12 @@ msgstr "Wiederkehrende Buchungen (Manuell)" #. module: account #: field:account.automatic.reconcile,allow_write_off:0 msgid "Allow write off" -msgstr "Erlaube Abschreibung" +msgstr "Abschreibung erlauben" #. module: account #: view:account.analytic.chart:0 msgid "Select the Period for Analysis" -msgstr "Auswahl Periode" +msgstr "Periode für Analyse auswählen" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree3 @@ -379,7 +379,7 @@ msgstr "Multiwährungsfunktion aktivieren" #: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" -msgstr "Sie müssen ein Kostenstellen Journal vom Typ '%s' definieren!" +msgstr "Sie müssen ein Kostenstellen-Journal vom Typ '%s' definieren!" #. module: account #: selection:account.entries.report,month:0 @@ -513,7 +513,7 @@ msgstr "" "gerundet, um abschließend die Steuer des Auftrags über die Summe der " "einzelnen Auftragszeilen zu berechnen. Bei Auswahl 'Global Runden': Die " "Steuern werden je Zeile berechnet, summiert und abschließend global für den " -"gesamten Auftrag gerundet. Falls Sie zu Brutto Preisen inklusive Steuern " +"gesamten Auftrag gerundet. Falls Sie zu Bruttopreisen inklusive Steuern " "verkaufen möchten, sollten Sie 'Runden pro Zeile' einstellen, um " "sicherzustellen dass der Gesamtbetrag des Auftrags der Summe aller einzelnen " "Auftragszeilen entspricht." @@ -531,7 +531,7 @@ msgstr "In alternativer Währung dargestellter Betrag" #. module: account #: view:account.journal:0 msgid "Available Coins" -msgstr "Bargeld Stückelung" +msgstr "Bargeldstückelung" #. module: account #: field:accounting.report,enable_filter:0 @@ -584,7 +584,7 @@ msgstr "Oberkonto" #. module: account #: help:account.invoice.line,sequence:0 msgid "Gives the sequence of this line when displaying the invoice." -msgstr "Anzeigerreihenfolge der Rechnungspositionen" +msgstr "Anzeigereihenfolge der Rechnungspositionen" #. module: account #: field:account.bank.statement,account_id:0 @@ -635,7 +635,7 @@ msgstr "Gegenbuchung" #: field:account.fiscal.position,tax_ids:0 #: field:account.fiscal.position.template,tax_ids:0 msgid "Tax Mapping" -msgstr "Steuer Zuordnung" +msgstr "Steuerzuordnung" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state @@ -691,7 +691,7 @@ msgstr "" #: view:account.fiscal.position:0 #: view:account.fiscal.position.template:0 msgid "Taxes Mapping" -msgstr "Steuern Zuordnung" +msgstr "Steuerzuordnung" #. module: account #: report:account.central.journal:0 @@ -725,7 +725,7 @@ msgstr "Keine oder meherere Perioden für dieses Datum gefunden." #. module: account #: model:ir.model,name:account.model_report_account_type_sales msgid "Report of the Sales by Account Type" -msgstr "Auswertung Verkauf nach Kontentyp" +msgstr "Auswertung: Verkauf nach Kontentyp" #. module: account #: code:addons/account/account.py:3201 @@ -817,7 +817,7 @@ msgid "" "change the date or remove this constraint from the journal." msgstr "" "Das Datum Ihrer Buchung fällt nicht in die festgelegte Periode. Sie müssen " -"das Datum anpassen, oder diese Einschränkung vom Bericht entfernen." +"das Datum anpassen oder diese Einschränkung vom Bericht entfernen." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger @@ -914,7 +914,7 @@ msgid "" "Click on compute button." msgstr "" "Steuern fehlen!\n" -"Drücken Sie auf den \"aktualisieren\" Knopf" +"Drücken Sie auf den \"Aktualisieren\"-Button" #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -947,12 +947,12 @@ msgstr "Stornierung des OP-Ausgleichs" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "Kostenstellen Journal" +msgstr "Kostenstellenjournal" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "E-mail senden" +msgstr "Per E-Mail versenden" #. module: account #: help:account.central.journal,amount_currency:0 @@ -1137,7 +1137,7 @@ msgid "" msgstr "" "Wenn das Steuerkonto auch Bestandteil des Steuerkontenplans ist, weist " "dieses Konto auch einen Betrag im Feld Steuern auf. Dieses Feld weist in " -"diesem Fall dann den Messbetrag, i.d.R. den Netto Rechnungsbetrag auf, der " +"diesem Fall dann den Messbetrag, i.d.R. den Netto-Rechnungsbetrag auf, der " "dann die Basis für die Steuerberechnung ist." #. module: account @@ -1180,7 +1180,7 @@ msgstr "Funktionen" #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" -msgstr "Kein Kostenstellen Journal" +msgstr "Kein Kostenstellen-Journal" #. module: account #: report:account.partner.balance:0 @@ -1188,7 +1188,7 @@ msgstr "Kein Kostenstellen Journal" #: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance #: model:ir.ui.menu,name:account.menu_account_partner_balance_report msgid "Partner Balance" -msgstr "Partner Saldenliste" +msgstr "Partner-Saldenliste" #. module: account #: model:ir.actions.act_window,help:account.action_account_gain_loss @@ -1223,7 +1223,7 @@ msgstr "" #. module: account #: field:account.bank.accounts.wizard,acc_name:0 msgid "Account Name." -msgstr "Konto Bezeichnung" +msgstr "Kontenbezeichnung" #. module: account #: field:account.journal,with_last_closing_balance:0 @@ -1295,7 +1295,7 @@ msgstr "Barkassen" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "Kundengutschriften Journal" +msgstr "Kundengutschriften-Journal" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1321,7 +1321,7 @@ msgstr "" "Barzahlungen.\n" " Alle täglichen Ein- und Auszahlungen können aufgezeichnet " "werden. \n" -" Das Bargeld kann gezählt werden, Einzahlungen von " +" Das Barbestand kann erfasstt werden, Einzahlungen von " "Wechselgeld sowie \n" " Entnahmen der Tageseinnahmen können gebucht werden . \n" "

\n" @@ -1348,7 +1348,7 @@ msgstr "Gutschriften" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 msgid "Confirm statement" -msgstr "Bestätige Bankauszug" +msgstr "Bankauszug bestätigen" #. module: account #: view:account.tax:0 @@ -1361,7 +1361,7 @@ msgid "" "Total amount (in Secondary currency) for transactions held in secondary " "currency for this account." msgstr "" -"Gesamtbetrag der Buchungen in Alternativwährung in der Alternativwährung " +"Gesamtbetrag der Buchungen (in Alternativwährung) in der Alternativwährung " "dieses Kontos ausgegeben." #. module: account @@ -1452,7 +1452,7 @@ msgstr "Buchungstext" #: help:account.invoice,origin:0 #: help:account.invoice.line,origin:0 msgid "Reference of the document that produced this invoice." -msgstr "Referenz Dokumente der Rechnung" +msgstr "Referenzdokumente der Rechnung" #. module: account #: view:account.analytic.line:0 @@ -1516,7 +1516,7 @@ msgstr "Ebene" #, python-format msgid "You can only change currency for Draft Invoice." msgstr "" -"Die Währung kann nur bei einer Rechnung im Entwurf Zustand geändert werden" +"Die Währung kann nur bei einer Rechnung im Entwurfszustand geändert werden" #. module: account #: report:account.invoice:0 @@ -1619,7 +1619,7 @@ msgstr "" #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "Status Rechnung" +msgstr "Rechnungsstatus" #. module: account #: view:account.bank.statement:0 @@ -1660,7 +1660,7 @@ msgid "" "There is no default debit account defined \n" "on journal \"%s\"." msgstr "" -"Es fehlt noch der Standard Debitor \n" +"Es fehlt noch der Standard-Debitor \n" "für das Buchungsjournal \"%s\" ." #. module: account @@ -1671,7 +1671,7 @@ msgstr "Suche Steuern" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger msgid "Account Analytic Cost Ledger" -msgstr "Kostenstellen Buchhaltung" +msgstr "Kostenstellen-Buchhaltung" #. module: account #: view:account.model:0 @@ -1728,12 +1728,12 @@ msgstr "Gutschrift" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "eRechnung & Zahlungen" +msgstr "E-Rechnungen & Zahlungen" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 msgid "Cost Ledger for Period" -msgstr "Kostenstellen Umsatz der Periode" +msgstr "Kostenstellen-Umsatz der Periode" #. module: account #: view:account.entries.report:0 @@ -1764,7 +1764,7 @@ msgstr "Lieferanten Gutschriften" #: field:account.tax.code,code:0 #: field:account.tax.code.template,code:0 msgid "Case Code" -msgstr "Vorgang Nummer" +msgstr "Vorgangsnummer" #. module: account #: field:account.config.settings,company_footer:0 @@ -1820,7 +1820,7 @@ msgstr "Bankauszüge durchsuchen" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "Nicht Verbuchte Journaleinträge" +msgstr "Nicht verbuchte Journaleinträge" #. module: account #: view:account.chart.template:0 @@ -1880,9 +1880,9 @@ msgid "" " " msgstr "" "

\n" -" Klicken Sie um einen neuen Kontotyp zu erstellen.\n" +" Klicken Sie um einen neuen Kontentyp zu erstellen.\n" "

\n" -" Der Kontotyp legt fest, wie ein Konto in einem " +" Der Kontentyp legt fest, wie ein Konto in einem " "Buchungsjournal \n" " angewendet wird. Die Abgrenzungs-Methode eines Kontos " "bestimmt\n" @@ -1946,7 +1946,7 @@ msgstr "" "gerundet, um abschließend die Steuer des Auftrags über die Summe der " "einzelnen Auftragszeilen zu berechnen. Bei Auswahl 'Global Runden': Die " "Steuern werden je Zeile berechnet, summiert und abschließend global für den " -"gesamten Auftrag gerundet. Falls Sie zu Brutto Preisen inklusive Steuern " +"gesamten Auftrag gerundet. Falls Sie zu Bruttopreisen inklusive Steuern " "verkaufen möchten, sollten Sie 'Runden pro Zeile' einstellen, um " "sicherzustellen dass der Gesamtbetrag des Auftrags der Summe aller einzelnen " "Auftragszeilen entspricht." @@ -1955,7 +1955,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all #: view:report.account_type.sales:0 msgid "Sales by Account Type" -msgstr "Verkäufe nach Kontotypen" +msgstr "Verkäufe nach Kontentypen" #. module: account #: model:account.payment.term,name:account.account_payment_term_15days @@ -2110,7 +2110,7 @@ msgstr "Rechnung bestätigt" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "Lieferantenzahlung durch Scheck" +msgstr "" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -2301,7 +2301,7 @@ msgstr "" #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "Standard Währung" +msgstr "Standardwährung" #. module: account #: field:account.invoice,move_id:0 @@ -2351,7 +2351,7 @@ msgstr "Gültig" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "Followers" +msgstr "Follower" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal @@ -2377,7 +2377,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance msgid "Account Aged Trial balance Report" -msgstr "Auswertung Altersstruktur Forderungen" +msgstr "Auswertung Alter der Forderungen" #. module: account #: view:account.fiscalyear.close.state:0 @@ -2522,7 +2522,7 @@ msgstr "Geschäftsjahr" #: code:addons/account/wizard/account_move_bank_reconcile.py:53 #, python-format msgid "Standard Encoding" -msgstr "Standard Eingabe" +msgstr "Standardeingabe" #. module: account #: view:account.journal.select:0 @@ -2573,7 +2573,7 @@ msgstr "Kontenplan Umsatzsteuer" #: model:account.payment.term,name:account.account_payment_term_net #: model:account.payment.term,note:account.account_payment_term_net msgid "30 Net Days" -msgstr "30 Tage Netto" +msgstr "30 Tage netto" #. module: account #: code:addons/account/account_cash_statement.py:256 @@ -2741,7 +2741,7 @@ msgstr "Geschäftsjahr" #: help:accounting.report,fiscalyear_id:0 #: help:accounting.report,fiscalyear_id_cmp:0 msgid "Keep empty for all open fiscal year" -msgstr "Lasse leer für alle offenen Geschäftsjahre" +msgstr "Leer lassen für alle offenen Geschäftsjahre" #. module: account #: code:addons/account/account.py:653 @@ -2761,7 +2761,7 @@ msgstr "Kontobuchung" #. module: account #: view:account.addtmpl.wizard:0 msgid "Create an Account Based on this Template" -msgstr "Erstelle ein Konto auf Basis der Vorlage" +msgstr "Erstellt ein Konto auf Basis der Vorlage" #. module: account #: code:addons/account/account_invoice.py:933 @@ -2787,7 +2787,7 @@ msgstr "Buchungssatz" #. module: account #: field:account.sequence.fiscalyear,sequence_main_id:0 msgid "Main Sequence" -msgstr "Haupt Sequenz" +msgstr "Hauptsequenz" #. module: account #: code:addons/account/account_bank_statement.py:478 @@ -2796,7 +2796,7 @@ msgid "" "In order to delete a bank statement, you must first cancel it to delete " "related journal items." msgstr "" -"Um einen Bankauszug zu löschen müssen Sie diesen zuerst Stornieren, um die " +"Um einen Bankauszug zu löschen müssen Sie diesen zuerst stornieren, um die " "dazugehörigen Buchungen zu löschen." #. module: account @@ -2819,7 +2819,7 @@ msgstr "Steuerzuordnung" #: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." -msgstr "Sie können das abgeschlossene Konto %s %s nicht mehr buchen." +msgstr "Sie können in das abgeschlossene Konto %s %s nicht mehr buchen." #. module: account #: field:account.period.close,sure:0 @@ -2850,7 +2850,7 @@ msgstr "Gutschriftsentwurf anlegen" #. module: account #: view:account.partner.reconcile.process:0 msgid "Partner Reconciliation" -msgstr "Offene Posten Ausgleich bei Partnern" +msgstr "Offene Postenausgleich bei Partnern" #. module: account #: view:account.analytic.line:0 @@ -2964,7 +2964,7 @@ msgstr "" "

\n" " Ein Buchungssatz besteht aus mehreren Buchungszeilen, die " "entweder \n" -" Soll- oder Haben Buchungen sein können . \n" +" Soll- oder Haben-Buchungen sein können. \n" "

\n" " OpenERP erstellt automatisch Buchungssätze für folgende " "Geschäftsvorfälle: \n" @@ -3136,7 +3136,7 @@ msgstr "" #. module: account #: sql_constraint:account.model.line:0 msgid "Wrong credit or debit value in model, they must be positive!" -msgstr "Soll und Haben Beträge müssen positiv sein" +msgstr "Soll- und Haben-Beträge müssen positiv sein" #. module: account #: model:process.node,note:account.process_node_reconciliation0 @@ -3212,7 +3212,7 @@ msgstr "Daten" #. module: account #: field:account.chart.template,parent_id:0 msgid "Parent Chart Template" -msgstr "Übergeordnete Kontenplan Vorlage" +msgstr "Übergeordnete Kontenplanvorlage" #. module: account #: field:account.tax,parent_id:0 @@ -3317,7 +3317,7 @@ msgstr "Verkauf Journal" #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" -msgstr "Sie müssen ein Kostenstellen Journal im '%s' Journal definieren!" +msgstr "Sie müssen ein Kostenstellenjournal im '%s' Journal definieren!" #. module: account #: code:addons/account/account.py:781 @@ -3336,8 +3336,8 @@ msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." msgstr "" -"Sie benötigen ein Jahreswechsel Journal mit der Einstellung " -"\"Zentralisierung Gegenkonto\" für die Buchung der Jahreseröffnung." +"Sie benötigen ein Jahreswechseljournal mit der Einstellung \"Zentralisierung " +"Gegenkonto\" für die Buchung der Jahreseröffnung." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -3405,7 +3405,7 @@ msgstr "Nicht abgestimmte Buchungen" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 msgid "Only One Chart Template Available" -msgstr "Es ist nur eine Kontoplan Vorlage verfügbar" +msgstr "Es ist nur eine Kontoplanvorlage verfügbar" #. module: account #: view:account.chart.template:0 @@ -3437,7 +3437,7 @@ msgstr "" #. module: account #: field:account.config.settings,date_stop:0 msgid "End date" -msgstr "Ende Datum" +msgstr "Enddatum" #. module: account #: field:account.invoice.tax,base_amount:0 @@ -3447,7 +3447,7 @@ msgstr "Steuergrundlage Betrag" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "Standard Steuer Verkauf" +msgstr "Standardsteuer Verkauf" #. module: account #: help:account.model.line,date_maturity:0 @@ -3578,7 +3578,7 @@ msgid "" "software system you may have to use the rate at date. Incoming transactions " "always use the rate at date." msgstr "" -"Dies bestimmt,wie der Wechselkurs für ausgehende Transaktionen berechnet " +"Dies bestimmt, wie der Wechselkurs für ausgehende Transaktionen berechnet " "wird. In den meisten Ländern ist \"Durchschnitt\" die legale Methode, aber " "nur wenige Systeme können dies. Für Importe von anderen Systemen muss daher " "ggf. der Tageskurs verwendet werden. Eingehende Transkationen verwenden " @@ -3639,7 +3639,7 @@ msgstr "Modell" #. module: account #: help:account.invoice.tax,base_code_id:0 msgid "The account basis of the tax declaration." -msgstr "Das Basis Konto für die Steuererklärung" +msgstr "Das Basiskonto für die Steuererklärung" #. module: account #: selection:account.account,type:0 @@ -3659,7 +3659,7 @@ msgstr "BNK" #. module: account #: field:account.move.line,analytic_lines:0 msgid "Analytic lines" -msgstr "Kostenstellen Buchungen" +msgstr "Kostenstellen-Buchungen" #. module: account #: view:account.invoice:0 @@ -3917,7 +3917,7 @@ msgstr "" "werden.\n" "'Saldo' bedeutet, dass ein aktueller Saldo zum Stichtag des Jahreswechsels " "als Eröffnung im Folgejahr gebucht wird (z.B. bei Kasse, Bank).\n" -"'Alle Buchungen' bedeutet dass ausnahmslos, alle Buchungen auf dem Konto in " +"'Alle Buchungen' bedeutet, dass ausnahmslos alle Buchungen auf dem Konto in " "das Folgejahr transferiert werden.\n" "'Offene Posten' kopiert alle Journalbuchungen, die nicht ausgegelichen sind " "auf den ersten Tag der ersten Periode des neuen Geschäftsjahres." @@ -4079,8 +4079,8 @@ msgid "" "quotations with a button \"Pay with Paypal\" in automated emails or through " "the OpenERP portal." msgstr "" -"Paypal Konto (E-Mail) für den Empfang von Online Zahlungen (Kreditkarte " -"etc.) Durch Hinterlegen des Paypal Kontos kann ein Kunde durch einfachen " +"Paypal-Konto (E-Mail) für den Empfang von Online Zahlungen (Kreditkarte " +"etc.) Durch Hinterlegen des Paypal-Kontos kann ein Kunde durch einfachen " "Klick auf den Button \"Bezahlen mit Paypal\" die offenen Positionen auf dem " "Konto einsehen und begleichen." @@ -4110,7 +4110,7 @@ msgstr "OP-Ausgleich stornieren" #: field:account.tax.code,notprintable:0 #: field:account.tax.code.template,notprintable:0 msgid "Not Printable in Invoice" -msgstr "Nicht Druckbar in Rechnung" +msgstr "Nicht druckbar in Rechnung" #. module: account #: report:account.vat.declaration:0 @@ -4151,7 +4151,7 @@ msgstr "" "Sie können folgendermassen vorgehen:\n" " Direkt Gutschrift buchen oder zuerst im " "Entwurf belassen, \n" -" um zuerst den Original Beleg von\n" +" um zuerst den Originalbeleg von\n" " Ihrem Kunden / Lieferanten zu erhalten." #. module: account @@ -4228,7 +4228,7 @@ msgstr "" "

\n" " Der elektronische Rechnungsversand erleichtert und " "beschleunigt nochmals den \n" -" Zahlungsausgleich. Ihre Kunden bekommen per E-Mail " +" Zahlungsausgleich. Ihre Kunden bekommen per E-Mail-" "Rechnungen gesendet, die\n" " dann auf schnellem Weg Online bezahlt werden können und/oder " "in das eigene \n" @@ -4298,7 +4298,7 @@ msgid "" "Please create one from the configuration of the accounting menu." msgstr "" "Für dieses Datum wurde noch kein Geschäftsjahr angelegt:\n" -"Bitte erstellen Sie ein Datum über das Konfiguration Menü der Finanzen." +"Bitte erstellen Sie ein Datum über das Konfigurationsmenü der Finanzen." #. module: account #: view:account.addtmpl.wizard:0 @@ -4636,7 +4636,7 @@ msgstr "Datum" #, python-format msgid "The journal must have default credit and debit account." msgstr "" -"Das Journal sollte mindestens ein Standard Konto für Soll / Haben Buchungen " +"Das Journal sollte mindestens ein Standardkonto für Soll-/ Haben-Buchungen " "beinhalten." #. module: account @@ -4659,7 +4659,7 @@ msgstr "Nachrichten und Kommunikations-Historie" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "Kostenstellen Journal" +msgstr "Kostenstellen-Journal" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4752,9 +4752,9 @@ msgid "" "debit/credit accounts, of type 'situation' and with a centralized " "counterpart." msgstr "" -"Der beste Ansatz ist die Auswahl eines Jahreswechsel Journals, damit alle " +"Der beste Ansatz ist die Auswahl eines Jahreswechsel-Journals, damit alle " "Eröffnungs- und Abschlussbuchungen in einem Journal zentral gebucht werden " -"können. Beachten Sie zu diesem Zweck beim Journal Soll / Haben Konten des " +"können. Beachten Sie zu diesem Zweck beim Journal Soll-/ Haben-Konten des " "Typs 'Jahreswechsel' zu hinterlegen, sowie 'Zentralisierung Gegenkonto' zu " "aktivieren." @@ -4767,7 +4767,7 @@ msgstr "Titel" #: view:account.invoice:0 #: view:account.subscription:0 msgid "Set to Draft" -msgstr "Setze auf Entwurf" +msgstr "Auf 'Entwurf' setzen" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form @@ -4777,7 +4777,7 @@ msgstr "Wiederkehrende Buchungen" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "Anzeige Partner" +msgstr "Partner anzeigen" #. module: account #: view:account.invoice:0 @@ -4833,7 +4833,7 @@ msgstr "Start Periode" #: field:account.tax.template,name:0 #: report:account.vat.declaration:0 msgid "Tax Name" -msgstr "Steuer Bezeichnung" +msgstr "Steuerbezeichnung" #. module: account #: view:account.config.settings:0 @@ -4907,9 +4907,9 @@ msgid "" "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." msgstr "" -"Eine Nachkommastellen Genauigkeit von 2 ermöglicht Buchungen mit auf 2 " +"Eine Nachkommastellengenauigkeit von 2 ermöglicht Buchungen mit auf 2 " "Stellen auf- oder abgerundeten Beträgen wie z.B. 9,99 EUR, eine " -"Nachkommastellen Genauigkeit von 4 ermöglicht Buchungen wie z.B.: 0,0231 EUR." +"Nachkommastellengenauigkeit von 4 ermöglicht Buchungen wie z.B.: 0,0231 EUR." #. module: account #: field:account.account,shortcut:0 @@ -4948,7 +4948,7 @@ msgstr "Storniere die ausgewählten Rechnungen" #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" -"Sie müssen ein Kostenstellen Journal für das Journal '%s' hinterlegen!" +"Sie müssen ein Kostenstellenjournal für das Journal '%s' hinterlegen!" #. module: account #: model:process.transition,note:account.process_transition_supplieranalyticcost0 @@ -5038,8 +5038,8 @@ msgid "" "Cannot find a chart of account, you should create one from Settings\\" "Configuration\\Accounting menu." msgstr "" -"Kontenplan kann nicht gefunden werden, sie sollten diesen über Einstellungen " -"/ Konfiguration / Finanzen anlegen." +"Kontenplan kann nicht gefunden werden, Sie sollten diesen über " +"Einstellungen/ Konfiguration/ Finanzen anlegen." #. module: account #: field:account.entries.report,product_uom_id:0 @@ -5202,7 +5202,7 @@ msgstr "Haupt Titel 1 (fett, unterstrichen)" #: report:account.analytic.account.balance:0 #: report:account.central.journal:0 msgid "Account Name" -msgstr "Konto Bezeichnung" +msgstr "Kontenbezeichnung" #. module: account #: help:account.fiscalyear.close,report_name:0 @@ -5234,7 +5234,7 @@ msgstr "Storniere Abschreibung" #: view:account.account.template:0 #: view:account.chart.template:0 msgid "Account Template" -msgstr "Konto Vorlage" +msgstr "Kontenvorlage" #. module: account #: view:account.bank.statement:0 @@ -5369,12 +5369,12 @@ msgstr "Wechselgeld" #. module: account #: field:account.journal,type_control_ids:0 msgid "Type Controls" -msgstr "Kontoarten Auswahl" +msgstr "Kontenarten-Auswahl" #. module: account #: help:account.journal,default_credit_account_id:0 msgid "It acts as a default account for credit amount" -msgstr "Fungiert als Standardkonto für die Haben Buchung in diesem Journal" +msgstr "Fungiert als Standardkonto für die Haben-Buchung in diesem Journal" #. module: account #: view:cash.box.out:0 @@ -5391,7 +5391,7 @@ msgstr "Abgebrochen" #. module: account #: help:account.config.settings,group_proforma_invoices:0 msgid "Allows you to put invoices in pro-forma state." -msgstr "Ermöglicht Pro-Forma Abrechnung" +msgstr "Ermöglicht Pro-Forma-Abrechnung" #. module: account #: view:account.journal:0 @@ -5419,7 +5419,7 @@ msgstr "Vorsteuer %.2f%%" #: model:ir.actions.act_window,name:account.action_account_subscription_generate #: model:ir.ui.menu,name:account.menu_generate_subscription msgid "Generate Entries" -msgstr "Buchungen (Automatisch)" +msgstr "Buchungen (automatisch)" #. module: account #: help:account.vat.declaration,chart_tax_id:0 @@ -5462,7 +5462,7 @@ msgstr "Umsatzsteuer" #: field:account.tax,ref_tax_code_id:0 #: field:account.tax.template,ref_tax_code_id:0 msgid "Refund Tax Code" -msgstr "Gutschrift Umsatzsteuer" +msgstr "Gutschrift für Umsatzsteuer" #. module: account #: view:account.invoice:0 @@ -5481,8 +5481,9 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" -"Die Periodenstatus ist jetzt 'Offen'. Durch die \"Druckausgabe\" ändert sich " -"dadurch der Status." +"Die Periodenstatus ist jetzt \"Offen\". Durch die \"Druckausgabe\" ändert " +"sich dadurch der Status auf 'Gedruckt'. Wenn alle Transaktionen " +"abgeschlossen sind wird er zu 'Abgeschlossen (done)'." #. module: account #: code:addons/account/account.py:3205 @@ -5506,7 +5507,7 @@ msgstr "Neues Geschäftsjahr" #: view:report.invoice.created:0 #: field:res.partner,invoice_ids:0 msgid "Invoices" -msgstr "Rechnung" +msgstr "Rechnungen" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 @@ -5572,7 +5573,7 @@ msgstr "Buchungssätze" #. module: account #: view:account.use.model:0 msgid "Use Model" -msgstr "Benutze Modellvorlage" +msgstr "Buchungsvorlage verwenden" #. module: account #: help:account.invoice,partner_bank_id:0 @@ -5657,7 +5658,7 @@ msgstr "Berechne" #. module: account #: field:account.tax,type_tax_use:0 msgid "Tax Application" -msgstr "Steuer Anwendung" +msgstr "Steueranwendung" #. module: account #: code:addons/account/account_invoice.py:922 @@ -5693,7 +5694,7 @@ msgstr "Bargeld zählen" #: field:account.analytic.inverted.balance,date2:0 #: field:account.analytic.journal.report,date2:0 msgid "End of period" -msgstr "Ende Periode" +msgstr "Periodenende" #. module: account #: model:process.node,note:account.process_node_supplierpaymentorder0 @@ -5738,12 +5739,12 @@ msgstr "Finanzmanager" #. module: account #: field:account.journal,group_invoice_lines:0 msgid "Group Invoice Lines" -msgstr "Zusammenfassen Rechnungszeilen" +msgstr "Rechnungszeilen zusammenfassen" #. module: account #: view:account.automatic.reconcile:0 msgid "Close" -msgstr "Fertig" +msgstr "Schließen" #. module: account #: field:account.bank.statement.line,move_ids:0 @@ -5767,7 +5768,7 @@ msgid "" "If you do not check this box, you will be able to do invoicing & payments, " "but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" -"Bei Deaktivierung, können Sie abrechnen und Zahlungen ausgleichen aber nicht " +"Bei Deaktivierung können Sie abrechnen und Zahlungen ausgleichen aber nicht " "buchen (Journale, Kontenplan, ...)" #. module: account @@ -5891,7 +5892,7 @@ msgid "" "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" msgstr "" -"Hier können Sie entscheiden, ob Sie Einkaufs und Verkaufssteuern selbst " +"Hier können Sie entscheiden, ob Sie Einkaufs- und Verkaufssteuern selbst " "einrichten wollen oder aus einer Liste auswählen. Letzeres setzt voraus, " "dass die Vorlage komplett ist." @@ -5918,7 +5919,7 @@ msgstr "Jahr" #. module: account #: help:account.invoice,sent:0 msgid "It indicates that the invoice has been sent." -msgstr "Unter der Annahme Rechnung gesendet wurde" +msgstr "Unter der Annahme, dass die Rechnung gesendet wurde" #. module: account #: field:account.tax.template,description:0 @@ -5940,7 +5941,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Pro Forma Invoice " -msgstr "Pro Form Rechnung " +msgstr "Pro Forma-Rechnung " #. module: account #: selection:account.subscription,period_type:0 @@ -5976,7 +5977,7 @@ msgstr "Gewinn & Verlust (Erträge)" #. module: account #: field:account.journal,allow_date:0 msgid "Check Date in Period" -msgstr "Prüfe Datum in Periode" +msgstr "Datum in Periode prüfen" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports @@ -5998,7 +5999,7 @@ msgstr "Diese Periode" #. module: account #: view:account.tax.template:0 msgid "Compute Code (if type=code)" -msgstr "Berechne Quellcode (if type=code)" +msgstr "Quellcode (if type=code) berechnen" #. module: account #: code:addons/account/account_invoice.py:508 @@ -6006,7 +6007,7 @@ msgstr "Berechne Quellcode (if type=code)" msgid "" "Cannot find a chart of accounts for this company, you should create one." msgstr "" -"Es existiert noch kein Kontenplan für dieses Unternehmen, sie sollten einen " +"Es existiert noch kein Kontenplan für dieses Unternehmen. Sie sollten einen " "anlegen." #. module: account @@ -6097,7 +6098,7 @@ msgstr "" #. module: account #: field:account.journal,update_posted:0 msgid "Allow Cancelling Entries" -msgstr "Storno erlauben?" +msgstr "Storno erlauben" #. module: account #: code:addons/account/wizard/account_use_model.py:44 @@ -6109,7 +6110,7 @@ msgid "" msgstr "" "Fälligkeitsdatum der Buchung, die durch die wiederkehrende Buchungsvorlage " "'%s' auf Basis der Zahlungsbedingungen des Partners ermittelt wird. Bitte " -"weisen Sie Ihren Partnern gültigen Zahlungsbedngungen zu." +"weisen Sie Ihren Partnern gültigen Zahlungsbedingungen zu." #. module: account #: field:account.tax.code,sign:0 @@ -6157,7 +6158,7 @@ msgstr "In Grundbetrag einbeziehen" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "Eingangsrechnung Nummer" +msgstr "Eingangsrechnungs-Nummer" #. module: account #: help:account.payment.term.line,days:0 @@ -6231,7 +6232,7 @@ msgstr "Offen" #: view:account.config.settings:0 #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" -msgstr "Kostenstellen Auswertungen" +msgstr "Kostenstellen-Auswertungen" #. module: account #: help:account.payment.term.line,value:0 @@ -6249,7 +6250,7 @@ msgstr "" #: field:account.partner.ledger,initial_balance:0 #: field:account.report.general.ledger,initial_balance:0 msgid "Include Initial Balances" -msgstr "Inkludiere Eröffnungsbilanz" +msgstr "Eröffnungsbilanz einbeziehen" #. module: account #: view:account.invoice.tax:0 @@ -6269,7 +6270,7 @@ msgstr "Kundengutschrift" #: field:account.tax.template,ref_tax_sign:0 #: field:account.tax.template,tax_sign:0 msgid "Tax Code Sign" -msgstr "Steuer Vorzeichen" +msgstr "Steuervorzeichen" #. module: account #: model:ir.model,name:account.model_report_invoice_created @@ -6279,12 +6280,12 @@ msgstr "Rechnungen der letzten 15 Tage" #. module: account #: field:account.fiscalyear,end_journal_period_id:0 msgid "End of Year Entries Journal" -msgstr "Journal Eröffnungsbuchungen" +msgstr "Journal-Eröffnungsbuchungen" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "Entwurf Gutschrift " +msgstr "Gutschriftsentwurf " #. module: account #: view:cash.box.in:0 @@ -6316,7 +6317,7 @@ msgstr "Automatische Buchungen" #. module: account #: field:account.entries.report,quantity:0 msgid "Products Quantity" -msgstr "Produkt Menge" +msgstr "Produktmenge" #. module: account #: view:account.entries.report:0 @@ -6332,7 +6333,7 @@ msgstr "Nicht gebucht" #: model:ir.actions.act_window,name:account.action_account_change_currency #: model:ir.model,name:account.model_account_change_currency msgid "Change Currency" -msgstr "Ändere Währung" +msgstr "Währung ändern" #. module: account #: model:process.node,note:account.process_node_accountingentries0 @@ -6349,7 +6350,7 @@ msgstr "Zahlungsdatum" #: view:account.bank.statement:0 #: field:account.bank.statement,opening_details_ids:0 msgid "Opening Cashbox Lines" -msgstr "Öffne Kassenbeleg" +msgstr "Kassenbeleg öffnen" #. module: account #: view:account.analytic.account:0 @@ -6361,7 +6362,7 @@ msgstr "Kostenstellenkonten" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "Kunden Rechnungen und Gutschriften" +msgstr "Kundenrechnungen und Gutschriften" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -6374,7 +6375,7 @@ msgstr "Währungsbetrag" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round per Line" -msgstr "Runden in Zeile" +msgstr "In Zeile runden" #. module: account #: report:account.analytic.account.balance:0 @@ -6423,7 +6424,7 @@ msgid "" "be chosen as the power of the automatic reconciliation" msgstr "" "Anzahl der maximalen Teilbeträge die für einen gegenseitigen Ausgleich von " -"Rechnungen und Zahlungen kombiniert werden dürfen, um automatisch eine " +"Rechnungen und Zahlungen kombiniert werden dürfen, um automatisch einen " "Saldenausgleich für das ausgewählte Konto herbeizuführen." #. module: account @@ -6436,7 +6437,7 @@ msgstr "Sie müssen eine Periode einstellen, die größer als \"0\" ist." #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 msgid "Fiscal Position Template" -msgstr "Steuerzuordnung Vorlage" +msgstr "Steuerzuordnung-Vorlage" #. module: account #: view:account.invoice:0 @@ -6448,7 +6449,7 @@ msgstr "Neue Gutschrift" #: view:account.chart:0 #: view:account.tax.chart:0 msgid "Open Charts" -msgstr "Öffne Kontenplan" +msgstr "Kontenplan öffnen" #. module: account #: field:account.central.journal,amount_currency:0 @@ -6463,7 +6464,7 @@ msgstr "Mit Währung" #. module: account #: view:account.bank.statement:0 msgid "Open CashBox" -msgstr "Öffne Barkasse" +msgstr "Barkasse öffnen" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -6478,7 +6479,7 @@ msgstr "Ausgleichen durch Abschreibung" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on an account of type view." -msgstr "Es darf nicht auf Ansicht Konten gebucht werden." +msgstr "Es darf nicht in Ansicht auf Konten gebucht werden." #. module: account #: selection:account.payment.term.line,value:0 @@ -6497,19 +6498,19 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile msgid "Account Automatic Reconcile" -msgstr "Automatischer Offene Posten Ausgleich" +msgstr "Automatischer Offene Posten-Ausgleich" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "Journal Buchung" +msgstr "Journalbuchung" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close #: model:ir.ui.menu,name:account.menu_wizard_fy_close msgid "Generate Opening Entries" -msgstr "Erstelle Vortragsbuchungen" +msgstr "Vortragsbuchungen erstellen" #. module: account #: help:account.tax,type:0 @@ -6524,7 +6525,7 @@ msgstr "Berechnung der Fälligkeit" #. module: account #: field:report.invoice.created,create_date:0 msgid "Create Date" -msgstr "Datum Erstellung" +msgstr "Erstelldatum" #. module: account #: view:account.analytic.journal:0 @@ -6532,18 +6533,18 @@ msgstr "Datum Erstellung" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_form #: model:ir.ui.menu,name:account.account_def_analytic_journal msgid "Analytic Journals" -msgstr "Kostenstellen Journale" +msgstr "Kostenstellen-Journale" #. module: account #: field:account.account,child_id:0 msgid "Child Accounts" -msgstr "untergeordnete Konten" +msgstr "Untergeordnete Konten" #. module: account #: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" -msgstr "Buchung Bezeichnung (id): %s (%s)" +msgstr "Buchungs-Bezeichnung (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 @@ -6613,7 +6614,7 @@ msgstr "Debitoren und Kreditoren" #. module: account #: field:account.fiscal.position.account.template,position_id:0 msgid "Fiscal Mapping" -msgstr "Steuer Umschlüsselung" +msgstr "Steuer-Umschlüsselung" #. module: account #: view:account.config.settings:0 @@ -6646,8 +6647,8 @@ msgid "" msgstr "" "Durch diese Ansicht erhalten Sie mehrdimensionale Ansichten auf Ihre " "Finanzkonten. Diese Perspektive zeigt Ihnen Ihre Salden und Verkehrszahlen " -"sowie diverse andere Kriterien und Werte die im Auswahldialog gewählt werden " -"können." +"sowie diverse andere Kriterien und Werte, die im Auswahldialog gewählt " +"werden können." #. module: account #: help:account.partner.reconcile.process,progress:0 @@ -6666,7 +6667,7 @@ msgstr "" #: field:report.account.sales,period_id:0 #: field:report.account_type.sales,period_id:0 msgid "Force Period" -msgstr "Erzwinge Periode" +msgstr "Periode erzwingen" #. module: account #: model:ir.actions.act_window,help:account.action_account_form @@ -6728,7 +6729,7 @@ msgstr "(aktualisieren)" #: field:accounting.report,filter:0 #: field:accounting.report,filter_cmp:0 msgid "Filter by" -msgstr "Filter durch" +msgstr "Filter nach" #. module: account #: code:addons/account/account.py:2334 @@ -6791,7 +6792,7 @@ msgid "" "belong to chart of accounts \"%s\"." msgstr "" "Es kann keine Journalbuchung erfolgen, da das Konto \"%s\" bislang nicht zum " -"Kontoplan \"%s\" zugewiesen wurde." +"Kontenplan \"%s\" zugewiesen wurde." #. module: account #: view:account.financial.report:0 @@ -6801,7 +6802,7 @@ msgstr "Bericht" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template msgid "Template Tax Fiscal Position" -msgstr "Steuer Zuordnung Vorlage" +msgstr "Steuerzuordnung Vorlage" #. module: account #: help:account.tax,name:0 @@ -6835,7 +6836,7 @@ msgstr "Fremdwährung Saldo" #. module: account #: field:account.journal.period,name:0 msgid "Journal-Period Name" -msgstr "Journal Periode Bezeichnung" +msgstr "Journal Periodenbezeichnung" #. module: account #: field:account.invoice.tax,factor_base:0 @@ -6867,7 +6868,7 @@ msgstr "Hinweis Steuerzuordnung" #: model:ir.actions.act_window,name:account.action_analytic_entries_report #: model:ir.ui.menu,name:account.menu_action_analytic_entries_report msgid "Analytic Entries Analysis" -msgstr "Kostenstellen Buchungen" +msgstr "Kostenstellen-Buchungen" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 @@ -6885,7 +6886,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Entry" -msgstr "Kostenstellen Buchung" +msgstr "Kostenstellen-Buchung" #. module: account #: view:res.company:0 @@ -6910,7 +6911,7 @@ msgid "" "(i.e. paid) in the system." msgstr "" "Sobald der Zahlungsausgleich erfolgt ist, wechselt der Status der Rechnung " -"zu 'Erledigt' (d. h. Bezahlt)." +"zu 'Erledigt' (d. h. bezahlt)." #. module: account #: view:account.chart.template:0 @@ -6927,7 +6928,7 @@ msgstr "Letztmaliger Ausgleich Offener Posten" #: view:account.analytic.line:0 #: model:ir.model,name:account.model_account_analytic_line msgid "Analytic Line" -msgstr "Kostenstellen Buchung" +msgstr "Kostenstellen-Buchung" #. module: account #: model:ir.ui.menu,name:account.menu_action_model_form @@ -6999,7 +7000,7 @@ msgstr "Steuerart" #: model:ir.actions.act_window,name:account.action_account_template_form #: model:ir.ui.menu,name:account.menu_action_account_template_form msgid "Account Templates" -msgstr "Konto Vorlagen" +msgstr "Kontenvorlagen" #. module: account #: help:account.config.settings,complete_tax_set:0 @@ -7027,12 +7028,12 @@ msgstr "Unternehmen" #. module: account #: view:account.invoice.report:0 msgid "Open and Paid Invoices" -msgstr "Offene und Bezahlte Rechnungen" +msgstr "Offene und bezahlte Rechnungen" #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children flat" -msgstr "Zeige abhängige Konten in flacher Liste" +msgstr "Abhängige Konten in flacher Liste anzeigen" #. module: account #: view:account.config.settings:0 @@ -7042,12 +7043,12 @@ msgstr "Bank & Kasse" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 msgid "Select a fiscal year to close" -msgstr "Wähle abzuschließendes Geschäftsjahr" +msgstr "Abzuschließendes Geschäftsjahr wählen" #. module: account #: help:account.chart.template,tax_template_ids:0 msgid "List of all the taxes that have to be installed by the wizard" -msgstr "Liste der Steuern die durch den Assistenten installiert werden" +msgstr "Liste der Steuern, die durch den Assistenten installiert werden" #. module: account #: model:ir.actions.report.xml,name:account.account_intracom @@ -7128,17 +7129,17 @@ msgstr "Sie können keine bereits abgeschlossene Konten buchen." msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" "Das Unternehmen des gebuchten Kontos der Rechnungszeile und der " -"Rechnungsaussteller stimmt nicht überein." +"Rechnungsaussteller stimmen nicht überein." #. module: account #: view:account.invoice:0 msgid "Other Info" -msgstr "Weitere Info" +msgstr "Weitere Infos" #. module: account #: field:account.journal,default_credit_account_id:0 msgid "Default Credit Account" -msgstr "Standard Habenkonto" +msgstr "Standard-Haben-Konto" #. module: account #: help:account.analytic.line,currency_id:0 @@ -7202,12 +7203,12 @@ msgstr "Maximum Ausgleichspositionen" #: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." -msgstr "Kann keinen nicht verwendeten Journal Code erzeugen." +msgstr "Kann keinen nicht verwendeten Journalcode erzeugen." #. module: account #: view:project.account.analytic.line:0 msgid "View Account Analytic Lines" -msgstr "Ansicht Kostenstellen Buchungen" +msgstr "Ansicht Kostenstellen-Buchungen" #. module: account #: field:account.invoice,internal_number:0 @@ -7226,8 +7227,8 @@ msgid "" "Indicates if the amount of tax must be included in the base amount for the " "computation of the next taxes" msgstr "" -"Anzeige, inwieweit diese Steuer im Grundbetrag für die weitere Berechnung " -"enthalten sein muß, oder nicht." +"Anzeige, inwieweit diese Steuer im Steuergrundbetrag für die weitere " +"Berechnung inbegriffen ist oder nicht." #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile @@ -7238,7 +7239,7 @@ msgstr "Ausgleich Offener Posten: Gehe zu nächstem Partner" #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance #: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance msgid "Inverted Analytic Balance" -msgstr "Kostenstellen - Kostenarten Analyse" +msgstr "Kostenstellen - Kostenarten-Analyse" #. module: account #: field:account.tax.template,applicable_type:0 @@ -7258,7 +7259,7 @@ msgstr "" "automatisch bei der Erzeugung der Buchungssätze berechnet. Die " "Zahlungsbedingung kann mehrere Fälligkeitsdaten berechnen, z.B. bei " "Fälligkeit von 50% sofort und 50% in 30 Tagen. Wenn Sie jedoch ein " -"Fälligkeitsdatum manuell setzen möchten, stellen Sie sicher das keine " +"Fälligkeitsdatum manuell setzen möchten, stellen Sie sicher, dass keine " "Zahlungsbedingung ausgewählt ist. Wenn Sie sowohl Zahlungsbedingung als auch " "das Fälligkeitsdatum frei lassen, wird die Rechnung sofort fällig gesetzt." @@ -7269,7 +7270,7 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" -"Es wurde noch keine spezifische Jahreswechsel Periode definiert. \r\n" +"Es wurde noch keine spezifische Jahreswechselperiode definiert. \r\n" "Bitte erstellen Sie diese Perioden für die Erstellung einer Eröffnungsbilanz." #. module: account @@ -7316,7 +7317,7 @@ msgstr "Finanzmittel" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form #: model:ir.ui.menu,name:account.account_analytic_journal_entries msgid "Analytic Journal Items" -msgstr "Kostenstellen Buchungen" +msgstr "Kostenstellen-Buchungen" #. module: account #: field:account.config.settings,has_default_company:0 @@ -7331,7 +7332,7 @@ msgid "" "it will simply replace the old opening entries with the new ones." msgstr "" "Dieser Assistent generiert die Abschlussbuchungen für das ausgewählte " -"Geschäftsjahr. Beachten Sie dabei, daß Sie diesen Assistenten mehrmals " +"Geschäftsjahr. Beachten Sie dabei, dass Sie diesen Assistenten mehrmals " "durchführen können. Der ursprünglich vorgetragene Betrag wird dann dabei " "einfach aktualisiert." @@ -7443,7 +7444,7 @@ msgstr "Durch diese Auswahl werden Buchungszeilen der Rechnungen verdichtet." #. module: account #: field:account.installer,has_default_company:0 msgid "Has Default Company" -msgstr "Hat Standard Unternehmen" +msgstr "Hat Standardunternehmen" #. module: account #: model:ir.model,name:account.model_account_sequence_fiscalyear @@ -7460,7 +7461,7 @@ msgstr "account.sequence.fiscalyear" #: model:ir.model,name:account.model_account_analytic_journal #: model:ir.ui.menu,name:account.account_analytic_journal_print msgid "Analytic Journal" -msgstr "Kostenstellen Journal" +msgstr "Kostenstellenjournal" #. module: account #: view:account.entries.report:0 @@ -7485,7 +7486,7 @@ msgstr "Steuergrundbetrag" #. module: account #: field:account.model,name:0 msgid "Model Name" -msgstr "Buchungsvorlage Bezeichnung" +msgstr "Bezeichnung der Buchungsvorlage" #. module: account #: field:account.chart.template,property_account_expense_categ:0 @@ -7508,8 +7509,8 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disabled" msgstr "" -"Wenn Sie die Kontenabstimmung rückgängig machen wollen, stellen Sie sicher " -"das alle auf diese Buchungen bezogenen Aktionen rückgängig gemacht wurden, " +"Wenn Sie die Kontenabstimmung rückgängig machen wollen, stellen Sie sicher, " +"dass alle auf diese Buchungen bezogenen Aktionen rückgängig gemacht wurden, " "da sie nicht automatisiert zurückgesetzt werden" #. module: account @@ -7525,7 +7526,7 @@ msgstr "Bemerkungen" #. module: account #: model:ir.model,name:account.model_analytic_entries_report msgid "Analytic Entries Statistics" -msgstr "Statistik Kostenstellen Buchungen" +msgstr "Statistik Kostenstellenbuchungen" #. module: account #: code:addons/account/account_analytic_line.py:142 @@ -7622,7 +7623,7 @@ msgstr "Erzeuge" #. module: account #: model:process.transition.action,name:account.process_transition_action_createentries0 msgid "Create entry" -msgstr "Erzeuge Buchung" +msgstr "Buchung anlegen" #. module: account #: selection:account.account.type,report_type:0 @@ -7665,7 +7666,7 @@ msgstr "Saldo mit existierendem Vorzeichen" #: model:ir.actions.report.xml,name:account.account_vat_declaration #: model:ir.ui.menu,name:account.menu_account_vat_declaration msgid "Taxes Report" -msgstr "Umsatzsteuer Anmeldung" +msgstr "Umsatzsteuer-Anmeldung" #. module: account #: selection:account.journal.period,state:0 @@ -7675,7 +7676,7 @@ msgstr "Gedruckt" #. module: account #: view:account.analytic.line:0 msgid "Project line" -msgstr "Budget Projekt" +msgstr "Projektbudget" #. module: account #: field:account.invoice.tax,manual:0 @@ -7713,7 +7714,7 @@ msgstr "" #: view:account.move:0 #: field:account.move,to_check:0 msgid "To Review" -msgstr "Zu Prüfen" +msgstr "Zu prüfen" #. module: account #: help:account.partner.ledger,initial_balance:0 @@ -7723,7 +7724,7 @@ msgid "" "row to display the amount of debit/credit/balance that precedes the filter " "you've set." msgstr "" -"Wenn ein Filter nach Datum oder Periode gewählt wird, können sie mit diesem " +"Wenn ein Filter nach Datum oder Periode gewählt wird, können Sie mit diesem " "Kennzeichen steuern, ob eine Zeile mit Soll/Haben/Saldo der Ausgabe " "vorangestellt wird." @@ -7785,12 +7786,12 @@ msgstr "Alle Einträge" #. module: account #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." -msgstr "Sie können lediglich Buchungssätze des selben Partners ausgleichen" +msgstr "Sie können lediglich Buchungssätze desselben Partners ausgleichen" #. module: account #: view:account.journal.select:0 msgid "Journal Select" -msgstr "Wähle Journal" +msgstr "Journal wählen" #. module: account #: view:account.bank.statement:0 @@ -7877,7 +7878,7 @@ msgid "" "The currency chosen should be shared by the default accounts too." msgstr "" "Konfigurationsfehler !\n" -"Die ausgewählte Währung sollte auch bei den verwendeten Standard Konten " +"Die ausgewählte Währung sollte auch bei den verwendeten Standardkonten " "zugelassen werden." #. module: account @@ -7921,7 +7922,7 @@ msgstr "Belegreferenz für diese Rechnung" #: field:account.tax.code,child_ids:0 #: field:account.tax.code.template,child_ids:0 msgid "Child Codes" -msgstr "untergeordnete Schlüssel" +msgstr "Untergeordnete Schlüssel" #. module: account #: constraint:account.fiscalyear:0 @@ -7930,8 +7931,7 @@ msgid "" "The start date of a fiscal year must precede its end date." msgstr "" "Fehler !\n" -"Das Startdatum sollte nach dem Ende Datum des laufenden Geschäftsjahres " -"enden." +"Das Startdatum sollte nach dem Enddatum des laufenden Geschäftsjahres enden." #. module: account #: view:account.tax.template:0 @@ -8070,7 +8070,7 @@ msgstr "Monatlicher Umsatz" #: view:account.move:0 #: view:account.move.line:0 msgid "Analytic Lines" -msgstr "Kostenstellen Buchungen" +msgstr "Kostenstellenbuchungen" #. module: account #: field:account.analytic.journal,line_ids:0 @@ -8081,7 +8081,7 @@ msgstr "Positionen" #. module: account #: view:account.tax.template:0 msgid "Account Tax Template" -msgstr "Umsatzsteuer Vorlage" +msgstr "Umsatzsteuer-Vorlage" #. module: account #: view:account.journal.select:0 @@ -8153,7 +8153,7 @@ msgstr "Datum Rechnung" #. module: account #: view:account.invoice.report:0 msgid "Group by year of Invoice Date" -msgstr "Gruppiere nach Rechnungsjahr" +msgstr "Nach Rechnungsjahr Gruppieren" #. module: account #: field:account.config.settings,purchase_tax_rate:0 @@ -8188,7 +8188,7 @@ msgstr "OK" #. module: account #: field:account.chart.template,tax_code_root_id:0 msgid "Root Tax Code" -msgstr "Basis Steuerschlüssel" +msgstr "Basis-Steuerschlüssel" #. module: account #: help:account.journal,centralisation:0 @@ -8213,7 +8213,7 @@ msgstr "Positionen auf Bankauszug" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 msgid "Default Purchase Tax" -msgstr "Standard Steuer Einkauf" +msgstr "Standardsteuer Einkauf" #. module: account #: field:account.chart.template,property_account_income_opening:0 @@ -8223,7 +8223,7 @@ msgstr "Eröffnungsbilanz Erlöskonto" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "Ermöglicht Pro-Form Rechnung" +msgstr "Ermöglicht Pro-Forma Rechnung" #. module: account #: view:account.bank.statement:0 @@ -8282,13 +8282,13 @@ msgstr "Warnung" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open msgid "Contracts/Analytic Accounts" -msgstr "Verträge/Analyse Konten" +msgstr "Verträge/Kostenstellenkonten" #. module: account #: view:account.journal:0 #: field:res.partner.bank,journal_id:0 msgid "Account Journal" -msgstr "Finanzen Journal" +msgstr "Finanz-Journal" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 @@ -8340,7 +8340,7 @@ msgstr "Domain" #. module: account #: model:ir.model,name:account.model_account_use_model msgid "Use model" -msgstr "Benutze Buchungsvorlage" +msgstr "Buchungsvorlage benutzen" #. module: account #: code:addons/account/account.py:1490 @@ -8349,7 +8349,7 @@ msgid "" "There is no default credit account defined \n" "on journal \"%s\"." msgstr "" -"Es wurde noch kein Standard Habenkonto für das Journal\n" +"Es wurde noch kein Standard-Habenkonto für das Journal\n" "%s erstellt." #. module: account @@ -8362,7 +8362,7 @@ msgstr "Rechungsposition" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "Kunden und Lieferanten Gutschriften" +msgstr "Kunden- und Lieferantengutschriften" #. module: account #: field:account.financial.report,sign:0 @@ -8392,7 +8392,7 @@ msgstr "" "

\n" " Klicken Sie zur Erstellung einer Kostenstelle.\n" "

\n" -" Im Normalfall wird ein Standard Kontenplan durch die " +" Im Normalfall wird ein Standard-Kontenplan durch die " "Finanzbehörden\n" " eines Landes empfohlen oder vorgegeben. Der " "Kostenstellenplan sollte \n" @@ -8425,14 +8425,14 @@ msgstr "EB" #: report:account.invoice:0 #: view:account.invoice:0 msgid "PRO-FORMA" -msgstr "PROFORMA" +msgstr "PRO-FORMA" #. module: account #: selection:account.entries.report,move_line_state:0 #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "Nicht Ausgeglichen" +msgstr "Nicht ausgeglichen" #. module: account #: selection:account.move.line,centralisation:0 @@ -8443,12 +8443,12 @@ msgstr "Normal" #: model:ir.actions.act_window,name:account.action_email_templates #: model:ir.ui.menu,name:account.menu_email_templates msgid "Email Templates" -msgstr "EMail Vorlagen" +msgstr "E-Mail-Vorlagen" #. module: account #: view:account.move.line:0 msgid "Optional Information" -msgstr "Informationen (Optional)" +msgstr "Informationen (optional)" #. module: account #: view:account.analytic.line:0 @@ -8489,7 +8489,7 @@ msgstr "Fälligkeitsdatum" #: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" -msgstr "Verkauf Journal" +msgstr "Verkaufs-Journal" #. module: account #: model:ir.model,name:account.model_account_invoice_tax @@ -8517,16 +8517,16 @@ msgid "" "few new accounts (You don't need to define the whole structure that is " "common to both several times)." msgstr "" -"Dieses wahlfreie Feld ermöglicht Ihnen eine Konten-Vorlage von einer " -"Kontenplan-Vorlage abzuleiten, wobei sich die Konten vom Stamm-Kontenplan " -"unterscheiden können. So können Sie eine Kontenplan-Vorlage festlegen, die " -"eine Andere, ggf. auch nur geringfügig, erweitert. (Sie brauchen also nicht " -"die beiden gemeinsamen Strukturen mehrfach zu definieren)." +"Dieses optione Feld ermöglicht Ihnen eine Kontenvorlage von einer Kontenplan-" +"Vorlage abzuleiten, wobei sich die Konten vom Stamm-Kontenplan unterscheiden " +"können. So können Sie eine Kontenplan-Vorlage festlegen, die eine andere, " +"ggf. auch nur geringfügig, erweitert. (Sie brauchen also nicht die beiden " +"gemeinsamen Strukturen mehrfach zu definieren.)" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "Buchungssatz Vorschläge" +msgstr "Buchungssatz-Vorschläge" #. module: account #: help:account.invoice.refund,date:0 @@ -8640,7 +8640,7 @@ msgstr "Gutschrift Nummernfolge" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "Quittiere Buchungen" +msgstr "Buchungen quittieren" #. module: account #: selection:account.bank.statement.line,type:0 @@ -8672,7 +8672,7 @@ msgstr "Barkasse" #: field:account.fiscal.position.account,account_dest_id:0 #: field:account.fiscal.position.account.template,account_dest_id:0 msgid "Account Destination" -msgstr "Kontozuordnung" +msgstr "Kontenzuordnung" #. module: account #: help:account.invoice.refund,filter_refund:0 @@ -8681,7 +8681,7 @@ msgid "" "already reconciled" msgstr "" "Diese Auswahl legt fest, wie die Gutschrift vorgenommen wird. Sie können die " -"Rechnung nicht Abbrechen oder Modifizieren, wenn die Rechnung bereits " +"Rechnung nicht abbrechen oder modifizieren, wenn die Rechnung bereits " "beglichen wurde." #. module: account @@ -8700,7 +8700,7 @@ msgstr "Nummernfolge" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "Paypal Konto" +msgstr "Paypal-Konto" #. module: account #: selection:account.print.journal,sort_selection:0 @@ -8779,9 +8779,9 @@ msgid "" "positive, it gives the day of the next month. Set 0 for net days (otherwise " "it's based on the beginning of the month)." msgstr "" -"Tag des Monats, setze -1 für den letzten Tag des laufenden Monats. Bei " -"positivem Wert wird der Tag des nächsten Monats angenommen. Setze 0 für " -"Nettotage (oder es wird der Monatsanfang genommen)." +"Tag des Monats, setzen Sie '-1' für den letzten Tag des laufenden Monats. " +"Bei positivem Wert wird der Tag des nächsten Monats angenommen. Setzen Sie " +"'0' für Nettotage (oder es wird der Monatsanfang genommen)." #. module: account #: view:account.move.line.reconcile:0 @@ -8813,7 +8813,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_cashbox_line msgid "CashBox Line" -msgstr "Barkasse Buchungen" +msgstr "Barkassenbuchung" #. module: account #: field:account.installer,charts:0 @@ -8828,7 +8828,7 @@ msgstr "Finanzbuchhaltung" #: model:ir.actions.report.xml,name:account.account_3rdparty_ledger_other #: model:ir.ui.menu,name:account.menu_account_partner_ledger msgid "Partner Ledger" -msgstr "Partner Kontoauszug" +msgstr "Partner-Kontoauszug" #. module: account #: selection:account.tax.template,type:0 @@ -8874,7 +8874,7 @@ msgstr "Wiederkehrende Buchungen berechnen" #. module: account #: view:account.move.line.unreconcile.select:0 msgid "Open for Unreconciliation" -msgstr "Öffne Storno Ausgleich" +msgstr "Storno-Ausgleich öffnen" #. module: account #: field:account.bank.statement.line,partner_id:0 @@ -8904,7 +8904,7 @@ msgstr "Partner" #. module: account #: help:account.change.currency,currency_id:0 msgid "Select a currency to apply on the invoice" -msgstr "Wähle eine Währung für diese Rechnung" +msgstr "Eine Währung für diese Rechnung wählen" #. module: account #: code:addons/account/account_invoice.py:901 @@ -8923,7 +8923,7 @@ msgid "" "Select Fiscal Year which you want to remove entries for its End of year " "entries journal" msgstr "" -"Wähle das Geschäftsjahr aus dessen Jahres-Abschlussbericht und dessen " +"Wählen Sie das Geschäftsjahr aus dessen Jahres-Abschlussbericht und dessen " "Abschluss-Salden entfernt werden sollen" #. module: account @@ -8978,7 +8978,7 @@ msgstr "Wurde dieser Ausgleich durch eine Jahreseröffnung erzeugt ?" #: view:account.analytic.line:0 #: model:ir.actions.act_window,name:account.action_account_analytic_line_form msgid "Analytic Entries" -msgstr "Kostenstellen Buchungen" +msgstr "Kostenstellenbuchungen" #. module: account #: view:account.analytic.account:0 @@ -9005,13 +9005,13 @@ msgstr "Restbetrag" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "Öffne Kassenprotokoll" +msgstr "Kassenprotokoll öffnen" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 #: model:process.node,note:account.process_node_supplierinvoiceinvoice0 msgid "Invoice's state is Open" -msgstr "Rechnungsstatus ist Offen" +msgstr "Rechnungsstatus ist 'Offen'" #. module: account #: view:account.analytic.account:0 @@ -9050,7 +9050,7 @@ msgstr "Es ist noch kein Geschäftsjahr für das Unternehmen angelegt" #. module: account #: view:account.invoice:0 msgid "Proforma" -msgstr "Proforma" +msgstr "Pro-Forma" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -9082,13 +9082,13 @@ msgstr "Bitte definieren Sie eine Nummernfolge für das Journal." #: help:account.tax.template,amount:0 msgid "For Tax Type percent enter % ratio between 0-1." msgstr "" -"Für den Typ Prozent erfassen Sie einen Wert zwischen 0 und 1, z. B. 0.19 für " -"19%" +"Für den Typ 'Prozent' erfassen Sie einen Wert zwischen 0 und 1, z. B. 0.19 " +"für 19%" #. module: account #: view:account.analytic.account:0 msgid "Current Accounts" -msgstr "aktuelle Konten" +msgstr "Aktuelle Konten" #. module: account #: view:account.invoice.report:0 @@ -9164,7 +9164,7 @@ msgstr "Nächste Rechnungsnummer" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting msgid "Generic Reporting" -msgstr "Standard Auswertungen" +msgstr "Standardauswertungen" #. module: account #: field:account.move.line.reconcile.writeoff,journal_id:0 @@ -9179,7 +9179,7 @@ msgstr "Erlöskonto" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "korrigierter Saldo" +msgstr "Korrigierter Saldo" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form @@ -9190,7 +9190,7 @@ msgstr "Steuerzuordnung Vorlage" #. module: account #: view:account.entries.report:0 msgid "Int.Type" -msgstr "Kontotyp" +msgstr "Kontentyp" #. module: account #: field:account.move.line,tax_amount:0 @@ -9204,7 +9204,7 @@ msgid "" "year. Note that you can run this wizard many times for the same fiscal year." msgstr "" "Dieser Assistent entfernt die Jahresabschlußbuchungen für das ausgewählte " -"Geschäftsjahr. Beachten Sie dass der Assistent für den Jahresabschluß " +"Geschäftsjahr. Beachten Sie, dass der Assistent für den Jahresabschluß " "beliebig oft wiederholt werden kann." #. module: account @@ -9324,7 +9324,7 @@ msgstr "Anwenden" #: model:ir.actions.act_window,name:account.action_account_type_form #: model:ir.ui.menu,name:account.menu_action_account_type_form msgid "Account Types" -msgstr "Kontoartkonfiguration" +msgstr "Kontentypkonfiguration" #. module: account #: model:email.template,subject:account.email_template_edi_invoice @@ -9364,7 +9364,7 @@ msgstr "Ausgleichen offener Posten" #. module: account #: view:account.tax.template:0 msgid "Keep empty to use the income account" -msgstr "Leer lassen um das Erlöskonto zu nutzen" +msgstr "Leer lassen, um das Erlöskonto zu nutzen" #. module: account #: view:account.invoice:0 @@ -9376,11 +9376,11 @@ msgid "" "You should press this button to re-open it and let it continue its normal " "process after having resolved the eventual exceptions it may have created." msgstr "" -"Diese Schaltfläche gibt es nur, wenn die Rechnung bezahlt und voll " -"ausgeglichen ist, aber das ermittelte Ausgleichskennzeichen falsch ist. " -"D.h. der Ausgleich wurde Rückgängig gemacht. Damit kann die Rechnung wieder " -"auf offen gesetzt werden und im normalen Arbeitsfluss weiter behandelt " -"werden, nachdem eventuelle Ausnahmen bearbeitet wurden." +"Diesen Button gibt es nur, wenn die Rechnung bezahlt und voll ausgeglichen " +"ist, aber das ermittelte Ausgleichskennzeichen falsch ist. D.h. der " +"Ausgleich wurde rückgängig gemacht. Damit kann die Rechnung wieder auf offen " +"gesetzt werden und im normalen Workflow weiter behandelt werden, nachdem " +"eventuelle Ausnahmen bearbeitet wurden." #. module: account #: model:ir.actions.act_window,help:account.action_account_journal_form @@ -9401,7 +9401,7 @@ msgid "" " " msgstr "" "

\n" -" Klicken Sie um ein Journal hinzuzufügen.\n" +" Klicken Sie, um ein Journal hinzuzufügen.\n" "

\n" " In einem Journal werden alle Geschäftsvorfälle in " "chronologischer Reihenfolge aufgezeichnet und gebucht.\n" @@ -9421,7 +9421,7 @@ msgstr "Status Geschäftsjahr" #. module: account #: field:account.invoice.refund,journal_id:0 msgid "Refund Journal" -msgstr "Journal Gutschriften" +msgstr "Journal-Gutschriften" #. module: account #: report:account.account.balance:0 @@ -9447,12 +9447,12 @@ msgstr "" #: view:board.board:0 #: model:ir.actions.act_window,name:account.action_company_analysis_tree msgid "Company Analysis" -msgstr "Analyse Unternehmen" +msgstr "Unternehmensanalyse" #. module: account #: help:account.invoice,account_id:0 msgid "The partner account used for this invoice." -msgstr "Partner Finanzkonto dieser Rechnung." +msgstr "Partner-Finanzkonto dieser Rechnung." #. module: account #: code:addons/account/account.py:3391 @@ -9486,7 +9486,7 @@ msgstr "Zwischensumme" #. module: account #: view:account.vat.declaration:0 msgid "Print Tax Statement" -msgstr "Drucke Umsatzsteueranmeldung" +msgstr "Umsatzsteueranmeldung drucken" #. module: account #: view:account.model.line:0 @@ -9511,7 +9511,7 @@ msgstr "Lieferanten" #. module: account #: view:account.journal:0 msgid "Accounts Type Allowed (empty for no control)" -msgstr "zugelassene Kontoarten (leer = alle)" +msgstr "Zugelassene Kontenarten (leer = alle)" #. module: account #: help:account.move.line,amount_residual:0 @@ -9658,7 +9658,7 @@ msgstr "Kostenstellen" #: report:account.general.journal:0 #: field:account.journal,name:0 msgid "Journal Name" -msgstr "Journal Bezeichnung" +msgstr "Journalbezeichnung" #. module: account #: code:addons/account/account_move_line.py:829 @@ -9794,12 +9794,12 @@ msgstr "Steuern Vorlage" #. module: account #: field:account.invoice.refund,period:0 msgid "Force period" -msgstr "Erzwinge Periode" +msgstr "Periode erzwingen" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "Drucke Partner-Saldenliste" +msgstr "Drucke Partner Saldenliste" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -9873,8 +9873,8 @@ msgid "" "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" "Konfigurationsfehler !\n" -"Sie können für Konten mit der Kontoart Debitor / Kreditor nur den Kontotyp " -"\"Offene Posten\" für die Jahreswechsel Methode auswählen." +"Sie können für Konten mit der Kontenart Debitor / Kreditor nur den " +"Kontentyp \"Offene Posten\" für die Jahreswechsel-Methode auswählen." #. module: account #: field:account.config.settings,has_fiscal_year:0 @@ -9917,12 +9917,12 @@ msgstr "Restbetrag" #: field:account.invoice,move_lines:0 #: field:account.move.reconcile,line_id:0 msgid "Entry Lines" -msgstr "Erfasse Buchungen" +msgstr "Buchungen erfassen" #. module: account #: model:ir.actions.act_window,name:account.action_open_journal_button msgid "Open Journal" -msgstr "Öffne Journal" +msgstr "Journal öffnen" #. module: account #: report:account.analytic.account.journal:0 @@ -9970,12 +9970,12 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_bankstatement0 msgid "Registered payment" -msgstr "Erfassung Zahlungseingang" +msgstr "Zahlungseingang erfassen" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close states of Fiscal year and periods" -msgstr "Beende Status für Geschäftsjahr und Perioden" +msgstr "Status für Geschäftsjahr und Perioden beenden" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 @@ -9999,7 +9999,7 @@ msgstr "Kostenstelle" #: model:process.node,name:account.process_node_invoiceinvoice0 #: model:process.node,name:account.process_node_supplierinvoiceinvoice0 msgid "Create Invoice" -msgstr "Erzeuge Rechnung" +msgstr "Rechnung erzeugen" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer @@ -10015,7 +10015,7 @@ msgstr "Steuer Einkauf (%)" #: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." -msgstr "Bitte erstellen Sie Rechnungspositionen" +msgstr "Bitte erstellen Sie Rechnungspositionen." #. module: account #: code:addons/account/wizard/pos_box.py:36 @@ -10030,7 +10030,7 @@ msgstr "" #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "Zeige Detail" +msgstr "Detail anzeigen" #. module: account #: code:addons/account/account.py:3203 @@ -10180,7 +10180,7 @@ msgstr "Nummernfolge Lieferantengutschrift" #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "Rechnung ist bereits ausgeglichen" +msgstr "Rechnung ist bereits ausgeglichen." #. module: account #: help:account.config.settings,module_account_payment:0 @@ -10194,10 +10194,10 @@ msgid "" msgstr "" "Sie können Zahlungsaufträge erstellen und verwalten , um\n" "* diese als Grundlage für externe Erweiterungen zur Automatisierung von " -"Zahlungen zu nutzen. \n" +"Zahlungen zu nutzen, \n" "* dadurch den Rechnungsausgleich von Lieferanten und andere Kreditoren " "durchzuführen.\n" -"* Es erfolgt eine Installation des Moduls account_payment." +"Es erfolgt eine Installation des Moduls account_payment." #. module: account #: xsl:account.transfer:0 @@ -10253,7 +10253,7 @@ msgstr "Händisch oder automatisch im System erfasst." #: report:account.account.balance:0 #: report:account.general.ledger_landscape:0 msgid "Display Account" -msgstr "Anzeige Konten" +msgstr "Konten anzeigen" #. module: account #: selection:account.account,type:0 @@ -10284,7 +10284,7 @@ msgstr "" #. module: account #: view:account.fiscalyear.close:0 msgid "Generate Fiscal Year Opening Entries" -msgstr "Erzeuge Jahreseröffnungsbuchungen" +msgstr "Jahreseröffnungsbuchungen erzeugen" #. module: account #: report:account.third_party_ledger:0 @@ -10330,7 +10330,7 @@ msgstr "Datum / Periode" #. module: account #: report:account.central.journal:0 msgid "A/C No." -msgstr "Akonto" +msgstr "a conto" #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement @@ -10346,7 +10346,7 @@ msgid "" msgstr "" "Fehler !\n" "Die Periode wurde nicht korrekt angelegt. Entweder überschneiden sich " -"Perioden, oder der Zeitraum passt zeitlich nicht in dieses Geschäftsjahr." +"Perioden oder der Zeitraum passt zeitlich nicht in dieses Geschäftsjahr." #. module: account #: report:account.overdue:0 @@ -10436,7 +10436,7 @@ msgstr "Periodische Verarbeitung" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "Kunden und Lieferantenrechnungen" +msgstr "Kunden- und Lieferantenrechnungen" #. module: account #: model:process.node,note:account.process_node_paymententries0 @@ -10579,7 +10579,7 @@ msgstr "Eingabe Aboauftrag" #: field:accounting.report,date_from:0 #: field:accounting.report,date_from_cmp:0 msgid "Start Date" -msgstr "Start Datum" +msgstr "Startdatum" #. module: account #: help:account.invoice,reconciled:0 @@ -10601,7 +10601,7 @@ msgstr "Rechnungsentwürfe" #: view:cash.box.in:0 #: model:ir.actions.act_window,name:account.action_cash_box_in msgid "Put Money In" -msgstr "Zahle Geld ein" +msgstr "Geld einzahlen" #. module: account #: selection:account.account.type,close_method:0 @@ -10657,7 +10657,7 @@ msgstr "Kostenstelle (nur Mengen)" #: model:process.transition,name:account.process_transition_analyticinvoice0 #: model:process.transition,name:account.process_transition_supplieranalyticcost0 msgid "From analytic accounts" -msgstr "von Kostenstelle" +msgstr "Von Kostenstelle" #. module: account #: view:account.installer:0 @@ -10667,7 +10667,7 @@ msgstr "Konfiguration Geschäftsjahr" #. module: account #: field:account.period,name:0 msgid "Period Name" -msgstr "Periode Bezeichnung" +msgstr "Periodenbezeichnung" #. module: account #: code:addons/account/wizard/account_invoice_state.py:68 @@ -10682,7 +10682,7 @@ msgstr "" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Code/Date" -msgstr "Kurz/Datum" +msgstr "Code/Datum" #. module: account #: view:account.bank.statement:0 @@ -10749,7 +10749,7 @@ msgid "" "This account will be used instead of the default one as the payable account " "for the current partner" msgstr "" -"Dieses Konto wird an Stelle des Standard Kreditor Kontos für diesen Partner " +"Dieses Konto wird an Stelle des Standard-Kreditorenkontos für diesen Partner " "verwendet" #. module: account @@ -10796,7 +10796,7 @@ msgstr "Haben" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "Entwurf Rechnung " +msgstr "Rechnungsentwurf " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal @@ -10812,7 +10812,7 @@ msgstr "Wiederkehrende Buchungen Journal" #: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." -msgstr "Start Periode die auf die Ende Periode folgen soll." +msgstr "Startperiode, die auf die Endeperiode folgen soll." #. module: account #: field:account.invoice,number:0 @@ -10902,7 +10902,7 @@ msgstr "Es wurde noch kein Journal für Verkauf / Einkauf angelegt." #. module: account #: view:account.move.line.reconcile.select:0 msgid "Open for Reconciliation" -msgstr "Öffnen für Ausgleich offener Posten" +msgstr "Zum Ausgleich offener Posten öffnen" #. module: account #: field:account.account,parent_left:0 @@ -10943,7 +10943,7 @@ msgid "" "and is the process of transferring debit and credit amounts from a journal " "of original entry to a ledger book." msgstr "" -"Die endgültige Buchung und Kontrolle von Buchungssätzen im Status Entwurf " +"Die endgültige Buchung und Kontrolle von Buchungssätzen im Status 'Entwurf' " "wird 'Buchung' genannt und entspricht in der Prozessabfolge." #. module: account @@ -10954,7 +10954,7 @@ msgstr "Zeitraum" #. module: account #: view:account.subscription:0 msgid "Remove Lines" -msgstr "Entferne Buchung" +msgstr "Buchung entfernen" #. module: account #: selection:account.account,type:0 @@ -10970,7 +10970,7 @@ msgstr "Sachkonto" #: field:account.account.template,type:0 #: field:account.entries.report,type:0 msgid "Internal Type" -msgstr "Kontotyp" +msgstr "Kontentyp" #. module: account #: field:account.subscription.generate,date:0 @@ -11026,7 +11026,7 @@ msgstr "Gebucht" #: field:accounting.report,date_to:0 #: field:accounting.report,date_to_cmp:0 msgid "End Date" -msgstr "Ende Datum" +msgstr "Enddatum" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -11098,7 +11098,8 @@ msgstr "Bruttobetrag" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "Entwurf / Proforma / Abgebrochen Rechnungen können nicht %s werden." +msgstr "" +"Entwurf / Pro-Forma / Abgebrochen- Rechnungen können nicht %s werden." #. module: account #: field:account.tax,account_analytic_paid_id:0 @@ -11198,7 +11199,7 @@ msgstr "" #. module: account #: view:account.fiscalyear:0 msgid "Create Monthly Periods" -msgstr "Erzeuge Monatszeiträume" +msgstr "Erzeuge Monatl. Perioden" #. module: account #: field:account.tax.code.template,sign:0 @@ -11263,7 +11264,7 @@ msgstr "Ende Periode" #: sql_constraint:account.journal:0 msgid "The code of the journal must be unique per company !" msgstr "" -"Die Kurzbezeichnung des Journals sollte je Unternehmen (Mandant)eindeutig " +"Die Kurzbezeichnung des Journals sollte je Unternehmen (Mandant) eindeutig " "sein." #. module: account @@ -11541,11 +11542,11 @@ msgid "" " " msgstr "" "

\n" -"Klicken Sie um neue Steuern zu definieren. \n" -"Je nach Land, ist eine Steuer in der Regel ein Wert in Ihrer \n" +"Klicken Sie, um neue Steuern zu definieren. \n" +"Je nach Land ist eine Steuer in der Regel ein Wert in Ihrer \n" "Umsatzsteuererklärung. OpenERP ermöglicht die Definition\n" "von Steuerstrukturen, damit sämtliche Steuerberechnungen \n" -" und Buchungen dann in einer oder mehrerer Positionen für \n" +" und Buchungen dann in einer oder mehreren Positionen für \n" " die Voranmeldung bzw. Steuererklärung auftauchen. \n" " " @@ -11610,7 +11611,7 @@ msgstr "Journal Sachkonten" #. module: account #: view:account.invoice:0 msgid "Search Invoice" -msgstr "Suche Rechnungen" +msgstr "Rechnung suchen" #. module: account #: report:account.invoice:0 @@ -11655,7 +11656,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_validate_account_move_lines msgid "Validate Account Move Lines" -msgstr "Verbuche Buchungszeilen" +msgstr "Buchungszeilen verbuchen" #. module: account #: help:res.partner,property_account_position:0 @@ -11668,7 +11669,7 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 msgid "Invoice's state is Done." -msgstr "Abrechnungsstatus ist Erledigt" +msgstr "Abrechnungsstatus ist 'Erledigt'" #. module: account #: model:process.transition,note:account.process_transition_reconcilepaid0 @@ -11685,7 +11686,7 @@ msgstr "Neue Währung wurde nicht korrekt konfiguriert." #. module: account #: view:account.account.template:0 msgid "Search Account Templates" -msgstr "Suche nach Kontenplan Vorlage" +msgstr "Suche nach Kontenplan-Vorlage" #. module: account #: view:account.invoice.tax:0 @@ -11809,7 +11810,7 @@ msgstr "Zukunft" #. module: account #: view:account.move.line:0 msgid "Search Journal Items" -msgstr "Durchsuche Buchungen" +msgstr "Buchungen durchsuchen" #. module: account #: help:account.tax,base_sign:0 @@ -11821,7 +11822,7 @@ msgstr "Durchsuche Buchungen" #: help:account.tax.template,ref_tax_sign:0 #: help:account.tax.template,tax_sign:0 msgid "Usually 1 or -1." -msgstr "Normal 1 oder -1" +msgstr "Üblicherweise '1' oder '-1'" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account_template @@ -11836,7 +11837,7 @@ msgstr "Aufwandskonto für Produktvorlage" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "Zahlungsbedingunen für Kunden" +msgstr "Zahlungsbedingungen für Kunden" #. module: account #: help:accounting.report,label_filter:0 @@ -11844,7 +11845,7 @@ msgid "" "This label will be displayed on report to show the balance computed for the " "given comparison filter." msgstr "" -"Dieser Text wird am Bericht gedruckt, um den Saldo für den entsprechenden " +"Dieser Text wird auf Bericht gedruckt, um den Saldo für den entsprechenden " "Vergleichsfilter zu beschreiben" #. module: account @@ -12054,9 +12055,6 @@ msgstr "" #~ msgid "Print Journal" #~ msgstr "Umsätze nach Journal und Perioden" -#~ msgid "Cancel Invoice" -#~ msgstr "Abbrechen Rechnung" - #~ msgid "Required" #~ msgstr "erforderlich" @@ -16072,3 +16070,6 @@ msgstr "" #~ msgid " Valuation: Percent" #~ msgstr " Berechnungsform: Prozent" + +#~ msgid "Cancel Invoice" +#~ msgstr "Rechnung abbrechen" diff --git a/addons/account/i18n/el.po b/addons/account/i18n/el.po index 25c554597d5..e94217ec09c 100644 --- a/addons/account/i18n/el.po +++ b/addons/account/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/en_GB.po b/addons/account/i18n/en_GB.po index f040b6bb149..0a08cdc8197 100644 --- a/addons/account/i18n/en_GB.po +++ b/addons/account/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/en_US.po b/addons/account/i18n/en_US.po index 1dc45dff658..431ce223909 100644 --- a/addons/account/i18n/en_US.po +++ b/addons/account/i18n/en_US.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es.po b/addons/account/i18n/es.po index 577d42eea47..e9d8fe7d8ec 100644 --- a/addons/account/i18n/es.po +++ b/addons/account/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:00+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -1946,7 +1946,7 @@ msgstr "15 días" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing msgid "Invoicing" -msgstr "Facturación" +msgstr "Contabilidad" #. module: account #: code:addons/account/report/account_partner_balance.py:115 @@ -15661,10 +15661,6 @@ msgstr "" #~ msgid "Contacts" #~ msgstr "Contactos" -#, python-format -#~ msgid "The payment term of supplier does not have a payment term line!" -#~ msgstr "¡La forma de pago de proveedor no tiene una línea de forma de pago!" - #~ msgid "Review your Financial Accounts" #~ msgstr "Revisión de sus cuentas financieras" @@ -15950,3 +15946,7 @@ msgstr "" #, python-format #~ msgid "The journal must have default credit and debit account" #~ msgstr "El diario debe tener una cuenta acreedora y deudora por defecto." + +#, python-format +#~ msgid "The payment term of supplier does not have a payment term line!" +#~ msgstr "El plazo de pago del proveedor no tiene ninguna línea de plazo." diff --git a/addons/account/i18n/es_AR.po b/addons/account/i18n/es_AR.po index 47b720858ee..936d0ac135a 100644 --- a/addons/account/i18n/es_AR.po +++ b/addons/account/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_CL.po b/addons/account/i18n/es_CL.po index e78457a0487..f8d4e2dd71c 100644 --- a/addons/account/i18n/es_CL.po +++ b/addons/account/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_CR.po b/addons/account/i18n/es_CR.po index df6d7868074..7d38cde1104 100644 --- a/addons/account/i18n/es_CR.po +++ b/addons/account/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:38+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: account diff --git a/addons/account/i18n/es_DO.po b/addons/account/i18n/es_DO.po index 21433adcab8..b696fa1a8a9 100644 --- a/addons/account/i18n/es_DO.po +++ b/addons/account/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_EC.po b/addons/account/i18n/es_EC.po index aaac5a55bad..1cc7313f42f 100644 --- a/addons/account/i18n/es_EC.po +++ b/addons/account/i18n/es_EC.po @@ -17,8 +17,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:38+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:04+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_MX.po b/addons/account/i18n/es_MX.po index a62833c3934..3f6529a6693 100644 --- a/addons/account/i18n/es_MX.po +++ b/addons/account/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:38+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_PE.po b/addons/account/i18n/es_PE.po new file mode 100644 index 00000000000..622422083a0 --- /dev/null +++ b/addons/account/i18n/es_PE.po @@ -0,0 +1,10849 @@ +# Spanish (Peru) 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-12-09 17:00+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Spanish (Peru) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-01-28 06:04+0000\n" +"X-Generator: Launchpad (build 16914)\n" + +#. module: account +#: model:process.transition,name:account.process_transition_supplierreconcilepaid0 +msgid "System payment" +msgstr "" + +#. module: account +#: sql_constraint:account.fiscal.position.account:0 +msgid "" +"An account fiscal position could be defined only once time on same accounts." +msgstr "" + +#. module: account +#: help:account.tax.code,sequence:0 +msgid "" +"Determine the display order in the report 'Accounting \\ Reporting \\ " +"Generic Reporting \\ Taxes \\ Taxes Report'" +msgstr "" + +#. module: account +#: view:account.move.reconcile:0 +msgid "Journal Entry Reconcile" +msgstr "" + +#. module: account +#: view:account.account:0 +#: view:account.bank.statement:0 +#: view:account.move.line:0 +msgid "Account Statistics" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Proforma/Open/Paid Invoices" +msgstr "" + +#. module: account +#: field:report.invoice.created,residual:0 +msgid "Residual" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:369 +#, python-format +msgid "Journal item \"%s\" is not valid." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_report_aged_receivable +msgid "Aged Receivable Till Today" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_invoiceimport0 +msgid "Import from invoice or payment" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 +#, python-format +msgid "Bad Account!" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Total Debit" +msgstr "" + +#. module: account +#: constraint:account.account.template:0 +msgid "" +"Error!\n" +"You cannot create recursive account templates." +msgstr "" + +#. module: account +#. openerp-web +#: view:account.automatic.reconcile:0 +#: field:account.move.line,reconcile_id:0 +#: view:account.move.line.reconcile:0 +#: view:account.move.line.reconcile.writeoff:0 +#: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 +#, python-format +msgid "Reconcile" +msgstr "" + +#. module: account +#: field:account.bank.statement,name:0 +#: field:account.bank.statement.line,ref:0 +#: field:account.entries.report,ref:0 +#: field:account.move,ref:0 +#: field:account.move.line,ref:0 +#: field:account.subscription,ref:0 +#: xsl:account.transfer:0 +#: field:cash.box.in,ref:0 +msgid "Reference" +msgstr "" + +#. module: account +#: help:account.payment.term,active:0 +msgid "" +"If the active field is set to False, it will allow you to hide the payment " +"term without removing it." +msgstr "" + +#. module: account +#: code:addons/account/account.py:641 +#: code:addons/account/account.py:686 +#: code:addons/account/account.py:781 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 +#: code:addons/account/account_move_line.py:98 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 +#: code:addons/account/wizard/account_fiscalyear_close.py:62 +#: code:addons/account/wizard/account_invoice_state.py:44 +#: code:addons/account/wizard/account_invoice_state.py:68 +#: code:addons/account/wizard/account_state_open.py:37 +#: code:addons/account/wizard/account_validate_account_move.py:39 +#: code:addons/account/wizard/account_validate_account_move.py:61 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3197 +#, python-format +msgid "Miscellaneous Journal" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 +#, python-format +msgid "" +"You have to set the 'End of Year Entries Journal' for this Fiscal Year " +"which is set after generating opening entries from 'Generate Opening " +"Entries'." +msgstr "" + +#. module: account +#: field:account.fiscal.position.account,account_src_id:0 +#: field:account.fiscal.position.account.template,account_src_id:0 +msgid "Account Source" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_period +msgid "" +"

\n" +" Click to add a fiscal period.\n" +"

\n" +" An accounting period typically is a month or a quarter. It\n" +" usually corresponds to the periods of the tax declaration.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard +msgid "Invoices Created Within Past 15 Days" +msgstr "" + +#. module: account +#: field:accounting.report,label_filter:0 +msgid "Column Label" +msgstr "" + +#. module: account +#: help:account.config.settings,code_digits:0 +msgid "No. of digits to use for account code" +msgstr "" + +#. module: account +#: help:account.analytic.journal,type:0 +msgid "" +"Gives the type of the analytic journal. When it needs for a document (eg: an " +"invoice) to create analytic entries, OpenERP will look for a matching " +"journal of the same type." +msgstr "" + +#. module: account +#: help:account.tax,account_analytic_collected_id:0 +msgid "" +"Set the analytic account that will be used by default on the invoice tax " +"lines for invoices. Leave empty if you don't want to use an analytic account " +"on the invoice tax lines by default." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_tax_template_form +#: model:ir.ui.menu,name:account.menu_action_account_tax_template_form +msgid "Tax Templates" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_move_line_reconcile_select +msgid "Move line reconcile select" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_supplierentriesreconcile0 +msgid "Accounting entries are an input of the reconciliation." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports +msgid "Belgian Reports" +msgstr "" + +#. module: account +#: model:mail.message.subtype,name:account.mt_invoice_validated +msgid "Validated" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_income_view1 +msgid "Income View" +msgstr "" + +#. module: account +#: help:account.account,user_type:0 +msgid "" +"Account Type is used for information purpose, to generate country-specific " +"legal reports, and set the rules to close a fiscal year and generate opening " +"entries." +msgstr "" + +#. module: account +#: field:account.config.settings,sale_refund_sequence_next:0 +msgid "Next credit note number" +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_voucher:0 +msgid "" +"This includes all the basic requirements of voucher entries for bank, cash, " +"sales, purchase, expense, contra, etc.\n" +" This installs the module account_voucher." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_use_model_create_entry +msgid "Manual Recurring" +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,allow_write_off:0 +msgid "Allow write off" +msgstr "" + +#. module: account +#: view:account.analytic.chart:0 +msgid "Select the Period for Analysis" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_invoice_tree3 +msgid "" +"

\n" +" Click to create a customer refund. \n" +"

\n" +" A refund is a document that credits an invoice completely " +"or\n" +" partially.\n" +"

\n" +" Instead of manually creating a customer refund, you\n" +" can generate it directly from the related customer invoice.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: help:account.installer,charts:0 +msgid "" +"Installs localized accounting charts to match as closely as possible the " +"accounting needs of your company based on your country." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_unreconcile +msgid "Account Unreconcile" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_budget:0 +msgid "Budget management" +msgstr "" + +#. module: account +#: view:product.template:0 +msgid "Purchase Properties" +msgstr "" + +#. module: account +#: help:account.financial.report,style_overwrite:0 +msgid "" +"You can set up here the format you want this record to be displayed. If you " +"leave the automatic formatting, it will be computed based on the financial " +"reports hierarchy (auto-computed field 'level')." +msgstr "" + +#. module: account +#: field:account.config.settings,group_multi_currency:0 +msgid "Allow multi currencies" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:77 +#, python-format +msgid "You must define an analytic journal of type '%s'!" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "June" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_automatic_reconcile.py:148 +#, python-format +msgid "You must select accounts to reconcile." +msgstr "" + +#. module: account +#: help:account.config.settings,group_analytic_accounting:0 +msgid "Allows you to use the analytic accounting." +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: field:account.invoice,user_id:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,user_id:0 +msgid "Salesperson" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: view:account.invoice:0 +msgid "Responsible" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_bank_accounts_wizard +msgid "account.bank.accounts.wizard" +msgstr "" + +#. module: account +#: field:account.move.line,date_created:0 +#: field:account.move.reconcile,create_date:0 +msgid "Creation date" +msgstr "" + +#. module: account +#: selection:account.journal,type:0 +msgid "Purchase Refund" +msgstr "" + +#. module: account +#: selection:account.journal,type:0 +msgid "Opening/Closing Situation" +msgstr "" + +#. module: account +#: help:account.journal,currency:0 +msgid "The currency used to enter statement" +msgstr "" + +#. module: account +#: field:account.journal,default_debit_account_id:0 +msgid "Default Debit Account" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Total Credit" +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_asset:0 +msgid "" +"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,\n" +" but not accounting (Journal Items, Chart of Accounts, ...)" +msgstr "" + +#. module: account +#: help:account.bank.statement.line,name:0 +msgid "Originator to Beneficiary Information" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 +#, python-format +msgid "Period :" +msgstr "" + +#. module: account +#: field:account.account.template,chart_template_id:0 +#: field:account.fiscal.position.template,chart_template_id:0 +#: field:account.tax.template,chart_template_id:0 +#: field:wizard.multi.charts.accounts,chart_template_id:0 +msgid "Chart Template" +msgstr "" + +#. module: account +#: selection:account.invoice.refund,filter_refund:0 +msgid "Modify: create refund, reconcile and create a new draft invoice" +msgstr "" + +#. module: account +#: help:account.config.settings,tax_calculation_rounding_method:0 +msgid "" +"If you select 'Round per line' : for each tax, the tax amount will first be " +"computed and rounded for each PO/SO/invoice line and then these rounded " +"amounts will be summed, leading to the total amount for that tax. If you " +"select 'Round globally': for each tax, the tax amount will be computed for " +"each PO/SO/invoice line, then these amounts will be summed and eventually " +"this total tax amount will be rounded. If you sell with tax included, you " +"should choose 'Round per line' because you certainly want the sum of your " +"tax-included line subtotals to be equal to the total amount with taxes." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" + +#. module: account +#: help:account.model.line,amount_currency:0 +msgid "The amount expressed in an optional other currency." +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Available Coins" +msgstr "" + +#. module: account +#: field:accounting.report,enable_filter:0 +msgid "Enable Comparison" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: field:account.automatic.reconcile,journal_id:0 +#: view:account.bank.statement:0 +#: field:account.bank.statement,journal_id:0 +#: field:account.bank.statement.line,journal_id:0 +#: report:account.central.journal:0 +#: view:account.entries.report:0 +#: field:account.entries.report,journal_id:0 +#: view:account.invoice:0 +#: field:account.invoice,journal_id:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,journal_id:0 +#: view:account.journal:0 +#: field:account.journal.cashbox.line,journal_id:0 +#: field:account.journal.period,journal_id:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: view:account.model:0 +#: field:account.model,journal_id:0 +#: view:account.move:0 +#: field:account.move,journal_id:0 +#: field:account.move.bank.reconcile,journal_id:0 +#: view:account.move.line:0 +#: field:account.move.line,journal_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,journal_id:0 +#: model:ir.actions.report.xml,name:account.account_journal +#: model:ir.model,name:account.model_account_journal +#: field:validate.account.move,journal_id:0 +msgid "Journal" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_invoice_confirm +msgid "Confirm the selected invoices" +msgstr "" + +#. module: account +#: field:account.addtmpl.wizard,cparent_id:0 +msgid "Parent target" +msgstr "" + +#. module: account +#: help:account.invoice.line,sequence:0 +msgid "Gives the sequence of this line when displaying the invoice." +msgstr "" + +#. module: account +#: field:account.bank.statement,account_id:0 +msgid "Account used in this journal" +msgstr "" + +#. module: account +#: help:account.aged.trial.balance,chart_account_id:0 +#: help:account.balance.report,chart_account_id:0 +#: help:account.central.journal,chart_account_id:0 +#: help:account.common.account.report,chart_account_id:0 +#: help:account.common.journal.report,chart_account_id:0 +#: help:account.common.partner.report,chart_account_id:0 +#: help:account.common.report,chart_account_id:0 +#: help:account.general.journal,chart_account_id:0 +#: help:account.partner.balance,chart_account_id:0 +#: help:account.partner.ledger,chart_account_id:0 +#: help:account.print.journal,chart_account_id:0 +#: help:account.report.general.ledger,chart_account_id:0 +#: help:account.vat.declaration,chart_account_id:0 +#: help:accounting.report,chart_account_id:0 +msgid "Select Charts of Accounts" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_invoice_refund +msgid "Invoice Refund" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Li." +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,unreconciled:0 +msgid "Not reconciled transactions" +msgstr "" + +#. module: account +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +msgid "Counterpart" +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,tax_ids:0 +#: field:account.fiscal.position.template,tax_ids:0 +msgid "Tax Mapping" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state +#: model:ir.ui.menu,name:account.menu_wizard_fy_close_state +msgid "Close a Fiscal Year" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 +msgid "The accountant confirms the statement." +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/xml/account_move_reconciliation.xml:31 +#, python-format +msgid "Nothing to reconcile" +msgstr "" + +#. module: account +#: field:account.config.settings,decimal_precision:0 +msgid "Decimal precision on journal entries" +msgstr "" + +#. module: account +#: selection:account.config.settings,period:0 +#: selection:account.installer,period:0 +msgid "3 Monthly" +msgstr "" + +#. module: account +#: field:ir.sequence,fiscal_ids:0 +msgid "Sequences" +msgstr "" + +#. module: account +#: field:account.financial.report,account_report_id:0 +#: selection:account.financial.report,type:0 +msgid "Report Value" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_validate_account_move.py:39 +#, python-format +msgid "" +"Specified journal does not have any account move entries in draft state for " +"this period." +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: view:account.fiscal.position.template:0 +msgid "Taxes Mapping" +msgstr "" + +#. module: account +#: report:account.central.journal:0 +msgid "Centralized Journal" +msgstr "" + +#. module: account +#: sql_constraint:account.sequence.fiscalyear:0 +msgid "Main Sequence must be different from current !" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_change_currency.py:64 +#: code:addons/account/wizard/account_change_currency.py:70 +#, python-format +msgid "Current currency is not configured properly." +msgstr "" + +#. module: account +#: field:account.journal,profit_account_id:0 +msgid "Profit Account" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1156 +#, python-format +msgid "No period found or more than one period found for the given date." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_report_account_type_sales +msgid "Report of the Sales by Account Type" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3201 +#, python-format +msgid "SAJ" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1591 +#, python-format +msgid "Cannot create move with currency different from .." +msgstr "" + +#. module: account +#: model:email.template,report_name:account.email_template_edi_invoice +msgid "" +"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " +"and 'draft' or ''}" +msgstr "" + +#. module: account +#: view:account.period:0 +#: view:account.period.close:0 +msgid "Close Period" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_common_partner_report +msgid "Account Common Partner Report" +msgstr "" + +#. module: account +#: field:account.fiscalyear.close,period_id:0 +msgid "Opening Entries Period" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_journal_period +msgid "Journal Period" +msgstr "" + +#. module: account +#: constraint:account.move:0 +msgid "" +"You cannot create more than one move per period on a centralized journal." +msgstr "" + +#. module: account +#: help:account.tax,account_analytic_paid_id:0 +msgid "" +"Set the analytic account that will be used by default on the invoice tax " +"lines for refunds. Leave empty if you don't want to use an analytic account " +"on the invoice tax lines by default." +msgstr "" + +#. module: account +#: view:account.account:0 +#: selection:account.aged.trial.balance,result_selection:0 +#: selection:account.common.partner.report,result_selection:0 +#: selection:account.partner.balance,result_selection:0 +#: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 +#: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 +#, python-format +msgid "Receivable Accounts" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Configure your company bank accounts" +msgstr "" + +#. module: account +#: view:account.invoice.refund:0 +msgid "Create Refund" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +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 "" + +#. module: account +#: model:ir.model,name:account.model_account_report_general_ledger +msgid "General Ledger Report" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Re-Open" +msgstr "" + +#. module: account +#: view:account.use.model:0 +msgid "Are you sure you want to create entries?" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:1361 +#, python-format +msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Print Invoice" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_invoice_refund.py:111 +#, python-format +msgid "" +"Cannot %s invoice which is already reconciled, invoice should be " +"unreconciled first. You can only refund this invoice." +msgstr "" + +#. module: account +#: selection:account.financial.report,display_detail:0 +msgid "Display children with hierarchy" +msgstr "" + +#. module: account +#: selection:account.payment.term.line,value:0 +#: selection:account.tax.template,type:0 +msgid "Percent" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_charts +msgid "Charts" +msgstr "" + +#. module: account +#: code:addons/account/project/wizard/project_account_analytic_line.py:47 +#: model:ir.model,name:account.model_project_account_analytic_line +#, python-format +msgid "Analytic Entries by line" +msgstr "" + +#. module: account +#: field:account.invoice.refund,filter_refund:0 +msgid "Refund Method" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_report +msgid "Financial Report" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: view:account.analytic.journal:0 +#: field:account.analytic.journal,type:0 +#: field:account.bank.statement.line,type:0 +#: field:account.financial.report,type:0 +#: field:account.invoice,type:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,type:0 +#: view:account.journal:0 +#: field:account.journal,type:0 +#: field:account.move.reconcile,type:0 +#: xsl:account.transfer:0 +#: field:report.invoice.created,type:0 +msgid "Type" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:826 +#, python-format +msgid "" +"Taxes are missing!\n" +"Click on compute button." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_subscription_line +msgid "Account Subscription Line" +msgstr "" + +#. module: account +#: help:account.invoice,reference:0 +msgid "The partner reference of this invoice." +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Supplier Invoices And Refunds" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:851 +#, python-format +msgid "Entry is already reconciled." +msgstr "" + +#. module: account +#: view:account.move.line.unreconcile.select:0 +#: view:account.unreconcile.reconcile:0 +#: model:ir.model,name:account.model_account_move_line_unreconcile_select +msgid "Unreconciliation" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_journal_report +msgid "Account Analytic Journal" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Send by Email" +msgstr "" + +#. module: account +#: help:account.central.journal,amount_currency:0 +#: help:account.common.journal.report,amount_currency:0 +#: help:account.general.journal,amount_currency:0 +#: help:account.print.journal,amount_currency:0 +msgid "" +"Print Report with the currency column if the currency differs from the " +"company currency." +msgstr "" + +#. module: account +#: report:account.analytic.account.quantity_cost_ledger:0 +msgid "J.C./Move name" +msgstr "" + +#. module: account +#: view:account.account:0 +msgid "Account Code and Name" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "September" +msgstr "" + +#. module: account +#: selection:account.subscription,period_type:0 +msgid "days" +msgstr "" + +#. module: account +#: help:account.account.template,nocreate:0 +msgid "" +"If checked, the new chart of accounts will not contain this by default." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_manual_reconcile +msgid "" +"

\n" +" No journal items found.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: code:addons/account/account.py:1677 +#, python-format +msgid "" +"You cannot unreconcile journal items if they has been generated by the " +" opening/closing fiscal " +"year process." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_subscription_form_new +msgid "New Subscription" +msgstr "" + +#. module: account +#: view:account.payment.term:0 +#: field:account.payment.term.line,value:0 +msgid "Computation" +msgstr "" + +#. module: account +#: field:account.journal.cashbox.line,pieces:0 +msgid "Values" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_tax_chart +#: model:ir.actions.act_window,name:account.action_tax_code_tree +#: model:ir.ui.menu,name:account.menu_action_tax_code_tree +msgid "Chart of Taxes" +msgstr "" + +#. module: account +#: view:account.fiscalyear:0 +msgid "Create 3 Months Periods" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Due" +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_journal_id:0 +msgid "Purchase journal" +msgstr "" + +#. module: account +#: model:mail.message.subtype,description:account.mt_invoice_paid +msgid "Invoice paid" +msgstr "" + +#. module: account +#: view:validate.account.move:0 +#: view:validate.account.move.lines:0 +msgid "Approve" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:account.move:0 +#: view:report.invoice.created:0 +msgid "Total Amount" +msgstr "" + +#. module: account +#: help:account.invoice,supplier_invoice_number:0 +msgid "The reference of this invoice as provided by the supplier." +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: selection:account.entries.report,type:0 +msgid "Consolidation" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_liability +#: model:account.financial.report,name:account.account_financial_report_liability0 +#: model:account.financial.report,name:account.account_financial_report_liabilitysum0 +msgid "Liability" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:899 +#, python-format +msgid "Please define sequence on the journal related to this invoice." +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Extended Filters..." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_central_journal +msgid "Centralizing Journal" +msgstr "" + +#. module: account +#: selection:account.journal,type:0 +msgid "Sale Refund" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_accountingstatemententries0 +msgid "Bank statement" +msgstr "" + +#. module: account +#: field:account.analytic.line,move_id:0 +msgid "Move Line" +msgstr "" + +#. module: account +#: help:account.move.line,tax_amount:0 +msgid "" +"If the Tax account is a tax code account, this field will contain the taxed " +"amount.If the tax account is base tax code, this field will contain the " +"basic amount(without tax)." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Purchases" +msgstr "" + +#. module: account +#: field:account.model,lines_id:0 +msgid "Model Entries" +msgstr "" + +#. module: account +#: field:account.account,code:0 +#: report:account.account.balance:0 +#: field:account.account.template,code:0 +#: field:account.account.type,code:0 +#: report:account.analytic.account.balance:0 +#: report:account.analytic.account.inverted.balance:0 +#: report:account.analytic.account.journal:0 +#: field:account.analytic.line,code:0 +#: field:account.fiscalyear,code:0 +#: report:account.general.journal:0 +#: field:account.journal,code:0 +#: report:account.partner.balance:0 +#: field:account.period,code:0 +msgid "Code" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Features" +msgstr "" + +#. module: account +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 +#: code:addons/account/account_move_line.py:195 +#, python-format +msgid "No Analytic Journal !" +msgstr "" + +#. module: account +#: report:account.partner.balance:0 +#: model:ir.actions.act_window,name:account.action_account_partner_balance +#: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance +#: model:ir.ui.menu,name:account.menu_account_partner_balance_report +msgid "Partner Balance" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_gain_loss +msgid "" +"

\n" +" Click to add an account.\n" +"

\n" +" When doing multi-currency transactions, you may loose or " +"gain\n" +" some amount due to changes of exchange rate. This menu " +"gives\n" +" you a forecast of the Gain or Loss you'd realized if those\n" +" transactions were ended today. Only for accounts having a\n" +" secondary currency set.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: field:account.bank.accounts.wizard,acc_name:0 +msgid "Account Name." +msgstr "" + +#. module: account +#: field:account.journal,with_last_closing_balance:0 +msgid "Opening With Last Closing Balance" +msgstr "" + +#. module: account +#: help:account.tax.code,notprintable:0 +msgid "" +"Check this box if you don't want any tax related to this tax code to appear " +"on invoices" +msgstr "" + +#. module: account +#: field:report.account.receivable,name:0 +msgid "Week of Year" +msgstr "" + +#. module: account +#: field:account.report.general.ledger,landscape:0 +msgid "Landscape Mode" +msgstr "" + +#. module: account +#: help:account.fiscalyear.close,fy_id:0 +msgid "Select a Fiscal year to close" +msgstr "" + +#. module: account +#: help:account.account.template,user_type:0 +msgid "" +"These types are defined according to your country. The type contains more " +"information about the account and its specificities." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Refund " +msgstr "" + +#. module: account +#: code:addons/account/account_analytic_line.py:90 +#, python-format +msgid "There is no expense account defined for this product: \"%s\" (id:%d)." +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Applicability Options" +msgstr "" + +#. module: account +#: report:account.partner.balance:0 +msgid "In dispute" +msgstr "" + +#. module: account +#: view:account.journal:0 +#: model:ir.actions.act_window,name:account.action_view_bank_statement_tree +#: model:ir.ui.menu,name:account.journal_cash_move_lines +msgid "Cash Registers" +msgstr "" + +#. module: account +#: field:account.config.settings,sale_refund_journal_id:0 +msgid "Sale refund journal" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_view_bank_statement_tree +msgid "" +"

\n" +" Click to create a new cash log.\n" +"

\n" +" A Cash Register allows you to manage cash entries in your " +"cash\n" +" journals. This feature provides an easy way to follow up " +"cash\n" +" payments on a daily basis. You can enter the coins that are " +"in\n" +" your cash box, and then post entries when money comes in or\n" +" goes out of the cash box.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_bank +#: selection:account.bank.accounts.wizard,account_type:0 +#: code:addons/account/account.py:3092 +#, python-format +msgid "Bank" +msgstr "" + +#. module: account +#: field:account.period,date_start:0 +msgid "Start of Period" +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Refunds" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 +msgid "Confirm statement" +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Account Tax" +msgstr "" + +#. module: account +#: help:account.account,foreign_balance:0 +msgid "" +"Total amount (in Secondary currency) for transactions held in secondary " +"currency for this account." +msgstr "" + +#. module: account +#: field:account.fiscal.position.tax,tax_dest_id:0 +#: field:account.fiscal.position.tax.template,tax_dest_id:0 +msgid "Replacement Tax" +msgstr "" + +#. module: account +#: selection:account.move.line,centralisation:0 +msgid "Credit Centralisation" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_tax_code_template_form +#: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form +msgid "Tax Code Templates" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +msgid "" +"The amount expressed in the secondary currency must be positif when journal " +"item are debit and negatif when journal item are credit." +msgstr "" + +#. module: account +#: view:account.invoice.cancel:0 +msgid "Cancel Invoices" +msgstr "" + +#. module: account +#: help:account.journal,code:0 +msgid "The code will be displayed on reports." +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Taxes used in Purchases" +msgstr "" + +#. module: account +#: field:account.invoice.tax,tax_code_id:0 +#: field:account.tax,description:0 +#: view:account.tax.code:0 +#: field:account.tax.template,tax_code_id:0 +#: model:ir.model,name:account.model_account_tax_code +msgid "Tax Code" +msgstr "" + +#. module: account +#: field:account.account,currency_mode:0 +msgid "Outgoing Currencies Rate" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: field:account.config.settings,chart_template_id:0 +msgid "Template" +msgstr "" + +#. module: account +#: selection:account.analytic.journal,type:0 +msgid "Situation" +msgstr "" + +#. module: account +#: help:account.move.line,move_id:0 +msgid "The move of this entry line." +msgstr "" + +#. module: account +#: field:account.move.line.reconcile,trans_nbr:0 +msgid "# of Transaction" +msgstr "" + +#. module: account +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +msgid "Entry Label" +msgstr "" + +#. module: account +#: help:account.invoice,origin:0 +#: help:account.invoice.line,origin:0 +msgid "Reference of the document that produced this invoice." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: view:account.journal:0 +msgid "Others" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Draft Subscription" +msgstr "" + +#. module: account +#: view:account.account:0 +#: report:account.account.balance:0 +#: field:account.automatic.reconcile,writeoff_acc_id:0 +#: field:account.bank.statement.line,account_id:0 +#: view:account.entries.report:0 +#: field:account.entries.report,account_id:0 +#: field:account.invoice,account_id:0 +#: field:account.invoice.line,account_id:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,account_id:0 +#: field:account.journal,account_control_ids:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.model.line,account_id:0 +#: view:account.move.line:0 +#: field:account.move.line,account_id:0 +#: field:account.move.line.reconcile.select,account_id:0 +#: field:account.move.line.unreconcile.select,account_id:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,account_id:0 +#: model:ir.model,name:account.model_account_account +#: field:report.account.sales,account_id:0 +msgid "Account" +msgstr "" + +#. module: account +#: field:account.tax,include_base_amount:0 +msgid "Included in base amount" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +#: model:ir.actions.act_window,name:account.action_account_entries_report_all +#: model:ir.ui.menu,name:account.menu_action_account_entries_report_all +msgid "Entries Analysis" +msgstr "" + +#. module: account +#: field:account.account,level:0 +#: field:account.financial.report,level:0 +msgid "Level" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_change_currency.py:38 +#, python-format +msgid "You can only change currency for Draft Invoice." +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +#: field:account.invoice.line,invoice_line_tax_id:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: model:ir.actions.act_window,name:account.action_tax_form +#: model:ir.ui.menu,name:account.account_template_taxes +#: model:ir.ui.menu,name:account.menu_action_tax_form +#: model:ir.ui.menu,name:account.menu_tax_report +#: model:ir.ui.menu,name:account.next_id_27 +msgid "Taxes" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_financial_report.py:70 +#, python-format +msgid "Select a starting and an ending period" +msgstr "" + +#. module: account +#: model:account.financial.report,name:account.account_financial_report_profitandloss0 +#: model:ir.actions.act_window,name:account.action_account_report_pl +msgid "Profit and Loss" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_account_template +msgid "Templates for Accounts" +msgstr "" + +#. module: account +#: view:account.tax.code.template:0 +msgid "Search tax template" +msgstr "" + +#. module: account +#: view:account.move.reconcile:0 +#: model:ir.actions.act_window,name:account.action_account_reconcile_select +#: model:ir.actions.act_window,name:account.action_view_account_move_line_reconcile +msgid "Reconcile Entries" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_overdue +#: view:res.company:0 +msgid "Overdue Payments" +msgstr "" + +#. module: account +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +msgid "Initial Balance" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Reset to Draft" +msgstr "" + +#. module: account +#: view:account.aged.trial.balance:0 +#: view:account.common.report:0 +msgid "Report Options" +msgstr "" + +#. module: account +#: field:account.fiscalyear.close.state,fy_id:0 +msgid "Fiscal Year to Close" +msgstr "" + +#. module: account +#: field:account.config.settings,sale_sequence_prefix:0 +msgid "Invoice sequence" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_entries_report +msgid "Journal Items Analysis" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.next_id_22 +msgid "Partners" +msgstr "" + +#. module: account +#: help:account.bank.statement,state:0 +msgid "" +"When new statement is created the status will be 'Draft'.\n" +"And after getting confirmation from the bank it will be in 'Confirmed' " +"status." +msgstr "" + +#. module: account +#: field:account.invoice.report,state:0 +msgid "Invoice Status" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: model:ir.model,name:account.model_account_bank_statement +#: model:process.node,name:account.process_node_accountingstatemententries0 +#: model:process.node,name:account.process_node_bankstatement0 +#: model:process.node,name:account.process_node_supplierbankstatement0 +msgid "Bank Statement" +msgstr "" + +#. module: account +#: field:res.partner,property_account_receivable:0 +msgid "Account Receivable" +msgstr "" + +#. module: account +#: code:addons/account/account.py:612 +#: code:addons/account/account.py:767 +#: code:addons/account/account.py:768 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: selection:account.balance.report,display_account:0 +#: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 +#: selection:account.partner.balance,display_partner:0 +#: selection:account.report.general.ledger,display_account:0 +msgid "With balance is not equal to 0" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1483 +#, python-format +msgid "" +"There is no default debit account defined \n" +"on journal \"%s\"." +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Search Taxes" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_cost_ledger +msgid "Account Analytic Cost Ledger" +msgstr "" + +#. module: account +#: view:account.model:0 +msgid "Create entries" +msgstr "" + +#. module: account +#: field:account.entries.report,nbr:0 +msgid "# of Items" +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,max_amount:0 +msgid "Maximum write-off amount" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/xml/account_move_reconciliation.xml:10 +#, python-format +msgid "" +"There is nothing to reconcile. All invoices and payments\n" +" have been reconciled, your partner balance is clean." +msgstr "" + +#. module: account +#: field:account.chart.template,code_digits:0 +#: field:account.config.settings,code_digits:0 +#: field:wizard.multi.charts.accounts,code_digits:0 +msgid "# of Digits" +msgstr "" + +#. module: account +#: field:account.journal,entry_posted:0 +msgid "Skip 'Draft' State for Manual Entries" +msgstr "" + +#. module: account +#: code:addons/account/report/common_report_header.py:92 +#: code:addons/account/wizard/account_report_common.py:164 +#, python-format +msgid "Not implemented." +msgstr "" + +#. module: account +#: view:account.invoice.refund:0 +msgid "Credit Note" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "eInvoicing & Payments" +msgstr "" + +#. module: account +#: view:account.analytic.cost.ledger.journal.report:0 +msgid "Cost Ledger for Period" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "# of Entries " +msgstr "" + +#. module: account +#: help:account.fiscal.position,active:0 +msgid "" +"By unchecking the active field, you may hide a fiscal position without " +"deleting it." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_temp_range +msgid "A Temporary table used for Dashboard view" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree4 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree4 +msgid "Supplier Refunds" +msgstr "" + +#. module: account +#: field:account.tax.code,code:0 +#: field:account.tax.code.template,code:0 +msgid "Case Code" +msgstr "" + +#. module: account +#: field:account.config.settings,company_footer:0 +msgid "Bank accounts footer preview" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: selection:account.bank.statement,state:0 +#: selection:account.entries.report,type:0 +#: view:account.fiscalyear:0 +#: selection:account.fiscalyear,state:0 +#: selection:account.period,state:0 +msgid "Closed" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_recurrent_entries +msgid "Recurring Entries" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_template +msgid "Template for Fiscal Position" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Recurring" +msgstr "" + +#. module: account +#: field:account.journal,groups_id:0 +msgid "Groups" +msgstr "" + +#. module: account +#: field:report.invoice.created,amount_untaxed:0 +msgid "Untaxed" +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Advanced Settings" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Search Bank Statements" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Unposted Journal Items" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +#: field:account.chart.template,property_account_payable:0 +msgid "Payable Account" +msgstr "" + +#. module: account +#: field:account.tax,account_paid_id:0 +#: field:account.tax.template,account_paid_id:0 +msgid "Refund Tax Account" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_ir_sequence +msgid "ir.sequence" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement,line_ids:0 +msgid "Statement lines" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +msgid "Date/Code" +msgstr "" + +#. module: account +#: field:account.analytic.line,general_account_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,general_account_id:0 +msgid "General Account" +msgstr "" + +#. module: account +#: field:res.partner,debit_limit:0 +msgid "Payable Limit" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_type_form +msgid "" +"

\n" +" Click to define a new account type.\n" +"

\n" +" An account type is used to determine how an account is used " +"in\n" +" each journal. The deferral method of an account type " +"determines\n" +" the process for the annual closing. Reports such as the " +"Balance\n" +" Sheet and the Profit and Loss report use the category\n" +" (profit/loss or balance sheet).\n" +"

\n" +" " +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 +#: model:ir.model,name:account.model_account_invoice +#: model:res.request.link,name:account.req_link_invoice +#, python-format +msgid "Invoice" +msgstr "" + +#. module: account +#: field:account.move,balance:0 +msgid "balance" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_analytic0 +#: model:process.node,note:account.process_node_analyticcost0 +msgid "Analytic costs to invoice" +msgstr "" + +#. module: account +#: view:ir.sequence:0 +msgid "Fiscal Year Sequence" +msgstr "" + +#. module: account +#: field:account.config.settings,group_analytic_accounting:0 +msgid "Analytic accounting" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Sub-Total :" +msgstr "" + +#. module: account +#: help:res.company,tax_calculation_rounding_method:0 +msgid "" +"If you select 'Round per Line' : for each tax, the tax amount will first be " +"computed and rounded for each PO/SO/invoice line and then these rounded " +"amounts will be summed, leading to the total amount for that tax. If you " +"select 'Round Globally': for each tax, the tax amount will be computed for " +"each PO/SO/invoice line, then these amounts will be summed and eventually " +"this total tax amount will be rounded. If you sell with tax included, you " +"should choose 'Round per line' because you certainly want the sum of your " +"tax-included line subtotals to be equal to the total amount with taxes." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all +#: view:report.account_type.sales:0 +msgid "Sales by Account Type" +msgstr "" + +#. module: account +#: model:account.payment.term,name:account.account_payment_term_15days +#: model:account.payment.term,note:account.account_payment_term_15days +msgid "15 Days" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.periodical_processing_invoicing +msgid "Invoicing" +msgstr "" + +#. module: account +#: code:addons/account/report/account_partner_balance.py:115 +#, python-format +msgid "Unknown Partner" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:103 +#, python-format +msgid "" +"The journal must have centralized counterpart without the Skipping draft " +"state option checked." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:854 +#, python-format +msgid "Some entries are already reconciled." +msgstr "" + +#. module: account +#: field:account.tax.code,sum:0 +msgid "Year Sum" +msgstr "" + +#. module: account +#: view:account.change.currency:0 +msgid "This wizard will change the currency of the invoice" +msgstr "" + +#. module: account +#: view:account.installer:0 +msgid "" +"Select a configuration package to setup automatically your\n" +" taxes and chart of accounts." +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Pending Accounts" +msgstr "" + +#. module: account +#: view:account.open.closed.fiscalyear:0 +msgid "Cancel Fiscal Year Opening Entries" +msgstr "" + +#. module: account +#: report:account.journal.period.print.sale.purchase:0 +#: view:account.tax.template:0 +msgid "Tax Declaration" +msgstr "" + +#. module: account +#: help:account.journal.period,active:0 +msgid "" +"If the active field is set to False, it will allow you to hide the journal " +"period without removing it." +msgstr "" + +#. module: account +#: field:account.report.general.ledger,sortby:0 +msgid "Sort by" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_partner_account_move_all +msgid "Receivables & Payables" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_payment:0 +msgid "Manage payment orders" +msgstr "" + +#. module: account +#: view:account.period:0 +msgid "Duration" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement,last_closing_balance:0 +msgid "Last Closing Balance" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_common_journal_report +msgid "Account Common Journal Report" +msgstr "" + +#. module: account +#: selection:account.partner.balance,display_partner:0 +msgid "All Partners" +msgstr "" + +#. module: account +#: view:account.analytic.chart:0 +msgid "Analytic Account Charts" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Customer Ref:" +msgstr "" + +#. module: account +#: help:account.tax,base_code_id:0 +#: help:account.tax,ref_base_code_id:0 +#: help:account.tax,ref_tax_code_id:0 +#: help:account.tax,tax_code_id:0 +#: help:account.tax.template,base_code_id:0 +#: help:account.tax.template,ref_base_code_id:0 +#: help:account.tax.template,ref_tax_code_id:0 +#: help:account.tax.template,tax_code_id:0 +msgid "Use this code for the tax declaration." +msgstr "" + +#. module: account +#: help:account.period,special:0 +msgid "These periods can overlap." +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_draftstatement0 +msgid "Draft statement" +msgstr "" + +#. module: account +#: model:mail.message.subtype,description:account.mt_invoice_validated +msgid "Invoice validated" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_check_writing:0 +msgid "Pay your suppliers by check" +msgstr "" + +#. module: account +#: field:account.move.line.reconcile,credit:0 +msgid "Credit amount" +msgstr "" + +#. module: account +#: field:account.bank.statement,message_ids:0 +#: field:account.invoice,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: account +#: view:account.vat.declaration:0 +msgid "" +"This menu prints a tax declaration based on invoices or payments. Select one " +"or several periods of the fiscal year. The information required for a tax " +"declaration is automatically generated by OpenERP from invoices (or " +"payments, in some countries). This data is updated in real time. That’s very " +"useful because it enables you to preview at any time the tax that you owe at " +"the start and end of the month or quarter." +msgstr "" + +#. module: account +#: code:addons/account/account.py:409 +#: code:addons/account/account.py:414 +#: code:addons/account/account.py:431 +#: code:addons/account/account.py:634 +#: code:addons/account/account.py:636 +#: code:addons/account/account.py:930 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 +#: code:addons/account/account_analytic_line.py:89 +#: code:addons/account/account_analytic_line.py:98 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_cash_statement.py:256 +#: code:addons/account/account_cash_statement.py:300 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 +#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 +#: code:addons/account/report/common_report_header.py:92 +#: code:addons/account/wizard/account_change_currency.py:38 +#: code:addons/account/wizard/account_change_currency.py:59 +#: code:addons/account/wizard/account_change_currency.py:64 +#: code:addons/account/wizard/account_change_currency.py:70 +#: code:addons/account/wizard/account_financial_report.py:70 +#: code:addons/account/wizard/account_invoice_refund.py:109 +#: code:addons/account/wizard/account_invoice_refund.py:111 +#: code:addons/account/wizard/account_move_bank_reconcile.py:49 +#: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 +#: code:addons/account/wizard/account_report_common.py:158 +#: code:addons/account/wizard/account_report_common.py:164 +#: code:addons/account/wizard/account_use_model.py:44 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 +#, python-format +msgid "Error!" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_invoice_tree2 +msgid "" +"

\n" +" Click to record a new supplier invoice.\n" +"

\n" +" You can control the invoice from your supplier according to\n" +" what you purchased or received. OpenERP can also generate\n" +" draft invoices automatically from purchase orders or " +"receipts.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: sql_constraint:account.move.line:0 +msgid "Wrong credit or debit value in accounting entry !" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: model:ir.actions.act_window,name:account.action_account_invoice_report_all +#: model:ir.ui.menu,name:account.menu_action_account_invoice_report_all +msgid "Invoices Analysis" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_mail_compose_message +msgid "Email composition wizard" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_period_close +msgid "period close" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1058 +#, python-format +msgid "" +"This journal already contains items for this period, therefore you cannot " +"modify its company field." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form +msgid "Entries By Line" +msgstr "" + +#. module: account +#: field:account.vat.declaration,based_on:0 +msgid "Based on" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_bank_statement_tree +msgid "" +"

\n" +" Click to register a bank statement.\n" +"

\n" +" A bank statement is a summary of all financial transactions\n" +" occurring over a given period of time on a bank account. " +"You\n" +" should receive this periodicaly from your bank.\n" +"

\n" +" OpenERP allows you to reconcile a statement line directly " +"with\n" +" the related sale or puchase invoices.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: field:account.config.settings,currency_id:0 +msgid "Default company currency" +msgstr "" + +#. module: account +#: field:account.invoice,move_id:0 +#: field:account.invoice,move_name:0 +#: field:account.move.line,move_id:0 +msgid "Journal Entry" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Unpaid" +msgstr "" + +#. module: account +#: view:account.treasury.report:0 +#: model:ir.actions.act_window,name:account.action_account_treasury_report_all +#: model:ir.model,name:account.model_account_treasury_report +#: model:ir.ui.menu,name:account.menu_action_account_treasury_report_all +msgid "Treasury Analysis" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_journal_sale_purchase +msgid "Sale/Purchase Journal" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: field:account.invoice.tax,account_analytic_id:0 +msgid "Analytic account" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:406 +#, python-format +msgid "Please verify that an account is defined in the journal." +msgstr "" + +#. module: account +#: selection:account.entries.report,move_line_state:0 +msgid "Valid" +msgstr "" + +#. module: account +#: field:account.bank.statement,message_follower_ids:0 +#: field:account.invoice,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_print_journal +#: model:ir.model,name:account.model_account_print_journal +msgid "Account Print Journal" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_product_category +msgid "Product Category" +msgstr "" + +#. module: account +#: code:addons/account/account.py:656 +#, python-format +msgid "" +"You cannot change the type of account to '%s' type as it contains journal " +"items!" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_aged_trial_balance +msgid "Account Aged Trial balance Report" +msgstr "" + +#. module: account +#: view:account.fiscalyear.close.state:0 +msgid "Close Fiscal Year" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 +#, python-format +msgid "Journal :" +msgstr "" + +#. module: account +#: sql_constraint:account.fiscal.position.tax:0 +msgid "A tax fiscal position could be defined only once time on same taxes." +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Tax Definition" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +#: model:ir.actions.act_window,name:account.action_account_config +msgid "Configure Accounting" +msgstr "" + +#. module: account +#: field:account.invoice.report,uom_name:0 +msgid "Reference Unit of Measure" +msgstr "" + +#. module: account +#: help:account.journal,allow_date:0 +msgid "" +"If set to True then do not accept the entry if the entry date is not into " +"the period dates" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 +#, python-format +msgid "Good job!" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_asset:0 +msgid "Assets management" +msgstr "" + +#. module: account +#: view:account.account:0 +#: view:account.account.template:0 +#: selection:account.aged.trial.balance,result_selection:0 +#: selection:account.common.partner.report,result_selection:0 +#: selection:account.partner.balance,result_selection:0 +#: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 +#: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 +#, python-format +msgid "Payable Accounts" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +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 "" + +#. module: account +#: view:account.invoice:0 +#: view:report.invoice.created:0 +msgid "Untaxed Amount" +msgstr "" + +#. module: account +#: help:account.tax,active:0 +msgid "" +"If the active field is set to False, it will allow you to hide the tax " +"without removing it." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Analytic Journal Items related to a sale journal." +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Italic Text (smaller)" +msgstr "" + +#. module: account +#: help:account.journal,cash_control:0 +msgid "" +"If you want the journal should be control at opening/closing, check this " +"option" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: view:account.invoice:0 +#: selection:account.invoice,state:0 +#: view:account.invoice.report:0 +#: selection:account.invoice.report,state:0 +#: selection:account.journal.period,state:0 +#: view:account.subscription:0 +#: selection:account.subscription,state:0 +#: selection:report.invoice.created,state:0 +msgid "Draft" +msgstr "" + +#. module: account +#: field:account.move.reconcile,line_partial_ids:0 +msgid "Partial Entry lines" +msgstr "" + +#. module: account +#: view:account.fiscalyear:0 +#: field:account.treasury.report,fiscalyear_id:0 +msgid "Fiscalyear" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_move_bank_reconcile.py:53 +#, python-format +msgid "Standard Encoding" +msgstr "" + +#. module: account +#: view:account.journal.select:0 +#: view:project.account.analytic.line:0 +msgid "Open Entries" +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_refund_sequence_next:0 +msgid "Next supplier credit note number" +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,account_ids:0 +msgid "Accounts to Reconcile" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_filestatement0 +msgid "Import of the statement in the system from an electronic file" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_importinvoice0 +msgid "Import from invoice" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "January" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "This F.Year" +msgstr "" + +#. module: account +#: view:account.tax.chart:0 +msgid "Account tax charts" +msgstr "" + +#. module: account +#: model:account.payment.term,name:account.account_payment_term_net +#: model:account.payment.term,note:account.account_payment_term_net +msgid "30 Net Days" +msgstr "" + +#. module: account +#: code:addons/account/account_cash_statement.py:256 +#, python-format +msgid "You do not have rights to open this %s journal !" +msgstr "" + +#. module: account +#: model:res.groups,name:account.group_supplier_inv_check_total +msgid "Check Total on supplier invoices" +msgstr "" + +#. module: account +#: selection:account.invoice,state:0 +#: view:account.invoice.report:0 +#: selection:account.invoice.report,state:0 +#: selection:report.invoice.created,state:0 +msgid "Pro-forma" +msgstr "" + +#. module: account +#: help:account.account.template,type:0 +#: help:account.entries.report,type:0 +msgid "" +"This type is used to differentiate types with special effects in OpenERP: " +"view can not have entries, consolidation are accounts that can have children " +"accounts for multi-company consolidations, payable/receivable are for " +"partners accounts (for debit/credit computations), closed for depreciated " +"accounts." +msgstr "" + +#. module: account +#: view:account.chart.template:0 +msgid "Search Chart of Account Templates" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Customer Code" +msgstr "" + +#. module: account +#: view:account.account.type:0 +#: field:account.account.type,note:0 +#: report:account.invoice:0 +#: field:account.invoice,name:0 +#: field:account.invoice.line,name:0 +#: report:account.overdue:0 +#: field:account.payment.term,note:0 +#: view:account.tax.code:0 +#: field:account.tax.code,info:0 +#: view:account.tax.code.template:0 +#: field:account.tax.code.template,info:0 +#: field:analytic.entries.report,name:0 +#: field:report.invoice.created,name:0 +msgid "Description" +msgstr "" + +#. module: account +#: field:account.tax,price_include:0 +#: field:account.tax.template,price_include:0 +msgid "Tax Included in Price" +msgstr "" + +#. module: account +#: view:account.subscription:0 +#: selection:account.subscription,state:0 +msgid "Running" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +#: field:product.category,property_account_income_categ:0 +#: field:product.template,property_account_income:0 +msgid "Income Account" +msgstr "" + +#. module: account +#: help:account.config.settings,default_sale_tax:0 +msgid "This sale tax will be assigned by default on new products." +msgstr "" + +#. module: account +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +msgid "Entries Sorted By" +msgstr "" + +#. module: account +#: field:account.change.currency,currency_id:0 +msgid "Change to" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "# of Products Qty " +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_product_template +msgid "Product Template" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,fiscalyear_id:0 +#: field:account.balance.report,fiscalyear_id:0 +#: report:account.central.journal:0 +#: field:account.central.journal,fiscalyear_id:0 +#: field:account.common.account.report,fiscalyear_id:0 +#: field:account.common.journal.report,fiscalyear_id:0 +#: field:account.common.partner.report,fiscalyear_id:0 +#: field:account.common.report,fiscalyear_id:0 +#: view:account.config.settings:0 +#: view:account.entries.report:0 +#: field:account.entries.report,fiscalyear_id:0 +#: view:account.fiscalyear:0 +#: field:account.fiscalyear,name:0 +#: report:account.general.journal:0 +#: field:account.general.journal,fiscalyear_id:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: field:account.journal.period,fiscalyear_id:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.open.closed.fiscalyear,fyear_id:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,fiscalyear_id:0 +#: field:account.partner.ledger,fiscalyear_id:0 +#: field:account.period,fiscalyear_id:0 +#: field:account.print.journal,fiscalyear_id:0 +#: field:account.report.general.ledger,fiscalyear_id:0 +#: field:account.sequence.fiscalyear,fiscalyear_id:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: report:account.vat.declaration:0 +#: field:account.vat.declaration,fiscalyear_id:0 +#: field:accounting.report,fiscalyear_id:0 +#: field:accounting.report,fiscalyear_id_cmp:0 +#: model:ir.model,name:account.model_account_fiscalyear +msgid "Fiscal Year" +msgstr "" + +#. module: account +#: help:account.aged.trial.balance,fiscalyear_id:0 +#: help:account.balance.report,fiscalyear_id:0 +#: help:account.central.journal,fiscalyear_id:0 +#: help:account.common.account.report,fiscalyear_id:0 +#: help:account.common.journal.report,fiscalyear_id:0 +#: help:account.common.partner.report,fiscalyear_id:0 +#: help:account.common.report,fiscalyear_id:0 +#: help:account.general.journal,fiscalyear_id:0 +#: help:account.partner.balance,fiscalyear_id:0 +#: help:account.partner.ledger,fiscalyear_id:0 +#: help:account.print.journal,fiscalyear_id:0 +#: help:account.report.general.ledger,fiscalyear_id:0 +#: help:account.vat.declaration,fiscalyear_id:0 +#: help:accounting.report,fiscalyear_id:0 +#: help:accounting.report,fiscalyear_id_cmp:0 +msgid "Keep empty for all open fiscal year" +msgstr "" + +#. module: account +#: code:addons/account/account.py:653 +#, python-format +msgid "" +"You cannot change the type of account from 'Closed' to any other type as it " +"contains journal items!" +msgstr "" + +#. module: account +#: field:account.invoice.report,account_line_id:0 +msgid "Account Line" +msgstr "" + +#. module: account +#: view:account.addtmpl.wizard:0 +msgid "Create an Account Based on this Template" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:933 +#, python-format +msgid "" +"Cannot create the invoice.\n" +"The related payment term is probably misconfigured as it gives a computed " +"amount greater than the total invoiced amount. In order to avoid rounding " +"issues, the latest line of your payment term must be of type 'balance'." +msgstr "" + +#. module: account +#: view:account.move:0 +#: model:ir.model,name:account.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account +#: field:account.sequence.fiscalyear,sequence_main_id:0 +msgid "Main Sequence" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:478 +#, python-format +msgid "" +"In order to delete a bank statement, you must first cancel it to delete " +"related journal items." +msgstr "" + +#. module: account +#: field:account.invoice.report,payment_term:0 +#: view:account.payment.term:0 +#: field:account.payment.term,name:0 +#: view:account.payment.term.line:0 +#: field:account.payment.term.line,payment_id:0 +#: model:ir.model,name:account.model_account_payment_term +msgid "Payment Term" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscal_position_form +#: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form +msgid "Fiscal Positions" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:579 +#, python-format +msgid "You cannot create journal items on a closed account %s %s." +msgstr "" + +#. module: account +#: field:account.period.close,sure:0 +msgid "Check this box" +msgstr "" + +#. module: account +#: view:account.common.report:0 +msgid "Filters" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_draftinvoices0 +#: model:process.node,note:account.process_node_supplierdraftinvoices0 +msgid "Draft state of an invoice" +msgstr "" + +#. module: account +#: view:product.category:0 +msgid "Account Properties" +msgstr "" + +#. module: account +#: selection:account.invoice.refund,filter_refund:0 +msgid "Create a draft refund" +msgstr "" + +#. module: account +#: view:account.partner.reconcile.process:0 +msgid "Partner Reconciliation" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Fin. Account" +msgstr "" + +#. module: account +#: field:account.tax,tax_code_id:0 +#: view:account.tax.code:0 +msgid "Account Tax Code" +msgstr "" + +#. module: account +#: model:account.payment.term,name:account.account_payment_term_advance +#: model:account.payment.term,note:account.account_payment_term_advance +msgid "30% Advance End 30 Days" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Unreconciled entries" +msgstr "" + +#. module: account +#: field:account.invoice.tax,base_code_id:0 +#: field:account.tax.template,base_code_id:0 +msgid "Base Code" +msgstr "" + +#. module: account +#: help:account.invoice.tax,sequence:0 +msgid "Gives the sequence order when displaying a list of invoice tax." +msgstr "" + +#. module: account +#: field:account.tax,base_sign:0 +#: field:account.tax,ref_base_sign:0 +#: field:account.tax.template,base_sign:0 +#: field:account.tax.template,ref_base_sign:0 +msgid "Base Code Sign" +msgstr "" + +#. module: account +#: selection:account.move.line,centralisation:0 +msgid "Debit Centralisation" +msgstr "" + +#. module: account +#: view:account.invoice.confirm:0 +#: model:ir.actions.act_window,name:account.action_account_invoice_confirm +msgid "Confirm Draft Invoices" +msgstr "" + +#. module: account +#: field:account.entries.report,day:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,day:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,day:0 +msgid "Day" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_renew_view +msgid "Accounts to Renew" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_model_line +msgid "Account Model Entries" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3202 +#, python-format +msgid "EXJ" +msgstr "" + +#. module: account +#: field:product.template,supplier_taxes_id:0 +msgid "Supplier Taxes" +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "Bank Details" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_move_journal_line +msgid "" +"

\n" +" Click to create a journal entry.\n" +"

\n" +" A journal entry consists of several journal items, each of\n" +" which is either a debit or a credit transaction.\n" +"

\n" +" OpenERP automatically creates one journal entry per " +"accounting\n" +" document: invoice, refund, supplier payment, bank " +"statements,\n" +" etc. So, you should record journal entries manually " +"only/mainly\n" +" for miscellaneous operations.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: help:account.invoice,payment_term:0 +msgid "" +"If you use payment terms, the due date will be computed automatically at the " +"generation of accounting entries. If you keep the payment term and the due " +"date empty, it means direct payment. The payment term may compute several " +"due dates, for example 50% now, 50% in one month." +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_sequence_next:0 +msgid "Next supplier invoice number" +msgstr "" + +#. module: account +#: view:account.analytic.cost.ledger.journal.report:0 +msgid "Select period" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_pp_statements +msgid "Statements" +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +msgid "Move Name" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_move_line_reconcile_writeoff +msgid "Account move line reconcile (writeoff)" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.conf_account_type_tax +#: report:account.invoice:0 +#: field:account.invoice,amount_tax:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.move.line,account_tax_id:0 +#: view:account.tax:0 +#: model:ir.model,name:account.model_account_tax +msgid "Tax" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: view:account.analytic.line:0 +#: field:account.bank.statement.line,analytic_account_id:0 +#: field:account.entries.report,analytic_account_id:0 +#: field:account.invoice.line,account_analytic_id:0 +#: field:account.model.line,analytic_account_id:0 +#: field:account.move.line,analytic_account_id:0 +#: field:account.move.line.reconcile.writeoff,analytic_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: account +#: field:account.config.settings,default_purchase_tax:0 +#: field:account.config.settings,purchase_tax:0 +msgid "Default purchase tax" +msgstr "" + +#. module: account +#: view:account.account:0 +#: field:account.financial.report,account_ids:0 +#: selection:account.financial.report,type:0 +#: view:account.journal:0 +#: model:ir.actions.act_window,name:account.action_account_form +#: model:ir.ui.menu,name:account.account_account_menu +#: model:ir.ui.menu,name:account.account_template_accounts +#: model:ir.ui.menu,name:account.menu_action_account_form +#: model:ir.ui.menu,name:account.menu_analytic +msgid "Accounts" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 +#, python-format +msgid "Configuration Error!" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:434 +#, python-format +msgid "Statement %s confirmed, journal items were created." +msgstr "" + +#. module: account +#: field:account.invoice.report,price_average:0 +#: field:account.invoice.report,user_currency_price_average:0 +msgid "Average Price" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Date:" +msgstr "" + +#. module: account +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +msgid "Label" +msgstr "" + +#. module: account +#: view:res.partner.bank:0 +msgid "Accounting Information" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Special Computation" +msgstr "" + +#. module: account +#: view:account.move.bank.reconcile:0 +#: model:ir.actions.act_window,name:account.action_account_bank_reconcile_tree +msgid "Bank reconciliation" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Disc.(%)" +msgstr "" + +#. module: account +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.overdue:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +msgid "Ref" +msgstr "" + +#. module: account +#: view:wizard.multi.charts.accounts:0 +msgid "Purchase Tax" +msgstr "" + +#. module: account +#: help:account.move.line,tax_code_id:0 +msgid "The Account can either be a base tax code or a tax code account." +msgstr "" + +#. module: account +#: sql_constraint:account.model.line:0 +msgid "Wrong credit or debit value in model, they must be positive!" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_reconciliation0 +#: model:process.node,note:account.process_node_supplierreconciliation0 +msgid "Comparison between accounting and payment entries" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_automatic_reconcile +msgid "Automatic Reconciliation" +msgstr "" + +#. module: account +#: field:account.invoice,reconciled:0 +msgid "Paid/Reconciled" +msgstr "" + +#. module: account +#: field:account.tax,ref_base_code_id:0 +#: field:account.tax.template,ref_base_code_id:0 +msgid "Refund Base Code" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_statement_tree +#: model:ir.ui.menu,name:account.menu_bank_statement_tree +msgid "Bank Statements" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_fiscalyear +msgid "" +"

\n" +" Click to start a new fiscal year.\n" +"

\n" +" Define your company's financial year according to your " +"needs. A\n" +" financial year is a period at the end of which a company's\n" +" accounts are made up (usually 12 months). The financial year " +"is\n" +" usually referred to by the date in which it ends. For " +"example,\n" +" if a company's financial year ends November 30, 2011, then\n" +" everything between December 1, 2010 and November 30, 2011\n" +" would be referred to as FY 2011.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: view:account.common.report:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: view:accounting.report:0 +msgid "Dates" +msgstr "" + +#. module: account +#: field:account.chart.template,parent_id:0 +msgid "Parent Chart Template" +msgstr "" + +#. module: account +#: field:account.tax,parent_id:0 +#: field:account.tax.template,parent_id:0 +msgid "Parent Tax Account" +msgstr "" + +#. module: account +#: view:account.aged.trial.balance:0 +#: model:ir.actions.act_window,name:account.action_account_aged_balance_view +#: model:ir.ui.menu,name:account.menu_aged_trial_balance +msgid "Aged Partner Balance" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_entriesreconcile0 +#: model:process.transition,name:account.process_transition_supplierentriesreconcile0 +msgid "Accounting entries" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +msgid "Account and Period must belong to the same company." +msgstr "" + +#. module: account +#: field:account.invoice.line,discount:0 +msgid "Discount (%)" +msgstr "" + +#. module: account +#: help:account.journal,entry_posted:0 +msgid "" +"Check this box if you don't want new journal entries to pass through the " +"'draft' state and instead goes directly to the 'posted state' without any " +"manual validation. \n" +"Note that journal entries that are automatically created by the system are " +"always skipping that state." +msgstr "" + +#. module: account +#: field:account.move.line.reconcile,writeoff:0 +msgid "Write-Off amount" +msgstr "" + +#. module: account +#: field:account.bank.statement,message_unread:0 +#: field:account.invoice,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_invoice_state.py:44 +#, python-format +msgid "" +"Selected invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-" +"Forma' state." +msgstr "" + +#. module: account +#: code:addons/account/account.py:1071 +#, python-format +msgid "You should choose the periods that belong to the same company." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all +#: view:report.account.sales:0 +#: view:report.account_type.sales:0 +msgid "Sales by Account" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1449 +#, python-format +msgid "You cannot delete a posted journal entry \"%s\"." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Accounting Period" +msgstr "" + +#. module: account +#: field:account.config.settings,sale_journal_id:0 +msgid "Sale journal" +msgstr "" + +#. module: account +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 +#: code:addons/account/account_move_line.py:195 +#, python-format +msgid "You have to define an analytic journal on the '%s' journal!" +msgstr "" + +#. module: account +#: code:addons/account/account.py:781 +#, python-format +msgid "" +"This journal already contains items, therefore you cannot modify its company " +"field." +msgstr "" + +#. module: account +#: code:addons/account/account.py:409 +#, python-format +msgid "" +"You need an Opening journal with centralisation checked to set the initial " +"balance." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_tax_code_list +#: model:ir.ui.menu,name:account.menu_action_tax_code_list +msgid "Tax codes" +msgstr "" + +#. module: account +#: view:account.account:0 +msgid "Unrealized Gains and losses" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_customer +#: model:ir.ui.menu,name:account.menu_finance_receivables +msgid "Customers" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.journal:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +msgid "Period to" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "August" +msgstr "" + +#. module: account +#: field:accounting.report,debit_credit:0 +msgid "Display Debit/Credit Columns" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "October" +msgstr "" + +#. module: account +#: help:account.move.line,quantity:0 +msgid "" +"The optional quantity expressed by this line, eg: number of product sold. " +"The quantity is not a legal requirement but is very useful for some reports." +msgstr "" + +#. module: account +#: view:account.unreconcile:0 +#: view:account.unreconcile.reconcile:0 +msgid "Unreconcile Transactions" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,only_one_chart_template:0 +msgid "Only One Chart Template Available" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +#: field:product.category,property_account_expense_categ:0 +#: field:product.template,property_account_expense:0 +msgid "Expense Account" +msgstr "" + +#. module: account +#: field:account.bank.statement,message_summary:0 +#: field:account.invoice,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: account +#: help:account.invoice,period_id:0 +msgid "Keep empty to use the period of the validation(invoice) date." +msgstr "" + +#. module: account +#: help:account.bank.statement,account_id:0 +msgid "" +"used in statement reconciliation domain, but shouldn't be used elswhere." +msgstr "" + +#. module: account +#: field:account.config.settings,date_stop:0 +msgid "End date" +msgstr "" + +#. module: account +#: field:account.invoice.tax,base_amount:0 +msgid "Base Code Amount" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,sale_tax:0 +msgid "Default Sale Tax" +msgstr "" + +#. module: account +#: help:account.model.line,date_maturity:0 +msgid "" +"The maturity date of the generated entries for this model. You can choose " +"between the creation date or the creation date of the entries plus the " +"partner payment terms." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_accounting +msgid "Financial Accounting" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_report_pl +msgid "Profit And Loss" +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,name:0 +#: field:account.fiscal.position.account,position_id:0 +#: field:account.fiscal.position.tax,position_id:0 +#: field:account.fiscal.position.tax.template,position_id:0 +#: view:account.fiscal.position.template:0 +#: field:account.invoice,fiscal_position:0 +#: field:account.invoice.report,fiscal_position:0 +#: model:ir.model,name:account.model_account_fiscal_position +#: field:res.partner,property_account_position:0 +msgid "Fiscal Position" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:823 +#, python-format +msgid "" +"Tax base different!\n" +"Click on compute to update the tax base." +msgstr "" + +#. module: account +#: field:account.partner.ledger,page_split:0 +msgid "One Partner Per Page" +msgstr "" + +#. module: account +#: field:account.account,child_parent_ids:0 +#: field:account.account.template,child_parent_ids:0 +msgid "Children" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: model:ir.actions.act_window,name:account.action_account_balance_menu +#: model:ir.actions.report.xml,name:account.account_account_balance +#: model:ir.ui.menu,name:account.menu_general_Balance_report +msgid "Trial Balance" +msgstr "" + +#. module: account +#: code:addons/account/account.py:431 +#, python-format +msgid "Unable to adapt the initial balance (negative value)." +msgstr "" + +#. module: account +#: selection:account.invoice,type:0 +#: selection:account.invoice.report,type:0 +#: model:process.process,name:account.process_process_invoiceprocess0 +#: selection:report.invoice.created,type:0 +msgid "Customer Invoice" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_open_closed_fiscalyear +msgid "Choose Fiscal Year" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +#: view:account.installer:0 +msgid "Date Range" +msgstr "" + +#. module: account +#: view:account.period:0 +msgid "Search Period" +msgstr "" + +#. module: account +#: view:account.change.currency:0 +msgid "Invoice Currency" +msgstr "" + +#. module: account +#: field:accounting.report,account_report_id:0 +#: model:ir.ui.menu,name:account.menu_account_financial_reports_tree +msgid "Account Reports" +msgstr "" + +#. module: account +#: field:account.payment.term,line_ids:0 +msgid "Terms" +msgstr "" + +#. module: account +#: field:account.chart.template,tax_template_ids:0 +msgid "Tax Template List" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal +msgid "Sale/Purchase Journals" +msgstr "" + +#. module: account +#: help:account.account,currency_mode:0 +msgid "" +"This will select how the current currency rate for outgoing transactions is " +"computed. In most countries the legal method is \"average\" but only a few " +"software systems are able to manage this. So if you import from another " +"software system you may have to use the rate at date. Incoming transactions " +"always use the rate at date." +msgstr "" + +#. module: account +#: code:addons/account/account.py:2678 +#, python-format +msgid "There is no parent code for the template account." +msgstr "" + +#. module: account +#: help:account.chart.template,code_digits:0 +#: help:wizard.multi.charts.accounts,code_digits:0 +msgid "No. of Digits to use for account code" +msgstr "" + +#. module: account +#: field:res.partner,property_supplier_payment_term:0 +msgid "Supplier Payment Term" +msgstr "" + +#. module: account +#: view:account.fiscalyear:0 +msgid "Search Fiscalyear" +msgstr "" + +#. module: account +#: selection:account.tax,applicable_type:0 +msgid "Always" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_accountant:0 +msgid "" +"Full accounting features: journals, legal statements, chart of accounts, etc." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Total Quantity" +msgstr "" + +#. module: account +#: field:account.move.line.reconcile.writeoff,writeoff_acc_id:0 +msgid "Write-Off account" +msgstr "" + +#. module: account +#: field:account.model.line,model_id:0 +#: view:account.subscription:0 +#: field:account.subscription,model_id:0 +msgid "Model" +msgstr "" + +#. module: account +#: help:account.invoice.tax,base_code_id:0 +msgid "The account basis of the tax declaration." +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: selection:account.entries.report,type:0 +#: selection:account.financial.report,type:0 +msgid "View" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 +#, python-format +msgid "BNK" +msgstr "" + +#. module: account +#: field:account.move.line,analytic_lines:0 +msgid "Analytic lines" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Proforma Invoices" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_electronicfile0 +msgid "Electronic File" +msgstr "" + +#. module: account +#: field:account.move.line,reconcile:0 +msgid "Reconcile Ref" +msgstr "" + +#. module: account +#: field:account.config.settings,has_chart_of_accounts:0 +msgid "Company has a chart of accounts" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_tax_code_template +msgid "Tax Code Template" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_partner_ledger +msgid "Account Partner Ledger" +msgstr "" + +#. module: account +#: model:email.template,body_html:account.email_template_edi_invoice +msgid "" +"\n" +"
\n" +"\n" +"

Hello ${object.partner_id.name},

\n" +"\n" +"

A new invoice is available for you:

\n" +" \n" +"

\n" +"   REFERENCES
\n" +"   Invoice number: ${object.number}
\n" +"   Invoice total: ${object.amount_total} " +"${object.currency_id.name}
\n" +"   Invoice date: ${object.date_invoice}
\n" +" % if object.origin:\n" +"   Order reference: ${object.origin}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Your contact: ${object.user_id.name}\n" +" % endif\n" +"

\n" +" \n" +" % if object.paypal_url:\n" +"
\n" +"

It is also possible to directly pay with Paypal:

\n" +" \n" +" \n" +" \n" +" % endif\n" +" \n" +"
\n" +"

If you have any question, do not hesitate to contact us.

\n" +"

Thank you for choosing ${object.company_id.name or 'us'}!

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

\n" +" ${object.company_id.name}

\n" +"
\n" +"
\n" +" \n" +" % if object.company_id.street:\n" +" ${object.company_id.street}
\n" +" % endif\n" +" % if object.company_id.street2:\n" +" ${object.company_id.street2}
\n" +" % endif\n" +" % if object.company_id.city or object.company_id.zip:\n" +" ${object.company_id.zip} ${object.company_id.city}
\n" +" % endif\n" +" % if object.company_id.country_id:\n" +" ${object.company_id.state_id and ('%s, ' % " +"object.company_id.state_id.name) or ''} ${object.company_id.country_id.name " +"or ''}
\n" +" % endif\n" +"
\n" +" % if object.company_id.phone:\n" +"
\n" +" Phone:  ${object.company_id.phone}\n" +"
\n" +" % endif\n" +" % if object.company_id.website:\n" +"
\n" +" Web : ${object.company_id.website}\n" +"
\n" +" %endif\n" +"

\n" +"
\n" +"
\n" +" " +msgstr "" + +#. module: account +#: view:account.period:0 +msgid "Account Period" +msgstr "" + +#. module: account +#: help:account.account,currency_id:0 +#: help:account.account.template,currency_id:0 +#: help:account.bank.accounts.wizard,currency_id:0 +msgid "Forces all moves for this account to have this secondary currency." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_validate_account_move_line +msgid "" +"This wizard will validate all journal entries of a particular journal and " +"period. Once journal entries are validated, you can not update them anymore." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_chart_template_form +#: model:ir.ui.menu,name:account.menu_action_account_chart_template_form +msgid "Chart of Accounts Templates" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Transactions" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_unreconcile_reconcile +msgid "Account Unreconcile Reconcile" +msgstr "" + +#. module: account +#: help:account.account.type,close_method:0 +msgid "" +"Set here the method that will be used to generate the end of year journal " +"entries for all the accounts of this type.\n" +"\n" +" 'None' means that nothing will be done.\n" +" 'Balance' will generally be used for cash accounts.\n" +" 'Detail' will copy each existing journal item of the previous year, even " +"the reconciled ones.\n" +" 'Unreconciled' will copy only the journal items that were unreconciled on " +"the first day of the new fiscal year." +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Keep empty to use the expense account" +msgstr "" + +#. module: account +#: field:account.aged.trial.balance,journal_ids:0 +#: field:account.analytic.cost.ledger.journal.report,journal:0 +#: field:account.balance.report,journal_ids:0 +#: field:account.central.journal,journal_ids:0 +#: field:account.common.account.report,journal_ids:0 +#: field:account.common.journal.report,journal_ids:0 +#: field:account.common.partner.report,journal_ids:0 +#: view:account.common.report:0 +#: field:account.common.report,journal_ids:0 +#: report:account.general.journal:0 +#: field:account.general.journal,journal_ids:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: view:account.journal.period:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,journal_ids:0 +#: field:account.partner.ledger,journal_ids:0 +#: view:account.print.journal:0 +#: field:account.print.journal,journal_ids:0 +#: field:account.report.general.ledger,journal_ids:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.vat.declaration,journal_ids:0 +#: field:accounting.report,journal_ids:0 +#: model:ir.actions.act_window,name:account.action_account_journal_form +#: model:ir.actions.act_window,name:account.action_account_journal_period_tree +#: model:ir.ui.menu,name:account.menu_account_print_journal +#: model:ir.ui.menu,name:account.menu_action_account_journal_form +#: model:ir.ui.menu,name:account.menu_journals +#: model:ir.ui.menu,name:account.menu_journals_report +msgid "Journals" +msgstr "" + +#. module: account +#: field:account.partner.reconcile.process,to_reconcile:0 +msgid "Remaining Partners" +msgstr "" + +#. module: account +#: view:account.subscription:0 +#: field:account.subscription,lines_id:0 +msgid "Subscription Lines" +msgstr "" + +#. module: account +#: selection:account.analytic.journal,type:0 +#: view:account.config.settings:0 +#: view:account.journal:0 +#: selection:account.journal,type:0 +#: view:account.model:0 +#: selection:account.tax,type_tax_use:0 +#: view:account.tax.template:0 +#: selection:account.tax.template,type_tax_use:0 +msgid "Purchase" +msgstr "" + +#. module: account +#: view:account.installer:0 +#: view:wizard.multi.charts.accounts:0 +msgid "Accounting Application Configuration" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_vat_declaration +msgid "Account Tax Declaration" +msgstr "" + +#. module: account +#: help:account.bank.statement,name:0 +msgid "" +"if you give the Name other then /, its created Accounting Entries Move will " +"be with same name as statement name. This allows the statement entries to " +"have the same references than the statement itself" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:1016 +#, python-format +msgid "" +"You cannot create an invoice on a centralized journal. Uncheck the " +"centralized counterpart box in the related journal from the configuration " +"menu." +msgstr "" + +#. module: account +#: field:account.bank.statement,balance_start:0 +#: field:account.treasury.report,starting_balance:0 +msgid "Starting Balance" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:1465 +#, python-format +msgid "No Partner Defined !" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_period_close +#: model:ir.actions.act_window,name:account.action_account_period_tree +#: model:ir.ui.menu,name:account.menu_action_account_period_close_tree +msgid "Close a Period" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.cashbox.line,subtotal_opening:0 +msgid "Opening Subtotal" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +msgid "" +"You cannot create journal items with a secondary currency without recording " +"both 'currency' and 'amount currency' field." +msgstr "" + +#. module: account +#: field:account.financial.report,display_detail:0 +msgid "Display details" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "VAT:" +msgstr "RUC:" + +#. module: account +#: help:account.analytic.line,amount_currency:0 +msgid "" +"The amount expressed in the related account currency if not equal to the " +"company one." +msgstr "" + +#. module: account +#: help:account.config.settings,paypal_account:0 +msgid "" +"Paypal account (email) for receiving online payments (credit card, etc.) If " +"you set a paypal account, the customer will be able to pay your invoices or " +"quotations with a button \"Pay with Paypal\" in automated emails or through " +"the OpenERP portal." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:536 +#, python-format +msgid "" +"Cannot find any account journal of %s type for this company.\n" +"\n" +"You can create one in the menu: \n" +"Configuration/Journals/Journals." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_unreconcile +#: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile +#: model:ir.actions.act_window,name:account.action_account_unreconcile_select +msgid "Unreconcile Entries" +msgstr "" + +#. module: account +#: field:account.tax.code,notprintable:0 +#: field:account.tax.code.template,notprintable:0 +msgid "Not Printable in Invoice" +msgstr "" + +#. module: account +#: report:account.vat.declaration:0 +#: field:account.vat.declaration,chart_tax_id:0 +msgid "Chart of Tax" +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Search Account Journal" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice +msgid "Pending Invoice" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: selection:account.subscription,period_type:0 +msgid "year" +msgstr "" + +#. module: account +#: field:account.config.settings,date_start:0 +msgid "Start date" +msgstr "" + +#. module: account +#: view:account.invoice.refund:0 +msgid "" +"You will be able to edit and validate this\n" +" credit note directly or keep it draft,\n" +" waiting for the document to be issued " +"by\n" +" your supplier/customer." +msgstr "" + +#. module: account +#: view:validate.account.move.lines:0 +msgid "" +"All selected journal entries will be validated and posted. It means you " +"won't be able to modify their accounting fields anymore." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:98 +#, python-format +msgid "" +"You have not supplied enough arguments to compute the initial balance, " +"please select a period and a journal in the context." +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_transfers +msgid "Transfers" +msgstr "" + +#. module: account +#: field:account.config.settings,expects_chart_of_accounts:0 +msgid "This company has its own chart of accounts" +msgstr "" + +#. module: account +#: view:account.chart:0 +msgid "Account charts" +msgstr "" + +#. module: account +#: view:cash.box.out:0 +#: model:ir.actions.act_window,name:account.action_cash_box_out +msgid "Take Money Out" +msgstr "" + +#. module: account +#: report:account.vat.declaration:0 +msgid "Tax Amount" +msgstr "" + +#. module: account +#: view:account.move:0 +msgid "Search Move" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_invoice_tree1 +msgid "" +"

\n" +" Click to create a customer invoice.\n" +"

\n" +" OpenERP's electronic invoicing allows to ease and fasten " +"the\n" +" collection of customer payments. Your customer receives the\n" +" invoice by email and he can pay online and/or import it\n" +" in his own system.\n" +"

\n" +" The discussions with your customer are automatically " +"displayed at\n" +" the bottom of each invoice.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: field:account.tax.code,name:0 +#: field:account.tax.code.template,name:0 +msgid "Tax Case Name" +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +#: model:process.node,name:account.process_node_draftinvoices0 +msgid "Draft Invoice" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Options" +msgstr "" + +#. module: account +#: field:account.aged.trial.balance,period_length:0 +msgid "Period Length (days)" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1363 +#, python-format +msgid "" +"You cannot modify a posted entry of this journal.\n" +"First you should set the journal to allow cancelling entries." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal +msgid "Print Sale/Purchase Journal" +msgstr "" + +#. module: account +#: view:account.installer:0 +msgid "Continue" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: field:account.invoice.report,categ_id:0 +msgid "Category of Product" +msgstr "" + +#. module: account +#: code:addons/account/account.py:930 +#, python-format +msgid "" +"There is no fiscal year defined for this date.\n" +"Please create one from the configuration of the accounting menu." +msgstr "" + +#. module: account +#: view:account.addtmpl.wizard:0 +#: model:ir.actions.act_window,name:account.action_account_addtmpl_wizard_form +msgid "Create Account" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:62 +#, python-format +msgid "The entries to reconcile should belong to the same company." +msgstr "" + +#. module: account +#: field:account.invoice.tax,tax_amount:0 +msgid "Tax Code Amount" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Unreconciled Journal Items" +msgstr "" + +#. module: account +#: selection:account.account.type,close_method:0 +msgid "Detail" +msgstr "" + +#. module: account +#: help:account.config.settings,default_purchase_tax:0 +msgid "This purchase tax will be assigned by default on new products." +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "VAT :" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: report:account.central.journal:0 +#: view:account.config.settings:0 +#: report:account.general.journal:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 +#: report:account.partner.balance:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: model:ir.actions.act_window,name:account.action_account_chart +#: model:ir.actions.act_window,name:account.action_account_tree +#: model:ir.ui.menu,name:account.menu_action_account_tree2 +msgid "Chart of Accounts" +msgstr "" + +#. module: account +#: view:account.tax.chart:0 +msgid "(If you do not select period it will take all open periods)" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_journal_cashbox_line +msgid "account.journal.cashbox.line" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_partner_reconcile_process +msgid "Reconcilation Process partner by partner" +msgstr "" + +#. module: account +#: view:account.chart:0 +msgid "(If you do not select Fiscal year it will take all open fiscal years)" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,filter:0 +#: report:account.analytic.account.journal:0 +#: view:account.analytic.line:0 +#: selection:account.balance.report,filter:0 +#: field:account.bank.statement,date:0 +#: field:account.bank.statement.line,date:0 +#: selection:account.central.journal,filter:0 +#: selection:account.common.account.report,filter:0 +#: selection:account.common.journal.report,filter:0 +#: selection:account.common.partner.report,filter:0 +#: selection:account.common.report,filter:0 +#: view:account.entries.report:0 +#: field:account.entries.report,date:0 +#: selection:account.general.journal,filter:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: field:account.invoice.refund,date:0 +#: field:account.invoice.report,date:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: view:account.move:0 +#: field:account.move,date:0 +#: field:account.move.line.reconcile.writeoff,date_p:0 +#: report:account.overdue:0 +#: selection:account.partner.balance,filter:0 +#: selection:account.partner.ledger,filter:0 +#: selection:account.print.journal,filter:0 +#: selection:account.print.journal,sort_selection:0 +#: selection:account.report.general.ledger,filter:0 +#: selection:account.report.general.ledger,sortby:0 +#: field:account.subscription.line,date:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: xsl:account.transfer:0 +#: selection:account.vat.declaration,filter:0 +#: selection:accounting.report,filter:0 +#: selection:accounting.report,filter_cmp:0 +#: field:analytic.entries.report,date:0 +msgid "Date" +msgstr "" + +#. module: account +#: view:account.move:0 +msgid "Post" +msgstr "" + +#. module: account +#: view:account.unreconcile:0 +#: view:account.unreconcile.reconcile:0 +msgid "Unreconcile" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +msgid "Chart of Accounts Template" +msgstr "" + +#. module: account +#: code:addons/account/account.py:2358 +#, python-format +msgid "" +"Maturity date of entry line generated by model line '%s' of model '%s' is " +"based on partner payment term!\n" +"Please define partner on it!" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: selection:account.balance.report,display_account:0 +#: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 +#: selection:account.report.general.ledger,display_account:0 +#: selection:account.tax,type_tax_use:0 +#: selection:account.tax.template,type_tax_use:0 +msgid "All" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_reporting_budgets +msgid "Budgets" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,filter:0 +#: selection:account.balance.report,filter:0 +#: selection:account.central.journal,filter:0 +#: selection:account.common.account.report,filter:0 +#: selection:account.common.journal.report,filter:0 +#: selection:account.common.partner.report,filter:0 +#: selection:account.common.report,filter:0 +#: selection:account.general.journal,filter:0 +#: selection:account.partner.balance,filter:0 +#: selection:account.partner.ledger,filter:0 +#: selection:account.print.journal,filter:0 +#: selection:account.report.general.ledger,filter:0 +#: selection:account.vat.declaration,filter:0 +#: selection:accounting.report,filter:0 +#: selection:accounting.report,filter_cmp:0 +msgid "No Filters" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: model:res.groups,name:account.group_proforma_invoices +msgid "Pro-forma Invoices" +msgstr "" + +#. module: account +#: view:res.partner:0 +msgid "History" +msgstr "" + +#. module: account +#: help:account.tax,applicable_type:0 +#: help:account.tax.template,applicable_type:0 +msgid "" +"If not applicable (computed through a Python code), the tax won't appear on " +"the invoice." +msgstr "" + +#. module: account +#: field:account.config.settings,group_check_supplier_invoice_total:0 +msgid "Check the total of supplier invoices" +msgstr "" + +#. module: account +#: view:account.tax:0 +#: view:account.tax.template:0 +msgid "Applicable Code (if type=code)" +msgstr "" + +#. module: account +#: help:account.period,state:0 +msgid "" +"When monthly periods are created. The status is 'Draft'. At the end of " +"monthly period it is in 'Done' status." +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: field:account.invoice.report,product_qty:0 +msgid "Qty" +msgstr "" + +#. module: account +#: help:account.tax.code,sign:0 +msgid "" +"You can specify here the coefficient that will be used when consolidating " +"the amount of this case into its parent. For example, set 1/-1 if you want " +"to add/substract it." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Search Analytic Lines" +msgstr "" + +#. module: account +#: field:res.partner,property_account_payable:0 +msgid "Account Payable" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:88 +#, python-format +msgid "The periods to generate opening entries cannot be found." +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_supplierpaymentorder0 +msgid "Payment Order" +msgstr "" + +#. module: account +#: help:account.account.template,reconcile:0 +msgid "" +"Check this option if you want the user to reconcile entries in this account." +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: field:account.invoice.line,price_unit:0 +msgid "Unit Price" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_tree1 +msgid "Analytic Items" +msgstr "" + +#. module: account +#: field:analytic.entries.report,nbr:0 +msgid "#Entries" +msgstr "" + +#. module: account +#: view:account.state.open:0 +msgid "Open Invoice" +msgstr "" + +#. module: account +#: field:account.invoice.tax,factor_tax:0 +msgid "Multipication factor Tax code" +msgstr "" + +#. module: account +#: field:account.config.settings,complete_tax_set:0 +msgid "Complete set of taxes" +msgstr "" + +#. module: account +#: field:account.account,name:0 +#: field:account.account.template,name:0 +#: report:account.analytic.account.inverted.balance:0 +#: field:account.chart.template,name:0 +#: field:account.model.line,name:0 +#: field:account.move.line,name:0 +#: field:account.move.reconcile,name:0 +#: field:account.subscription,name:0 +msgid "Name" +msgstr "" + +#. module: account +#: code:addons/account/installer.py:115 +#, python-format +msgid "No unconfigured company !" +msgstr "" + +#. module: account +#: field:res.company,expects_chart_of_accounts:0 +msgid "Expects a Chart of Accounts" +msgstr "" + +#. module: account +#: field:account.move.line,date:0 +msgid "Effective date" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:100 +#, python-format +msgid "The journal must have default credit and debit account." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_tree +#: model:ir.ui.menu,name:account.menu_action_bank_tree +msgid "Setup your Bank Accounts" +msgstr "" + +#. module: account +#: xsl:account.transfer:0 +msgid "Partner ID" +msgstr "" + +#. module: account +#: help:account.bank.statement,message_ids:0 +#: help:account.invoice,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: account +#: help:account.journal,analytic_journal_id:0 +msgid "Journal for analytic entries" +msgstr "" + +#. module: account +#: constraint:account.aged.trial.balance:0 +#: constraint:account.balance.report:0 +#: constraint:account.central.journal:0 +#: constraint:account.common.account.report:0 +#: constraint:account.common.journal.report:0 +#: constraint:account.common.partner.report:0 +#: constraint:account.common.report:0 +#: constraint:account.general.journal:0 +#: constraint:account.partner.balance:0 +#: constraint:account.partner.ledger:0 +#: constraint:account.print.journal:0 +#: constraint:account.report.general.ledger:0 +#: constraint:account.vat.declaration:0 +#: constraint:accounting.report:0 +msgid "" +"The fiscalyear, periods or chart of account chosen have to belong to the " +"same company." +msgstr "" + +#. module: account +#: help:account.tax.code.template,notprintable:0 +msgid "" +"Check this box if you don't want any tax related to this tax Code to appear " +"on invoices." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#, python-format +msgid "You cannot use an inactive account." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.open_board_account +#: model:ir.ui.menu,name:account.menu_account_config +#: model:ir.ui.menu,name:account.menu_board_account +#: model:ir.ui.menu,name:account.menu_finance +#: model:ir.ui.menu,name:account.menu_finance_reporting +#: model:process.node,name:account.process_node_accountingentries0 +#: model:process.node,name:account.process_node_supplieraccountingentries0 +#: view:product.product:0 +#: view:product.template:0 +#: view:res.partner:0 +msgid "Accounting" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Journal Entries with period in current year" +msgstr "" + +#. module: account +#: field:account.account,child_consol_ids:0 +msgid "Consolidated Children" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:573 +#: code:addons/account/wizard/account_invoice_refund.py:146 +#, python-format +msgid "Insufficient Data!" +msgstr "" + +#. module: account +#: help:account.account,unrealized_gain_loss:0 +msgid "" +"Value of Loss or Gain due to changes in exchange rate when doing multi-" +"currency transactions." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "General Accounting" +msgstr "" + +#. module: account +#: help:account.fiscalyear.close,journal_id:0 +msgid "" +"The best practice here is to use a journal dedicated to contain the opening " +"entries of all fiscal years. Note that you should define it with default " +"debit/credit accounts, of type 'situation' and with a centralized " +"counterpart." +msgstr "" + +#. module: account +#: view:account.installer:0 +msgid "title" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:account.subscription:0 +msgid "Set to Draft" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_subscription_form +msgid "Recurring Lines" +msgstr "" + +#. module: account +#: field:account.partner.balance,display_partner:0 +msgid "Display Partners" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Validate" +msgstr "" + +#. module: account +#: model:account.financial.report,name:account.account_financial_report_assets0 +msgid "Assets" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Accounting & Finance" +msgstr "" + +#. module: account +#: view:account.invoice.confirm:0 +msgid "Confirm Invoices" +msgstr "" + +#. module: account +#: selection:account.account,currency_mode:0 +msgid "Average Rate" +msgstr "" + +#. module: account +#: field:account.balance.report,display_account:0 +#: field:account.common.account.report,display_account:0 +#: field:account.report.general.ledger,display_account:0 +msgid "Display Accounts" +msgstr "" + +#. module: account +#: view:account.state.open:0 +msgid "(Invoice should be unreconciled if you want to open it)" +msgstr "" + +#. module: account +#: field:account.tax,account_analytic_collected_id:0 +msgid "Invoice Tax Analytic Account" +msgstr "" + +#. module: account +#: field:account.chart,period_from:0 +msgid "Start period" +msgstr "" + +#. module: account +#: field:account.tax,name:0 +#: field:account.tax.template,name:0 +#: report:account.vat.declaration:0 +msgid "Tax Name" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +#: model:ir.ui.menu,name:account.menu_finance_configuration +msgid "Configuration" +msgstr "" + +#. module: account +#: model:account.payment.term,name:account.account_payment_term +#: model:account.payment.term,note:account.account_payment_term +msgid "30 Days End of Month" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_balance +#: model:ir.actions.report.xml,name:account.account_analytic_account_balance +msgid "Analytic Balance" +msgstr "" + +#. module: account +#: help:res.partner,property_payment_term:0 +msgid "" +"This payment term will be used instead of the default one for sale orders " +"and customer invoices" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "" +"If you put \"%(year)s\" in the prefix, it will be replaced by the current " +"year." +msgstr "" + +#. module: account +#: help:account.account,active:0 +msgid "" +"If the active field is set to False, it will allow you to hide the account " +"without removing it." +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Posted Journal Items" +msgstr "" + +#. module: account +#: field:account.move.line,blocked:0 +msgid "No Follow-up" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Search Tax Templates" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation +msgid "Draft Entries" +msgstr "" + +#. module: account +#: help:account.config.settings,decimal_precision:0 +msgid "" +"As an example, a decimal precision of 2 will allow journal entries like: " +"9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " +"0.0231 EUR." +msgstr "" + +#. module: account +#: field:account.account,shortcut:0 +#: field:account.account.template,shortcut:0 +msgid "Shortcut" +msgstr "" + +#. module: account +#: view:account.account:0 +#: field:account.account,user_type:0 +#: view:account.account.template:0 +#: field:account.account.template,user_type:0 +#: view:account.account.type:0 +#: field:account.account.type,name:0 +#: field:account.bank.accounts.wizard,account_type:0 +#: field:account.entries.report,user_type:0 +#: selection:account.financial.report,type:0 +#: model:ir.model,name:account.model_account_account_type +#: field:report.account.receivable,type:0 +#: field:report.account_type.sales,user_type:0 +msgid "Account Type" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Close CashBox" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_invoice_cancel +msgid "Cancel the Selected Invoices" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:424 +#, python-format +msgid "You have to assign an analytic journal on the '%s' journal!" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_supplieranalyticcost0 +msgid "" +"Analytic costs (timesheets, some purchased products, ...) come from analytic " +"accounts. These generate draft supplier invoices." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_bank_tree +msgid "" +"

\n" +" Click to setup a new bank account. \n" +"

\n" +" Configure your company's bank account and select those that " +"must\n" +" appear on the report footer.\n" +"

\n" +" If you use the accounting application of OpenERP, journals and\n" +" accounts will be created automatically based on these data.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: constraint:account.tax.code.template:0 +msgid "" +"Error!\n" +"You cannot create recursive Tax Codes." +msgstr "" + +#. module: account +#: constraint:account.period:0 +msgid "" +"Error!\n" +"The duration of the Period(s) is/are invalid." +msgstr "" + +#. module: account +#: field:account.entries.report,month:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,month:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,month:0 +#: field:report.account.sales,month:0 +#: field:report.account_type.sales,month:0 +msgid "Month" +msgstr "" + +#. module: account +#: code:addons/account/account.py:668 +#, python-format +msgid "You cannot change the code of account which contains journal items!" +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_sequence_prefix:0 +msgid "Supplier invoice sequence" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 +#, python-format +msgid "" +"Cannot find a chart of account, you should create one from Settings\\" +"Configuration\\Accounting menu." +msgstr "" + +#. module: account +#: field:account.entries.report,product_uom_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,product_uom_id:0 +msgid "Product Unit of Measure" +msgstr "" + +#. module: account +#: field:res.company,paypal_account:0 +msgid "Paypal Account" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Acc.Type" +msgstr "" + +#. module: account +#: selection:account.journal,type:0 +msgid "Bank and Checks" +msgstr "" + +#. module: account +#: field:account.account.template,note:0 +msgid "Note" +msgstr "" + +#. module: account +#: selection:account.financial.report,sign:0 +msgid "Reverse balance sign" +msgstr "" + +#. module: account +#: selection:account.account.type,report_type:0 +#: code:addons/account/account.py:191 +#, python-format +msgid "Balance Sheet (Liability account)" +msgstr "" + +#. module: account +#: help:account.invoice,date_invoice:0 +msgid "Keep empty to use the current date" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.cashbox.line,subtotal_closing:0 +msgid "Closing Subtotal" +msgstr "" + +#. module: account +#: field:account.tax,base_code_id:0 +msgid "Account Base Code" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:864 +#, python-format +msgid "" +"You have to provide an account for the write off/exchange difference entry." +msgstr "" + +#. module: account +#: help:res.company,paypal_account:0 +msgid "Paypal username (usually email) for receiving online payments." +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,target_move:0 +#: selection:account.balance.report,target_move:0 +#: selection:account.central.journal,target_move:0 +#: selection:account.chart,target_move:0 +#: selection:account.common.account.report,target_move:0 +#: selection:account.common.journal.report,target_move:0 +#: selection:account.common.partner.report,target_move:0 +#: selection:account.common.report,target_move:0 +#: selection:account.general.journal,target_move:0 +#: selection:account.partner.balance,target_move:0 +#: selection:account.partner.ledger,target_move:0 +#: selection:account.print.journal,target_move:0 +#: selection:account.report.general.ledger,target_move:0 +#: selection:account.tax.chart,target_move:0 +#: selection:account.vat.declaration,target_move:0 +#: selection:accounting.report,target_move:0 +#: code:addons/account/report/common_report_header.py:68 +#, python-format +msgid "All Posted Entries" +msgstr "" + +#. module: account +#: field:report.aged.receivable,name:0 +msgid "Month Range" +msgstr "" + +#. module: account +#: help:account.analytic.balance,empty_acc:0 +msgid "Check if you want to display Accounts with 0 balance too." +msgstr "" + +#. module: account +#: field:account.move.reconcile,opening_reconciliation:0 +msgid "Opening Entries Reconciliation" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/xml/account_move_reconciliation.xml:24 +#, python-format +msgid "Last Reconciliation:" +msgstr "" + +#. module: account +#: selection:account.move.line,state:0 +msgid "Balanced" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_importinvoice0 +msgid "Statement from invoice or payment" +msgstr "" + +#. module: account +#: code:addons/account/installer.py:115 +#, python-format +msgid "" +"There is currently no company without chart of account. The wizard will " +"therefore not be executed." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_wizard_multi_chart +msgid "Set Your Accounting Options" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_chart +msgid "Account chart" +msgstr "" + +#. module: account +#: field:account.invoice,reference_type:0 +msgid "Payment Reference" +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Main Title 1 (bold, underlined)" +msgstr "" + +#. module: account +#: report:account.analytic.account.balance:0 +#: report:account.central.journal:0 +msgid "Account Name" +msgstr "" + +#. module: account +#: help:account.fiscalyear.close,report_name:0 +msgid "Give name of the new entries" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account +#: field:account.account,exchange_rate:0 +msgid "Exchange Rate" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_paymentorderreconcilation0 +msgid "Bank statements are entered in the system." +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_reconcile.py:122 +#, python-format +msgid "Reconcile Writeoff" +msgstr "" + +#. module: account +#: view:account.account.template:0 +#: view:account.chart.template:0 +msgid "Account Template" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Closing Balance" +msgstr "" + +#. module: account +#: field:account.chart.template,visible:0 +msgid "Can be Visible?" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_journal_select +msgid "Account Journal Select" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Credit Notes" +msgstr "" + +#. module: account +#: view:account.move.line:0 +#: model:ir.actions.act_window,name:account.action_account_manual_reconcile +msgid "Journal Items to Reconcile" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_tax_template +msgid "Templates for Taxes" +msgstr "" + +#. module: account +#: sql_constraint:account.period:0 +msgid "The name of the period must be unique per company!" +msgstr "" + +#. module: account +#: help:wizard.multi.charts.accounts,currency_id:0 +msgid "Currency as per company's country." +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Tax Computation" +msgstr "" + +#. module: account +#: view:wizard.multi.charts.accounts:0 +msgid "res_config_contents" +msgstr "" + +#. module: account +#: help:account.chart.template,visible:0 +msgid "" +"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." +msgstr "" + +#. module: account +#: view:account.use.model:0 +msgid "Create Entries From Models" +msgstr "" + +#. module: account +#: field:account.account,reconcile:0 +#: field:account.account.template,reconcile:0 +msgid "Allow Reconciliation" +msgstr "" + +#. module: account +#: constraint:account.account:0 +msgid "" +"Error!\n" +"You cannot create an account which has parent account of different company." +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:658 +#, python-format +msgid "" +"Cannot find any account journal of %s type for this company.\n" +"\n" +"You can create one in the menu: \n" +"Configuration\\Journals\\Journals." +msgstr "" + +#. module: account +#: report:account.vat.declaration:0 +msgid "Based On" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3204 +#, python-format +msgid "ECNJ" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_cost_ledger_journal_report +msgid "Account Analytic Cost Ledger For Journal Report" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_model_form +msgid "Recurring Models" +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Children/Sub Taxes" +msgstr "" + +#. module: account +#: xsl:account.transfer:0 +msgid "Change" +msgstr "" + +#. module: account +#: field:account.journal,type_control_ids:0 +msgid "Type Controls" +msgstr "" + +#. module: account +#: help:account.journal,default_credit_account_id:0 +msgid "It acts as a default account for credit amount" +msgstr "" + +#. module: account +#: view:cash.box.out:0 +msgid "Describe why you take money from the cash register:" +msgstr "" + +#. module: account +#: selection:account.invoice,state:0 +#: selection:account.invoice.report,state:0 +#: selection:report.invoice.created,state:0 +msgid "Cancelled" +msgstr "" + +#. module: account +#: help:account.config.settings,group_proforma_invoices:0 +msgid "Allows you to put invoices in pro-forma state." +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Unit Of Currency Definition" +msgstr "" + +#. module: account +#: help:account.partner.ledger,amount_currency:0 +#: help:account.report.general.ledger,amount_currency:0 +msgid "" +"It adds the currency column on report if the currency differs from the " +"company currency." +msgstr "" + +#. module: account +#: code:addons/account/account.py:3394 +#, python-format +msgid "Purchase Tax %.2f%%" +msgstr "" + +#. module: account +#: view:account.subscription.generate:0 +#: model:ir.actions.act_window,name:account.action_account_subscription_generate +#: model:ir.ui.menu,name:account.menu_generate_subscription +msgid "Generate Entries" +msgstr "" + +#. module: account +#: help:account.vat.declaration,chart_tax_id:0 +msgid "Select Charts of Taxes" +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,account_ids:0 +#: field:account.fiscal.position.template,account_ids:0 +msgid "Account Mapping" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Confirmed" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Cancelled Invoice" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "My Invoices" +msgstr "" + +#. module: account +#: selection:account.bank.statement,state:0 +msgid "New" +msgstr "" + +#. module: account +#: view:wizard.multi.charts.accounts:0 +msgid "Sale Tax" +msgstr "" + +#. module: account +#: field:account.tax,ref_tax_code_id:0 +#: field:account.tax.template,ref_tax_code_id:0 +msgid "Refund Tax Code" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Invoice " +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_income:0 +msgid "Income Account on Product Template" +msgstr "" + +#. module: account +#: help:account.journal.period,state:0 +msgid "" +"When journal period is created. The status is 'Draft'. If a report is " +"printed it comes to 'Printed' status. When all transactions are done, it " +"comes in 'Done' status." +msgstr "" + +#. module: account +#: code:addons/account/account.py:3205 +#, python-format +msgid "MISC" +msgstr "" + +#. module: account +#: field:account.fiscalyear.close,fy2_id:0 +msgid "New Fiscal Year" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:account.tax:0 +#: view:account.tax.template:0 +#: selection:account.vat.declaration,based_on:0 +#: model:ir.actions.act_window,name:account.act_res_partner_2_account_invoice_opened +#: model:ir.actions.act_window,name:account.action_invoice_tree +#: model:ir.actions.report.xml,name:account.account_invoices +#: view:report.invoice.created:0 +#: field:res.partner,invoice_ids:0 +msgid "Invoices" +msgstr "" + +#. module: account +#: help:account.config.settings,expects_chart_of_accounts:0 +msgid "Check this box if this company is a legal entity." +msgstr "" + +#. module: account +#: model:account.account.type,name:account.conf_account_type_chk +#: selection:account.bank.accounts.wizard,account_type:0 +msgid "Check" +msgstr "" + +#. module: account +#: view:account.aged.trial.balance:0 +#: view:account.analytic.balance:0 +#: view:account.analytic.chart:0 +#: view:account.analytic.cost.ledger:0 +#: view:account.analytic.cost.ledger.journal.report:0 +#: view:account.analytic.inverted.balance:0 +#: view:account.analytic.journal.report:0 +#: view:account.automatic.reconcile:0 +#: view:account.change.currency:0 +#: view:account.chart:0 +#: view:account.common.report:0 +#: view:account.config.settings:0 +#: view:account.fiscalyear.close:0 +#: view:account.fiscalyear.close.state:0 +#: view:account.invoice.cancel:0 +#: view:account.invoice.confirm:0 +#: view:account.invoice.refund:0 +#: view:account.journal.select:0 +#: view:account.move.bank.reconcile:0 +#: view:account.move.line.reconcile:0 +#: view:account.move.line.reconcile.select:0 +#: view:account.move.line.reconcile.writeoff:0 +#: view:account.move.line.unreconcile.select:0 +#: view:account.open.closed.fiscalyear:0 +#: view:account.period.close:0 +#: view:account.state.open:0 +#: view:account.subscription.generate:0 +#: view:account.tax.chart:0 +#: view:account.unreconcile:0 +#: view:account.use.model:0 +#: view:account.vat.declaration:0 +#: view:cash.box.in:0 +#: view:cash.box.out:0 +#: view:project.account.analytic.line:0 +#: view:validate.account.move:0 +#: view:validate.account.move.lines:0 +msgid "or" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Invoiced" +msgstr "" + +#. module: account +#: view:account.move:0 +msgid "Posted Journal Entries" +msgstr "" + +#. module: account +#: view:account.use.model:0 +msgid "Use Model" +msgstr "" + +#. module: account +#: help:account.invoice,partner_bank_id:0 +msgid "" +"Bank Account Number to which the invoice will be paid. A Company bank " +"account if this is a Customer Invoice or Supplier Refund, otherwise a " +"Partner bank account number." +msgstr "" + +#. module: account +#: field:account.partner.reconcile.process,today_reconciled:0 +msgid "Partners Reconciled Today" +msgstr "" + +#. module: account +#: help:account.invoice.tax,tax_code_id:0 +msgid "The tax basis of the tax declaration." +msgstr "" + +#. module: account +#: view:account.addtmpl.wizard:0 +msgid "Add" +msgstr "" + +#. module: account +#: selection:account.invoice,state:0 +#: report:account.overdue:0 +#: model:mail.message.subtype,name:account.mt_invoice_paid +msgid "Paid" +msgstr "" + +#. module: account +#: field:account.invoice,tax_line:0 +msgid "Tax Lines" +msgstr "" + +#. module: account +#: help:account.move.line,statement_id:0 +msgid "The bank statement used for bank reconciliation" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 +msgid "Draft invoices are validated. " +msgstr "" + +#. module: account +#: help:account.tax,account_collected_id:0 +msgid "" +"Set the account that will be set by default on invoice tax lines for " +"invoices. Leave empty to use the expense account." +msgstr "" + +#. module: account +#: code:addons/account/account.py:890 +#, python-format +msgid "Opening Period" +msgstr "" + +#. module: account +#: view:account.move:0 +msgid "Journal Entries to Review" +msgstr "" + +#. module: account +#: selection:res.company,tax_calculation_rounding_method:0 +msgid "Round Globally" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: view:account.subscription:0 +msgid "Compute" +msgstr "" + +#. module: account +#: field:account.tax,type_tax_use:0 +msgid "Tax Application" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:922 +#, python-format +msgid "" +"Please verify the price of the invoice !\n" +"The encoded total does not match the computed total." +msgstr "" + +#. module: account +#: field:account.account,active:0 +#: field:account.analytic.journal,active:0 +#: field:account.fiscal.position,active:0 +#: field:account.journal.period,active:0 +#: field:account.payment.term,active:0 +#: field:account.tax,active:0 +msgid "Active" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.journal,cash_control:0 +msgid "Cash Control" +msgstr "" + +#. module: account +#: field:account.analytic.balance,date2:0 +#: field:account.analytic.cost.ledger,date2:0 +#: field:account.analytic.cost.ledger.journal.report,date2:0 +#: field:account.analytic.inverted.balance,date2:0 +#: field:account.analytic.journal.report,date2:0 +msgid "End of period" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_supplierpaymentorder0 +msgid "Payment of invoices" +msgstr "" + +#. module: account +#: sql_constraint:account.invoice:0 +msgid "Invoice Number must be unique per Company!" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_receivable_graph +msgid "Balance by Type of Account" +msgstr "" + +#. module: account +#: code:addons/account/account_cash_statement.py:301 +#, python-format +msgid "There is no %s Account on the journal %s." +msgstr "" + +#. module: account +#: model:res.groups,name:account.group_account_user +msgid "Accountant" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_treasury_report_all +msgid "" +"From this view, have an analysis of your treasury. It sums the balance of " +"every accounting entries made on liquidity accounts per period." +msgstr "" + +#. module: account +#: model:res.groups,name:account.group_account_manager +msgid "Financial Manager" +msgstr "" + +#. module: account +#: field:account.journal,group_invoice_lines:0 +msgid "Group Invoice Lines" +msgstr "" + +#. module: account +#: view:account.automatic.reconcile:0 +msgid "Close" +msgstr "" + +#. module: account +#: field:account.bank.statement.line,move_ids:0 +msgid "Moves" +msgstr "" + +#. module: account +#: field:account.bank.statement,details_ids:0 +#: view:account.journal:0 +msgid "CashBox Lines" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_vat_declaration +msgid "Account Vat Declaration" +msgstr "Declaración de Impuestos" + +#. module: account +#: help:account.config.settings,module_account_accountant:0 +msgid "" +"If you do not check this box, you will be able to do invoicing & payments, " +"but not accounting (Journal Items, Chart of Accounts, ...)" +msgstr "" + +#. module: account +#: view:account.period:0 +msgid "To Close" +msgstr "" + +#. module: account +#: field:account.treasury.report,date:0 +msgid "Beginning of Period Date" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.account_template_folder +msgid "Templates" +msgstr "" + +#. module: account +#: field:account.invoice.tax,name:0 +msgid "Tax Description" +msgstr "" + +#. module: account +#: field:account.tax,child_ids:0 +msgid "Child Tax Accounts" +msgstr "" + +#. module: account +#: help:account.tax,price_include:0 +#: help:account.tax.template,price_include:0 +msgid "" +"Check this if the price you use on the product and invoices includes this " +"tax." +msgstr "" + +#. module: account +#: report:account.analytic.account.balance:0 +msgid "Analytic Balance -" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,target_move:0 +#: field:account.balance.report,target_move:0 +#: report:account.central.journal:0 +#: field:account.central.journal,target_move:0 +#: field:account.chart,target_move:0 +#: field:account.common.account.report,target_move:0 +#: field:account.common.journal.report,target_move:0 +#: field:account.common.partner.report,target_move:0 +#: field:account.common.report,target_move:0 +#: report:account.general.journal:0 +#: field:account.general.journal,target_move:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,target_move:0 +#: field:account.partner.ledger,target_move:0 +#: field:account.print.journal,target_move:0 +#: field:account.report.general.ledger,target_move:0 +#: field:account.tax.chart,target_move:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.vat.declaration,target_move:0 +#: field:accounting.report,target_move:0 +msgid "Target Moves" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1454 +#, python-format +msgid "" +"Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: help:account.cashbox.line,number_opening:0 +msgid "Opening Unit Numbers" +msgstr "" + +#. module: account +#: field:account.subscription,period_type:0 +msgid "Period Type" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: field:account.invoice,payment_ids:0 +#: selection:account.vat.declaration,based_on:0 +msgid "Payments" +msgstr "" + +#. module: account +#: field:account.subscription.line,move_id:0 +msgid "Entry" +msgstr "" + +#. module: account +#: field:account.tax,python_compute_inv:0 +#: field:account.tax.template,python_compute_inv:0 +msgid "Python Code (reverse)" +msgstr "" + +#. module: account +#: field:account.invoice,payment_term:0 +#: model:ir.actions.act_window,name:account.action_payment_term_form +#: model:ir.ui.menu,name:account.menu_action_payment_term_form +msgid "Payment Terms" +msgstr "" + +#. module: account +#: help:account.chart.template,complete_tax_set:0 +msgid "" +"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" +msgstr "" + +#. module: account +#: view:account.financial.report:0 +#: field:account.financial.report,children_ids:0 +#: model:ir.model,name:account.model_account_financial_report +msgid "Account Report" +msgstr "" + +#. module: account +#: field:account.entries.report,year:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,year:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,year:0 +#: view:report.account.sales:0 +#: field:report.account.sales,name:0 +#: view:report.account_type.sales:0 +#: field:report.account_type.sales,name:0 +msgid "Year" +msgstr "" + +#. module: account +#: help:account.invoice,sent:0 +msgid "It indicates that the invoice has been sent." +msgstr "" + +#. module: account +#: field:account.tax.template,description:0 +msgid "Internal Name" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1185 +#, python-format +msgid "" +"Cannot create an automatic sequence for this piece.\n" +"Put a sequence in the journal definition for automatic numbering or create a " +"sequence manually for this piece." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Pro Forma Invoice " +msgstr "" + +#. module: account +#: selection:account.subscription,period_type:0 +msgid "month" +msgstr "" + +#. module: account +#: view:account.move.line:0 +#: field:account.partner.reconcile.process,next_partner_id:0 +msgid "Next Partner to Reconcile" +msgstr "" + +#. module: account +#: field:account.invoice.tax,account_id:0 +#: field:account.move.line,tax_code_id:0 +msgid "Tax Account" +msgstr "" + +#. module: account +#: model:account.financial.report,name:account.account_financial_report_balancesheet0 +#: model:ir.actions.act_window,name:account.action_account_report_bs +#: model:ir.ui.menu,name:account.menu_account_report_bs +msgid "Balance Sheet" +msgstr "" + +#. module: account +#: selection:account.account.type,report_type:0 +#: code:addons/account/account.py:188 +#, python-format +msgid "Profit & Loss (Income account)" +msgstr "" + +#. module: account +#: field:account.journal,allow_date:0 +msgid "Check Date in Period" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.final_accounting_reports +msgid "Accounting Reports" +msgstr "" + +#. module: account +#: field:account.move,line_id:0 +#: view:analytic.entries.report:0 +#: model:ir.actions.act_window,name:account.action_move_line_form +msgid "Entries" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "This Period" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Compute Code (if type=code)" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:508 +#, python-format +msgid "" +"Cannot find a chart of accounts for this company, you should create one." +msgstr "" + +#. module: account +#: selection:account.analytic.journal,type:0 +#: view:account.config.settings:0 +#: view:account.journal:0 +#: selection:account.journal,type:0 +#: view:account.model:0 +#: selection:account.tax,type_tax_use:0 +#: view:account.tax.template:0 +#: selection:account.tax.template,type_tax_use:0 +msgid "Sale" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_automatic_reconcile +msgid "Automatic Reconcile" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: field:account.bank.statement.line,amount:0 +#: report:account.invoice:0 +#: field:account.invoice.line,price_subtotal:0 +#: field:account.invoice.tax,amount:0 +#: view:account.move:0 +#: field:account.move,amount:0 +#: view:account.move.line:0 +#: field:account.tax,amount:0 +#: field:account.tax.template,amount:0 +#: xsl:account.transfer:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,amount:0 +#: field:cash.box.in,amount:0 +#: field:cash.box.out,amount:0 +msgid "Amount" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:41 +#, python-format +msgid "End of Fiscal Year Entry" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_customerinvoice0 +#: model:process.transition,name:account.process_transition_paymentorderreconcilation0 +#: model:process.transition,name:account.process_transition_statemententries0 +#: model:process.transition,name:account.process_transition_suppliercustomerinvoice0 +#: model:process.transition,name:account.process_transition_suppliervalidentries0 +#: model:process.transition,name:account.process_transition_validentries0 +msgid "Validation" +msgstr "" + +#. module: account +#: help:account.bank.statement,message_summary:0 +#: help:account.invoice,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: account +#: field:account.tax,child_depend:0 +#: field:account.tax.template,child_depend:0 +msgid "Tax on Children" +msgstr "" + +#. module: account +#: help:res.partner,last_reconciliation_date:0 +msgid "" +"Date on which the partner accounting entries were fully reconciled last " +"time. It differs from the date of the last reconciliation made for this " +"partner, as here we depict the fact that nothing more was to be reconciled " +"at this date. This can be achieved in 2 ways: either the last debit/credit " +"entry was reconciled, either the user pressed the button \"Fully " +"Reconciled\" in the manual reconciliation process" +msgstr "" + +#. module: account +#: field:account.journal,update_posted:0 +msgid "Allow Cancelling Entries" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_use_model.py:44 +#, python-format +msgid "" +"Maturity date of entry line generated by model line '%s' is based on partner " +"payment term!\n" +"Please define partner on it!" +msgstr "" + +#. module: account +#: field:account.tax.code,sign:0 +msgid "Coefficent for parent" +msgstr "" + +#. module: account +#: report:account.partner.balance:0 +msgid "(Account/Partner) Name" +msgstr "" + +#. module: account +#: field:account.partner.reconcile.process,progress:0 +msgid "Progress" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,bank_accounts_id:0 +msgid "Cash and Banks" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_installer +msgid "account.installer" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Recompute taxes and total" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1116 +#, python-format +msgid "You cannot modify/delete a journal with entries for this period." +msgstr "" + +#. module: account +#: field:account.tax.template,include_base_amount:0 +msgid "Include in Base Amount" +msgstr "" + +#. module: account +#: field:account.invoice,supplier_invoice_number:0 +msgid "Supplier Invoice Number" +msgstr "" + +#. module: account +#: help:account.payment.term.line,days:0 +msgid "" +"Number of days to add before computation of the day of month.If Date=15/01, " +"Number of Days=22, Day of Month=-1, then the due date is 28/02." +msgstr "" + +#. module: account +#: view:account.payment.term.line:0 +msgid "Amount Computation" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1105 +#, python-format +msgid "You can not add/modify entries in a closed period %s of journal %s." +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Entry Controls" +msgstr "" + +#. module: account +#: view:account.analytic.chart:0 +#: view:project.account.analytic.line:0 +msgid "(Keep empty to open the current situation)" +msgstr "" + +#. module: account +#: field:account.analytic.balance,date1:0 +#: field:account.analytic.cost.ledger,date1:0 +#: field:account.analytic.cost.ledger.journal.report,date1:0 +#: field:account.analytic.inverted.balance,date1:0 +#: field:account.analytic.journal.report,date1:0 +msgid "Start of period" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_asset_view1 +msgid "Asset View" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_common_account_report +msgid "Account Common Account Report" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: view:account.bank.statement:0 +#: selection:account.bank.statement,state:0 +#: view:account.fiscalyear:0 +#: selection:account.fiscalyear,state:0 +#: selection:account.invoice,state:0 +#: selection:account.invoice.report,state:0 +#: selection:account.period,state:0 +#: selection:report.invoice.created,state:0 +msgid "Open" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +#: model:ir.ui.menu,name:account.menu_analytic_accounting +msgid "Analytic Accounting" +msgstr "" + +#. module: account +#: help:account.payment.term.line,value:0 +msgid "" +"Select here the kind of valuation related to this payment term line. Note " +"that you should have your last line with the type 'Balance' to ensure that " +"the whole amount will be treated." +msgstr "" + +#. module: account +#: field:account.partner.ledger,initial_balance:0 +#: field:account.report.general.ledger,initial_balance:0 +msgid "Include Initial Balances" +msgstr "" + +#. module: account +#: view:account.invoice.tax:0 +msgid "Tax Codes" +msgstr "" + +#. module: account +#: selection:account.invoice,type:0 +#: selection:account.invoice.report,type:0 +#: selection:report.invoice.created,type:0 +msgid "Customer Refund" +msgstr "" + +#. module: account +#: field:account.tax,ref_tax_sign:0 +#: field:account.tax,tax_sign:0 +#: field:account.tax.template,ref_tax_sign:0 +#: field:account.tax.template,tax_sign:0 +msgid "Tax Code Sign" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_report_invoice_created +msgid "Report of Invoices Created within Last 15 days" +msgstr "" + +#. module: account +#: field:account.fiscalyear,end_journal_period_id:0 +msgid "End of Year Entries Journal" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Draft Refund " +msgstr "" + +#. module: account +#: view:cash.box.in:0 +msgid "Fill in this form if you put money in the cash register:" +msgstr "" + +#. module: account +#: view:account.payment.term.line:0 +#: field:account.payment.term.line,value_amount:0 +msgid "Amount To Pay" +msgstr "" + +#. module: account +#: help:account.partner.reconcile.process,to_reconcile:0 +msgid "" +"This is the remaining partners for who you should check if there is " +"something to reconcile or not. This figure already count the current partner " +"as reconciled." +msgstr "" + +#. module: account +#: view:account.subscription.line:0 +msgid "Subscription lines" +msgstr "" + +#. module: account +#: field:account.entries.report,quantity:0 +msgid "Products Quantity" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +#: selection:account.entries.report,move_state:0 +#: view:account.move:0 +#: selection:account.move,state:0 +#: view:account.move.line:0 +msgid "Unposted" +msgstr "" + +#. module: account +#: view:account.change.currency:0 +#: model:ir.actions.act_window,name:account.action_account_change_currency +#: model:ir.model,name:account.model_account_change_currency +msgid "Change Currency" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_accountingentries0 +#: model:process.node,note:account.process_node_supplieraccountingentries0 +msgid "Accounting entries." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Payment Date" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement,opening_details_ids:0 +msgid "Opening Cashbox Lines" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: model:ir.actions.act_window,name:account.action_account_analytic_account_form +#: model:ir.ui.menu,name:account.account_analytic_def_account +msgid "Analytic Accounts" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Customer Invoices And Refunds" +msgstr "" + +#. module: account +#: field:account.analytic.line,amount_currency:0 +#: field:account.entries.report,amount_currency:0 +#: field:account.model.line,amount_currency:0 +#: field:account.move.line,amount_currency:0 +msgid "Amount Currency" +msgstr "" + +#. module: account +#: selection:res.company,tax_calculation_rounding_method:0 +msgid "Round per Line" +msgstr "" + +#. module: account +#: report:account.analytic.account.balance:0 +#: report:account.analytic.account.inverted.balance:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +#: report:account.invoice:0 +#: field:account.invoice.line,quantity:0 +#: field:account.model.line,quantity:0 +#: field:account.move.line,quantity:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,unit_amount:0 +#: field:report.account.sales,quantity:0 +#: field:report.account_type.sales,quantity:0 +msgid "Quantity" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Number (Move)" +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Normal Text" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_paymentreconcile0 +msgid "Payment entries are the second input of the reconciliation." +msgstr "" + +#. module: account +#: help:res.partner,property_supplier_payment_term:0 +msgid "" +"This payment term will be used instead of the default one for purchase " +"orders and supplier invoices" +msgstr "" + +#. module: account +#: help:account.automatic.reconcile,power:0 +msgid "" +"Number of partial amounts that can be combined to find a balance point can " +"be chosen as the power of the automatic reconciliation" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_report_aged_partner_balance.py:56 +#, python-format +msgid "You must set a period length greater than 0." +msgstr "" + +#. module: account +#: view:account.fiscal.position.template:0 +#: field:account.fiscal.position.template,name:0 +msgid "Fiscal Position Template" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Draft Refund" +msgstr "" + +#. module: account +#: view:account.analytic.chart:0 +#: view:account.chart:0 +#: view:account.tax.chart:0 +msgid "Open Charts" +msgstr "" + +#. module: account +#: field:account.central.journal,amount_currency:0 +#: field:account.common.journal.report,amount_currency:0 +#: field:account.general.journal,amount_currency:0 +#: field:account.partner.ledger,amount_currency:0 +#: field:account.print.journal,amount_currency:0 +#: field:account.report.general.ledger,amount_currency:0 +msgid "With Currency" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Open CashBox" +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Automatic formatting" +msgstr "" + +#. module: account +#: view:account.move.line.reconcile:0 +msgid "Reconcile With Write-Off" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +msgid "You cannot create journal items on an account of type view." +msgstr "" + +#. module: account +#: selection:account.payment.term.line,value:0 +#: selection:account.tax,type:0 +msgid "Fixed Amount" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1056 +#, python-format +msgid "You cannot change the tax, you should remove and recreate lines." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_automatic_reconcile +msgid "Account Automatic Reconcile" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Journal Item" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscalyear_close +#: model:ir.ui.menu,name:account.menu_wizard_fy_close +msgid "Generate Opening Entries" +msgstr "" + +#. module: account +#: help:account.tax,type:0 +msgid "The computation method for the tax amount." +msgstr "" + +#. module: account +#: view:account.payment.term.line:0 +msgid "Due Date Computation" +msgstr "" + +#. module: account +#: field:report.invoice.created,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: account +#: view:account.analytic.journal:0 +#: field:account.analytic.journal.report,analytic_account_journal_id:0 +#: model:ir.actions.act_window,name:account.action_account_analytic_journal_form +#: model:ir.ui.menu,name:account.account_def_analytic_journal +msgid "Analytic Journals" +msgstr "" + +#. module: account +#: field:account.account,child_id:0 +msgid "Child Accounts" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1117 +#, python-format +msgid "Move name (id): %s (%s)" +msgstr "" + +#. module: account +#: view:account.move.line.reconcile:0 +#: code:addons/account/account_move_line.py:879 +#, python-format +msgid "Write-Off" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "entries" +msgstr "" + +#. module: account +#: field:res.partner,debit:0 +msgid "Total Payable" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_income +#: model:account.financial.report,name:account.account_financial_report_income0 +msgid "Income" +msgstr "" + +#. module: account +#: selection:account.bank.statement.line,type:0 +#: view:account.config.settings:0 +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:390 +#, python-format +msgid "Supplier" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "March" +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +msgid "Account n°" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:95 +#, python-format +msgid "Free Reference" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,result_selection:0 +#: selection:account.common.partner.report,result_selection:0 +#: selection:account.partner.balance,result_selection:0 +#: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 +#: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 +#, python-format +msgid "Receivable and Payable Accounts" +msgstr "" + +#. module: account +#: field:account.fiscal.position.account.template,position_id:0 +msgid "Fiscal Mapping" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Select Company" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_state_open +#: model:ir.model,name:account.model_account_state_open +msgid "Account State Open" +msgstr "" + +#. module: account +#: report:account.analytic.account.quantity_cost_ledger:0 +msgid "Max Qty:" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: model:ir.actions.act_window,name:account.action_account_invoice_refund +msgid "Refund Invoice" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_entries_report_all +msgid "" +"From this view, have an analysis of your different financial accounts. The " +"document shows your debit and credit taking in consideration some criteria " +"you can choose by using the search tool." +msgstr "" + +#. module: account +#: help:account.partner.reconcile.process,progress:0 +msgid "" +"Shows you the progress made today on the reconciliation process. Given by \n" +"Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)" +msgstr "" + +#. module: account +#: field:account.invoice,period_id:0 +#: field:account.invoice.report,period_id:0 +#: field:report.account.sales,period_id:0 +#: field:report.account_type.sales,period_id:0 +msgid "Force Period" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_form +msgid "" +"

\n" +" Click to add an account.\n" +"

\n" +" An account is part of a ledger allowing your company\n" +" to register all kinds of debit and credit transactions.\n" +" Companies present their annual accounts in two main parts: " +"the\n" +" balance sheet and the income statement (profit and loss\n" +" account). The annual accounts of a company are required by " +"law\n" +" to disclose a certain amount of information.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: field:account.invoice.report,nbr:0 +msgid "# of Lines" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "(update)" +msgstr "" + +#. module: account +#: field:account.aged.trial.balance,filter:0 +#: field:account.balance.report,filter:0 +#: field:account.central.journal,filter:0 +#: field:account.common.account.report,filter:0 +#: field:account.common.journal.report,filter:0 +#: field:account.common.partner.report,filter:0 +#: field:account.common.report,filter:0 +#: field:account.general.journal,filter:0 +#: field:account.partner.balance,filter:0 +#: field:account.partner.ledger,filter:0 +#: field:account.print.journal,filter:0 +#: field:account.report.general.ledger,filter:0 +#: field:account.vat.declaration,filter:0 +#: field:accounting.report,filter:0 +#: field:accounting.report,filter_cmp:0 +msgid "Filter by" +msgstr "" + +#. module: account +#: code:addons/account/account.py:2334 +#, python-format +msgid "You have a wrong expression \"%(...)s\" in your model !" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Compute Code for Taxes Included Prices" +msgstr "" + +#. module: account +#: help:account.bank.statement,balance_end:0 +msgid "Balance as calculated based on Starting Balance and transaction lines" +msgstr "" + +#. module: account +#: field:account.journal,loss_account_id:0 +msgid "Loss Account" +msgstr "" + +#. module: account +#: field:account.tax,account_collected_id:0 +#: field:account.tax.template,account_collected_id:0 +msgid "Invoice Tax Account" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_general_journal +#: model:ir.model,name:account.model_account_general_journal +msgid "Account General Journal" +msgstr "" + +#. module: account +#: help:account.move,state:0 +msgid "" +"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." +msgstr "" + +#. module: account +#: field:account.payment.term.line,days:0 +msgid "Number of Days" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1357 +#, python-format +msgid "" +"You cannot validate this journal entry because account \"%s\" does not " +"belong to chart of accounts \"%s\"." +msgstr "" + +#. module: account +#: view:account.financial.report:0 +msgid "Report" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_tax_template +msgid "Template Tax Fiscal Position" +msgstr "" + +#. module: account +#: help:account.tax,name:0 +msgid "This name will be displayed on reports" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +msgid "Printing date" +msgstr "" + +#. module: account +#: selection:account.account.type,close_method:0 +#: selection:account.tax,type:0 +#: selection:account.tax.template,type:0 +msgid "None" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree3 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree3 +msgid "Customer Refunds" +msgstr "" + +#. module: account +#: field:account.account,foreign_balance:0 +msgid "Foreign Balance" +msgstr "" + +#. module: account +#: field:account.journal.period,name:0 +msgid "Journal-Period Name" +msgstr "" + +#. module: account +#: field:account.invoice.tax,factor_base:0 +msgid "Multipication factor for Base code" +msgstr "" + +#. module: account +#: help:account.journal,company_id:0 +msgid "Company related to this journal" +msgstr "" + +#. module: account +#: help:account.config.settings,group_multi_currency:0 +msgid "Allows you multi currency environment" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Running Subscription" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Fiscal Position Remark :" +msgstr "" + +#. module: account +#: view:analytic.entries.report:0 +#: model:ir.actions.act_window,name:account.action_analytic_entries_report +#: model:ir.ui.menu,name:account.menu_action_analytic_entries_report +msgid "Analytic Entries Analysis" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,direction_selection:0 +msgid "Past" +msgstr "" + +#. module: account +#: help:res.partner.bank,journal_id:0 +msgid "" +"This journal will be created automatically for this bank account when you " +"save the record" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Analytic Entry" +msgstr "" + +#. module: account +#: view:res.company:0 +#: field:res.company,overdue_msg:0 +msgid "Overdue Payments Message" +msgstr "" + +#. module: account +#: field:account.entries.report,date_created:0 +msgid "Date Created" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form +msgid "account.analytic.line.extended" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_supplierreconcilepaid0 +msgid "" +"As soon as the reconciliation is done, the invoice's state turns to “done” " +"(i.e. paid) in the system." +msgstr "" + +#. module: account +#: view:account.chart.template:0 +#: field:account.chart.template,account_root_id:0 +msgid "Root Account" +msgstr "" + +#. module: account +#: field:res.partner,last_reconciliation_date:0 +msgid "Latest Reconciliation Date" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: model:ir.model,name:account.model_account_analytic_line +msgid "Analytic Line" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_action_model_form +msgid "Models" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:1124 +#, python-format +msgid "" +"You cannot cancel an invoice which is partially paid. You need to " +"unreconcile related payment entries first." +msgstr "" + +#. module: account +#: field:product.template,taxes_id:0 +msgid "Customer Taxes" +msgstr "" + +#. module: account +#: help:account.model,name:0 +msgid "This is a model for recurring accounting entries" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,sale_tax_rate:0 +msgid "Sales Tax(%)" +msgstr "" + +#. module: account +#: view:account.tax.code:0 +msgid "Reporting Configuration" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_invoice_tree4 +msgid "" +"

\n" +" Click to register a refund you received from a supplier.\n" +"

\n" +" Instead of creating the supplier refund manually, you can " +"generate\n" +" refunds and reconcile them directly from the related " +"supplier invoice.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: field:account.tax,type:0 +#: field:account.tax.template,type:0 +msgid "Tax Type" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_template_form +#: model:ir.ui.menu,name:account.menu_action_account_template_form +msgid "Account Templates" +msgstr "" + +#. module: account +#: help:account.config.settings,complete_tax_set:0 +#: help:wizard.multi.charts.accounts,complete_tax_set:0 +msgid "" +"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" +msgstr "" + +#. module: account +#: report:account.vat.declaration:0 +msgid "Tax Statement" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_res_company +msgid "Companies" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Open and Paid Invoices" +msgstr "" + +#. module: account +#: selection:account.financial.report,display_detail:0 +msgid "Display children flat" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Bank & Cash" +msgstr "" + +#. module: account +#: help:account.fiscalyear.close.state,fy_id:0 +msgid "Select a fiscal year to close" +msgstr "" + +#. module: account +#: help:account.chart.template,tax_template_ids:0 +msgid "List of all the taxes that have to be installed by the wizard" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_intracom +msgid "IntraCom" +msgstr "" + +#. module: account +#: view:account.move.line.reconcile.writeoff:0 +msgid "Information addendum" +msgstr "" + +#. module: account +#: field:account.chart,fiscalyear:0 +#: view:account.fiscalyear:0 +msgid "Fiscal year" +msgstr "" + +#. module: account +#: view:account.move.reconcile:0 +msgid "Partial Reconcile Entries" +msgstr "" + +#. module: account +#: view:account.aged.trial.balance:0 +#: view:account.analytic.balance:0 +#: view:account.analytic.chart:0 +#: view:account.analytic.cost.ledger:0 +#: view:account.analytic.cost.ledger.journal.report:0 +#: view:account.analytic.inverted.balance:0 +#: view:account.analytic.journal.report:0 +#: view:account.automatic.reconcile:0 +#: view:account.change.currency:0 +#: view:account.chart:0 +#: view:account.common.report:0 +#: view:account.config.settings:0 +#: view:account.fiscalyear.close:0 +#: view:account.fiscalyear.close.state:0 +#: view:account.invoice.cancel:0 +#: view:account.invoice.confirm:0 +#: view:account.invoice.refund:0 +#: view:account.journal.select:0 +#: view:account.move.bank.reconcile:0 +#: view:account.move.line.reconcile:0 +#: view:account.move.line.reconcile.select:0 +#: view:account.move.line.reconcile.writeoff:0 +#: view:account.move.line.unreconcile.select:0 +#: view:account.period.close:0 +#: view:account.state.open:0 +#: view:account.subscription.generate:0 +#: view:account.tax.chart:0 +#: view:account.unreconcile:0 +#: view:account.use.model:0 +#: view:account.vat.declaration:0 +#: view:cash.box.in:0 +#: view:cash.box.out:0 +#: view:project.account.analytic.line:0 +#: view:validate.account.move:0 +#: view:validate.account.move.lines:0 +msgid "Cancel" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: model:account.account.type,name:account.data_account_type_receivable +#: selection:account.entries.report,type:0 +msgid "Receivable" +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +msgid "You cannot create journal items on closed account." +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:633 +#, python-format +msgid "Invoice line account's company and invoice's compnay does not match." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Other Info" +msgstr "" + +#. module: account +#: field:account.journal,default_credit_account_id:0 +msgid "Default Credit Account" +msgstr "" + +#. module: account +#: help:account.analytic.line,currency_id:0 +msgid "The related account currency if not equal to the company one." +msgstr "" + +#. module: account +#: code:addons/account/installer.py:69 +#, python-format +msgid "Custom" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Current" +msgstr "" + +#. module: account +#: field:account.journal,cashbox_line_ids:0 +msgid "CashBox" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_cash_equity +#: model:account.account.type,name:account.conf_account_type_equity +msgid "Equity" +msgstr "" + +#. module: account +#: field:account.journal,internal_account_id:0 +msgid "Internal Transfers Account" +msgstr "" + +#. module: account +#: code:addons/account/wizard/pos_box.py:32 +#, python-format +msgid "Please check that the field 'Journal' is set on the Bank Statement" +msgstr "" + +#. module: account +#: selection:account.tax,type:0 +msgid "Percentage" +msgstr "" + +#. module: account +#: selection:account.config.settings,tax_calculation_rounding_method:0 +msgid "Round globally" +msgstr "" + +#. module: account +#: selection:account.report.general.ledger,sortby:0 +msgid "Journal & Partner" +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,power:0 +msgid "Power" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3465 +#, python-format +msgid "Cannot generate an unused journal code." +msgstr "" + +#. module: account +#: view:project.account.analytic.line:0 +msgid "View Account Analytic Lines" +msgstr "" + +#. module: account +#: field:account.invoice,internal_number:0 +#: field:report.invoice.created,number:0 +msgid "Invoice Number" +msgstr "" + +#. module: account +#: field:account.bank.statement,difference:0 +msgid "Difference" +msgstr "" + +#. module: account +#: help:account.tax,include_base_amount:0 +msgid "" +"Indicates if the amount of tax must be included in the base amount for the " +"computation of the next taxes" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_partner_reconcile +msgid "Reconciliation: Go to Next Partner" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance +#: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance +msgid "Inverted Analytic Balance" +msgstr "" + +#. module: account +#: field:account.tax.template,applicable_type:0 +msgid "Applicable Type" +msgstr "" + +#. module: account +#: help:account.invoice,date_due:0 +msgid "" +"If you use payment terms, the due date will be computed automatically at the " +"generation of accounting entries. The payment term may compute several due " +"dates, for example 50% now and 50% in one month, but if you want to force a " +"due date, make sure that the payment term is not set on the invoice. If you " +"keep the payment term and the due date empty, it means direct payment." +msgstr "" + +#. module: account +#: code:addons/account/account.py:414 +#, python-format +msgid "" +"There is no opening/closing period defined, please create one to set the " +"initial balance." +msgstr "" + +#. module: account +#: help:account.tax.template,sequence:0 +msgid "" +"The sequence field is used to order the taxes lines from lower sequences to " +"higher ones. The order is important if you have a tax that has several tax " +"children. In this case, the evaluation order is important." +msgstr "" + +#. module: account +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 +#: code:addons/account/wizard/account_automatic_reconcile.py:148 +#: code:addons/account/wizard/account_fiscalyear_close.py:88 +#: code:addons/account/wizard/account_fiscalyear_close.py:99 +#: code:addons/account/wizard/account_fiscalyear_close.py:102 +#: code:addons/account/wizard/account_report_aged_partner_balance.py:56 +#: code:addons/account/wizard/account_report_aged_partner_balance.py:58 +#, python-format +msgid "User Error!" +msgstr "" + +#. module: account +#: view:account.open.closed.fiscalyear:0 +msgid "Discard" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: view:account.journal:0 +msgid "Liquidity" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form +#: model:ir.ui.menu,name:account.account_analytic_journal_entries +msgid "Analytic Journal Items" +msgstr "" + +#. module: account +#: field:account.config.settings,has_default_company:0 +msgid "Has default company" +msgstr "" + +#. module: account +#: view:account.fiscalyear.close:0 +msgid "" +"This wizard will generate the end of year journal entries of selected fiscal " +"year. Note that you can run this wizard many times for the same fiscal year: " +"it will simply replace the old opening entries with the new ones." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_bank_and_cash +msgid "Bank and Cash" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_analytic_entries_report +msgid "" +"From this view, have an analysis of your different analytic entries " +"following the analytic account you defined matching your business need. Use " +"the tool search to analyse information about analytic entries generated in " +"the system." +msgstr "" + +#. module: account +#: sql_constraint:account.journal:0 +msgid "The name of the journal must be unique per company !" +msgstr "" + +#. module: account +#: field:account.account.template,nocreate:0 +msgid "Optional create" +msgstr "" + +#. module: account +#: code:addons/account/account.py:686 +#, python-format +msgid "" +"You cannot change the owner company of an account that already contains " +"journal items." +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: selection:account.invoice,type:0 +#: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 +#: selection:report.invoice.created,type:0 +#, python-format +msgid "Supplier Refund" +msgstr "" + +#. module: account +#: field:account.bank.statement,move_line_ids:0 +msgid "Entry lines" +msgstr "" + +#. module: account +#: field:account.move.line,centralisation:0 +msgid "Centralisation" +msgstr "" + +#. module: account +#: view:account.account:0 +#: view:account.account.template:0 +#: view:account.analytic.account:0 +#: view:account.analytic.journal:0 +#: view:account.analytic.line:0 +#: view:account.bank.statement:0 +#: view:account.chart.template:0 +#: view:account.entries.report:0 +#: view:account.financial.report:0 +#: view:account.fiscalyear:0 +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: view:account.journal:0 +#: view:account.model:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: view:account.subscription:0 +#: view:account.tax.code.template:0 +#: view:analytic.entries.report:0 +msgid "Group By..." +msgstr "" + +#. module: account +#: code:addons/account/account.py:1024 +#, python-format +msgid "" +"There is no period defined for this date: %s.\n" +"Please create one." +msgstr "" + +#. module: account +#: field:account.analytic.line,product_uom_id:0 +#: field:account.invoice.line,uos_id:0 +#: field:account.move.line,product_uom_id:0 +msgid "Unit of Measure" +msgstr "" + +#. module: account +#: help:account.journal,group_invoice_lines:0 +msgid "" +"If this box is checked, the system will try to group the accounting lines " +"when generating them from invoices." +msgstr "" + +#. module: account +#: field:account.installer,has_default_company:0 +msgid "Has Default Company" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_sequence_fiscalyear +msgid "account.sequence.fiscalyear" +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +#: view:account.analytic.journal:0 +#: field:account.analytic.line,journal_id:0 +#: field:account.journal,analytic_journal_id:0 +#: model:ir.actions.act_window,name:account.action_account_analytic_journal +#: model:ir.actions.report.xml,name:account.analytic_journal_print +#: model:ir.model,name:account.model_account_analytic_journal +#: model:ir.ui.menu,name:account.account_analytic_journal_print +msgid "Analytic Journal" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Reconciled" +msgstr "" + +#. module: account +#: constraint:account.payment.term.line:0 +msgid "" +"Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " +"2%." +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: field:account.invoice.tax,base:0 +msgid "Base" +msgstr "" + +#. module: account +#: field:account.model,name:0 +msgid "Model Name" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_expense_categ:0 +msgid "Expense Category Account" +msgstr "" + +#. module: account +#: sql_constraint:account.tax:0 +msgid "Tax Name must be unique per company!" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Cash Transactions" +msgstr "" + +#. module: account +#: view:account.unreconcile:0 +msgid "" +"If you unreconcile transactions, you must also verify all the actions that " +"are linked to those transactions because they will not be disabled" +msgstr "" + +#. module: account +#: view:account.account.template:0 +#: view:account.bank.statement:0 +#: field:account.bank.statement.line,note:0 +#: view:account.fiscal.position:0 +#: field:account.fiscal.position,note:0 +#: field:account.fiscal.position.template,note:0 +msgid "Notes" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_analytic_entries_report +msgid "Analytic Entries Statistics" +msgstr "" + +#. module: account +#: code:addons/account/account_analytic_line.py:142 +#: code:addons/account/account_move_line.py:955 +#, python-format +msgid "Entries: " +msgstr "" + +#. module: account +#: help:res.partner.bank,currency_id:0 +msgid "Currency of the related account journal." +msgstr "" + +#. module: account +#: constraint:account.move.line:0 +msgid "" +"You cannot provide a secondary currency if it is the same than the company " +"one." +msgstr "" + +#. module: account +#: selection:account.tax.template,applicable_type:0 +msgid "True" +msgstr "" + +#. module: account +#: selection:account.account.type,report_type:0 +#: code:addons/account/account.py:190 +#, python-format +msgid "Balance Sheet (Asset account)" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_draftstatement0 +msgid "State is draft" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Total debit" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Next Partner Entries to reconcile" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Fax :" +msgstr "" + +#. module: account +#: help:res.partner,property_account_receivable:0 +msgid "" +"This account will be used instead of the default one as the receivable " +"account for the current partner" +msgstr "" + +#. module: account +#: field:account.tax,python_applicable:0 +#: field:account.tax,python_compute:0 +#: selection:account.tax,type:0 +#: selection:account.tax.template,applicable_type:0 +#: field:account.tax.template,python_applicable:0 +#: field:account.tax.template,python_compute:0 +#: selection:account.tax.template,type:0 +msgid "Python Code" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Journal Entries with period in current period" +msgstr "" + +#. module: account +#: help:account.journal,update_posted:0 +msgid "" +"Check this box if you want to allow the cancellation the entries related to " +"this journal or of the invoice related to this journal" +msgstr "" + +#. module: account +#: view:account.fiscalyear.close:0 +msgid "Create" +msgstr "" + +#. module: account +#: model:process.transition.action,name:account.process_transition_action_createentries0 +msgid "Create entry" +msgstr "" + +#. module: account +#: selection:account.account.type,report_type:0 +#: code:addons/account/account.py:189 +#, python-format +msgid "Profit & Loss (Expense account)" +msgstr "" + +#. module: account +#: field:account.bank.statement,total_entry_encoding:0 +msgid "Total Transactions" +msgstr "" + +#. module: account +#: code:addons/account/account.py:636 +#, python-format +msgid "You cannot remove an account that contains journal items." +msgstr "" + +#. module: account +#: code:addons/account/account.py:1024 +#: code:addons/account/account_move_line.py:1105 +#, python-format +msgid "Error !" +msgstr "" + +#. module: account +#: field:account.financial.report,style_overwrite:0 +msgid "Financial Report Style" +msgstr "" + +#. module: account +#: selection:account.financial.report,sign:0 +msgid "Preserve balance sign" +msgstr "" + +#. module: account +#: view:account.vat.declaration:0 +#: model:ir.actions.report.xml,name:account.account_vat_declaration +#: model:ir.ui.menu,name:account.menu_account_vat_declaration +msgid "Taxes Report" +msgstr "" + +#. module: account +#: selection:account.journal.period,state:0 +msgid "Printed" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Project line" +msgstr "" + +#. module: account +#: field:account.invoice.tax,manual:0 +msgid "Manual" +msgstr "" + +#. module: account +#: selection:account.invoice.refund,filter_refund:0 +msgid "Cancel: create refund and reconcile" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_report_aged_partner_balance.py:58 +#, python-format +msgid "You must set a start date." +msgstr "" + +#. module: account +#: view:account.automatic.reconcile:0 +msgid "" +"For an invoice to be considered as paid, the invoice entries must be " +"reconciled with counterparts, usually payments. With the automatic " +"reconciliation functionality, OpenERP makes its own search for entries to " +"reconcile in a series of accounts. It finds entries for each partner where " +"the amounts correspond." +msgstr "" + +#. module: account +#: view:account.move:0 +#: field:account.move,to_check:0 +msgid "To Review" +msgstr "" + +#. module: account +#: help:account.partner.ledger,initial_balance:0 +#: help:account.report.general.ledger,initial_balance:0 +msgid "" +"If you selected to filter by date or period, this field allow you to add a " +"row to display the amount of debit/credit/balance that precedes the filter " +"you've set." +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: view:account.move:0 +#: model:ir.actions.act_window,name:account.action_move_journal_line +#: model:ir.ui.menu,name:account.menu_action_move_journal_line_form +#: model:ir.ui.menu,name:account.menu_finance_entries +msgid "Journal Entries" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_invoice_refund.py:147 +#, python-format +msgid "No period found on the invoice." +msgstr "" + +#. module: account +#: help:account.partner.ledger,page_split:0 +msgid "Display Ledger Report with One partner per page" +msgstr "" + +#. module: account +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +msgid "JRNL" +msgstr "" + +#. module: account +#: view:account.state.open:0 +msgid "Yes" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,target_move:0 +#: selection:account.balance.report,target_move:0 +#: selection:account.central.journal,target_move:0 +#: selection:account.chart,target_move:0 +#: selection:account.common.account.report,target_move:0 +#: selection:account.common.journal.report,target_move:0 +#: selection:account.common.partner.report,target_move:0 +#: selection:account.common.report,target_move:0 +#: selection:account.general.journal,target_move:0 +#: selection:account.partner.balance,target_move:0 +#: selection:account.partner.ledger,target_move:0 +#: selection:account.print.journal,target_move:0 +#: selection:account.report.general.ledger,target_move:0 +#: selection:account.tax.chart,target_move:0 +#: selection:account.vat.declaration,target_move:0 +#: selection:accounting.report,target_move:0 +#: code:addons/account/report/common_report_header.py:67 +#, python-format +msgid "All Entries" +msgstr "" + +#. module: account +#: constraint:account.move.reconcile:0 +msgid "You can only reconcile journal items with the same partner." +msgstr "" + +#. module: account +#: view:account.journal.select:0 +msgid "Journal Select" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: code:addons/account/account.py:422 +#: code:addons/account/account.py:434 +#, python-format +msgid "Opening Balance" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_move_reconcile +msgid "Account Reconciliation" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_tax +msgid "Taxes Fiscal Position" +msgstr "" + +#. module: account +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: model:ir.actions.act_window,name:account.action_account_general_ledger_menu +#: model:ir.actions.report.xml,name:account.account_general_ledger +#: model:ir.actions.report.xml,name:account.account_general_ledger_landscape +#: model:ir.ui.menu,name:account.menu_general_ledger +msgid "General Ledger" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_paymentorderbank0 +msgid "The payment order is sent to the bank." +msgstr "" + +#. module: account +#: help:account.move,to_check:0 +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 +#: field:account.chart.template,complete_tax_set:0 +#: field:wizard.multi.charts.accounts,complete_tax_set:0 +msgid "Complete Set of Taxes" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_validate_account_move.py:61 +#, python-format +msgid "" +"Selected Entry Lines does not have any account move enties in draft state." +msgstr "" + +#. module: account +#: view:account.chart.template:0 +msgid "Properties" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_tax_chart +msgid "Account tax chart" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +#: report:account.central.journal:0 +#: report:account.general.journal:0 +#: report:account.invoice:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: report:account.partner.balance:0 +msgid "Total:" +msgstr "" + +#. module: account +#: constraint:account.journal:0 +msgid "" +"Configuration error!\n" +"The currency chosen should be shared by the default accounts too." +msgstr "" + +#. module: account +#: code:addons/account/account.py:2304 +#, python-format +msgid "" +"You can specify year, month and date in the name of the model using the " +"following labels:\n" +"\n" +"%(year)s: To Specify Year \n" +"%(month)s: To Specify Month \n" +"%(date)s: Current Date\n" +"\n" +"e.g. My model on %(date)s" +msgstr "" + +#. module: account +#: field:account.invoice,paypal_url:0 +msgid "Paypal Url" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_voucher:0 +msgid "Manage customer payments" +msgstr "" + +#. module: account +#: help:report.invoice.created,origin:0 +msgid "Reference of the document that generated this invoice report." +msgstr "" + +#. module: account +#: field:account.tax.code,child_ids:0 +#: field:account.tax.code.template,child_ids:0 +msgid "Child Codes" +msgstr "" + +#. module: account +#: constraint:account.fiscalyear:0 +msgid "" +"Error!\n" +"The start date of a fiscal year must precede its end date." +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Taxes used in Sales" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree1 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree1 +msgid "Customer Invoices" +msgstr "" + +#. module: account +#: view:account.tax:0 +msgid "Misc" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Sales" +msgstr "" + +#. module: account +#: selection:account.invoice.report,state:0 +#: selection:account.journal.period,state:0 +#: selection:account.subscription,state:0 +#: selection:report.invoice.created,state:0 +msgid "Done" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1319 +#, python-format +msgid "" +"You cannot validate a non-balanced entry.\n" +"Make sure you have configured payment terms properly.\n" +"The latest payment term line should be of the \"Balance\" type." +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_invoicemanually0 +msgid "A statement with manual entries becomes a draft statement." +msgstr "" + +#. module: account +#: view:account.aged.trial.balance:0 +msgid "" +"Aged Partner Balance is a more detailed report of your receivables by " +"intervals. When opening that report, OpenERP asks for the name of the " +"company, the fiscal period and the size of the interval to be analyzed (in " +"days). OpenERP then calculates a table of credit balance by period. So if " +"you request an interval of 30 days OpenERP generates an analysis of " +"creditors for the past month, past two months, and so on. " +msgstr "" + +#. module: account +#: field:account.invoice,origin:0 +#: field:account.invoice.line,origin:0 +#: field:report.invoice.created,origin:0 +msgid "Source Document" +msgstr "" + +#. module: account +#: help:account.config.settings,company_footer:0 +msgid "Bank accounts as printed in the footer of each printed document" +msgstr "" + +#. module: account +#: constraint:account.account:0 +msgid "" +"Configuration Error!\n" +"You cannot define children to an account with internal type different of " +"\"View\"." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_accounting_report +msgid "Accounting Report" +msgstr "" + +#. module: account +#: field:account.analytic.line,currency_id:0 +msgid "Account Currency" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Taxes:" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:458 +#, python-format +msgid "" +"You can not delete an invoice which is not cancelled. You should refund it " +"instead." +msgstr "" + +#. module: account +#: help:account.tax,amount:0 +msgid "For taxes of type percentage, enter % ratio between 0-1." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy +msgid "Financial Reports Hierarchy" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation +msgid "Monthly Turnover" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Analytic Lines" +msgstr "" + +#. module: account +#: field:account.analytic.journal,line_ids:0 +#: field:account.tax.code,line_ids:0 +msgid "Lines" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Account Tax Template" +msgstr "" + +#. module: account +#: view:account.journal.select:0 +msgid "Are you sure you want to open Journal Entries?" +msgstr "" + +#. module: account +#: view:account.state.open:0 +msgid "Are you sure you want to open this invoice ?" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_expense_opening:0 +msgid "Opening Entries Expense Account" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Customer Reference" +msgstr "" + +#. module: account +#: field:account.account.template,parent_id:0 +msgid "Parent Account Template" +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Price" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement,closing_details_ids:0 +msgid "Closing Cashbox Lines" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: field:account.bank.statement.line,statement_id:0 +#: field:account.move.line,statement_id:0 +#: model:process.process,name:account.process_process_statementprocess0 +msgid "Statement" +msgstr "" + +#. module: account +#: help:account.journal,default_debit_account_id:0 +msgid "It acts as a default account for debit amount" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Posted entries" +msgstr "" + +#. module: account +#: help:account.payment.term.line,value_amount:0 +msgid "For percent enter a ratio between 0-1." +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +#: field:account.invoice,date_invoice:0 +#: field:report.invoice.created,date_invoice:0 +msgid "Invoice Date" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Group by year of Invoice Date" +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_tax_rate:0 +msgid "Purchase tax (%)" +msgstr "" + +#. module: account +#: help:res.partner,credit:0 +msgid "Total amount this customer owes you." +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Unbalanced Journal Items" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.open_account_charts_modules +msgid "Chart Templates" +msgstr "" + +#. module: account +#: field:account.journal.period,icon:0 +msgid "Icon" +msgstr "" + +#. module: account +#: view:account.use.model:0 +msgid "Ok" +msgstr "" + +#. module: account +#: field:account.chart.template,tax_code_root_id:0 +msgid "Root Tax Code" +msgstr "" + +#. module: account +#: help:account.journal,centralisation:0 +msgid "" +"Check this box to determine that each entry of this journal won't create a " +"new counterpart but will share the same counterpart. This is used in fiscal " +"year closing." +msgstr "" + +#. module: account +#: field:account.bank.statement,closing_date:0 +msgid "Closed On" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,purchase_tax:0 +msgid "Default Purchase Tax" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_income_opening:0 +msgid "Opening Entries Income Account" +msgstr "" + +#. module: account +#: field:account.config.settings,group_proforma_invoices:0 +msgid "Allow pro-forma invoices" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Confirm" +msgstr "" + +#. module: account +#: help:account.tax,domain:0 +#: help:account.tax.template,domain:0 +msgid "" +"This field is only used if you develop your own module allowing developers " +"to create specific taxes in a custom domain." +msgstr "" + +#. module: account +#: field:account.invoice,reference:0 +#: field:account.invoice.line,invoice_id:0 +msgid "Invoice Reference" +msgstr "" + +#. module: account +#: field:account.fiscalyear.close,report_name:0 +msgid "Name of new entries" +msgstr "" + +#. module: account +#: view:account.use.model:0 +msgid "Create Entries" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_cash_box_out +msgid "cash.box.out" +msgstr "" + +#. module: account +#: help:account.config.settings,currency_id:0 +msgid "Main currency of the company." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_reports +msgid "Reporting" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/account_move_line.py:780 +#: code:addons/account/static/src/js/account_move_reconciliation.js:90 +#, python-format +msgid "Warning" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_analytic_open +msgid "Contracts/Analytic Accounts" +msgstr "" + +#. module: account +#: view:account.journal:0 +#: field:res.partner.bank,journal_id:0 +msgid "Account Journal" +msgstr "" + +#. module: account +#: field:account.config.settings,tax_calculation_rounding_method:0 +msgid "Tax calculation rounding method" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_paidinvoice0 +#: model:process.node,name:account.process_node_supplierpaidinvoice0 +msgid "Paid invoice" +msgstr "" + +#. module: account +#: view:account.invoice.refund:0 +msgid "" +"Use this option if you want to cancel an invoice you should not\n" +" have issued. The credit note will be " +"created, validated and reconciled\n" +" with the invoice. You will not be able " +"to modify the credit note." +msgstr "" + +#. module: account +#: help:account.partner.reconcile.process,next_partner_id:0 +msgid "" +"This field shows you the next partner that will be automatically chosen by " +"the system to go through the reconciliation process, based on the latest day " +"it have been reconciled." +msgstr "" + +#. module: account +#: field:account.move.line.reconcile.writeoff,comment:0 +msgid "Comment" +msgstr "" + +#. module: account +#: field:account.tax,domain:0 +#: field:account.tax.template,domain:0 +msgid "Domain" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_use_model +msgid "Use model" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1490 +#, python-format +msgid "" +"There is no default credit account defined \n" +"on journal \"%s\"." +msgstr "" + +#. module: account +#: view:account.invoice.line:0 +#: field:account.invoice.tax,invoice_id:0 +#: model:ir.model,name:account.model_account_invoice_line +msgid "Invoice Line" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Customer And Supplier Refunds" +msgstr "" + +#. module: account +#: field:account.financial.report,sign:0 +msgid "Sign on Reports" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_analytic_account_tree2 +msgid "" +"

\n" +" Click to add a new analytic account.\n" +"

\n" +" The normal chart of accounts has a structure defined by the\n" +" legal requirement of the country. The analytic chart of\n" +" accounts structure should reflect your own business needs " +"in\n" +" term of costs/revenues reporting.\n" +"

\n" +" They are usually structured by contracts, projects, products " +"or\n" +" departements. Most of the OpenERP operations (invoices,\n" +" timesheets, expenses, etc) generate analytic entries on the\n" +" related account.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_view +msgid "Root/View" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3206 +#, python-format +msgid "OPEJ" +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +msgid "PRO-FORMA" +msgstr "" + +#. module: account +#: selection:account.entries.report,move_line_state:0 +#: view:account.move.line:0 +#: selection:account.move.line,state:0 +msgid "Unbalanced" +msgstr "" + +#. module: account +#: selection:account.move.line,centralisation:0 +msgid "Normal" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_email_templates +#: model:ir.ui.menu,name:account.menu_email_templates +msgid "Email Templates" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Optional Information" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: field:account.bank.statement,user_id:0 +#: view:account.journal:0 +#: field:account.journal,user_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,user_id:0 +msgid "User" +msgstr "" + +#. module: account +#: selection:account.account,currency_mode:0 +msgid "At Date" +msgstr "" + +#. module: account +#: help:account.move.line,date_maturity:0 +msgid "" +"This field is used for payable and receivable journal entries. You can put " +"the limit date for the payment of this line." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_multi_currency +msgid "Multi-Currencies" +msgstr "" + +#. module: account +#: field:account.model.line,date_maturity:0 +msgid "Maturity Date" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3193 +#, python-format +msgid "Sales Journal" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_invoice_tax +msgid "Invoice Tax" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1185 +#, python-format +msgid "No piece number !" +msgstr "" + +#. module: account +#: view:account.financial.report:0 +#: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy +msgid "Account Reports Hierarchy" +msgstr "" + +#. module: account +#: help:account.account.template,chart_template_id:0 +msgid "" +"This optional field allow you to link an account template to a specific " +"chart template that may differ from the one its root parent belongs to. This " +"allow you to define chart templates that extend another and complete it with " +"few new accounts (You don't need to define the whole structure that is " +"common to both several times)." +msgstr "" + +#. module: account +#: view:account.move:0 +msgid "Unposted Journal Entries" +msgstr "" + +#. module: account +#: help:account.invoice.refund,date:0 +msgid "" +"This date will be used as the invoice date for credit note and period will " +"be chosen accordingly!" +msgstr "" + +#. module: account +#: view:product.template:0 +msgid "Sales Properties" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3541 +#, python-format +msgid "" +"You have to set a code for the bank account defined on the selected chart of " +"accounts." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_manual_reconcile +msgid "Manual Reconciliation" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Total amount due:" +msgstr "" + +#. module: account +#: field:account.analytic.chart,to_date:0 +#: field:project.account.analytic.line,to_date:0 +msgid "To" +msgstr "" + +#. module: account +#: selection:account.move.line,centralisation:0 +#: code:addons/account/account.py:1541 +#, python-format +msgid "Currency Adjustment" +msgstr "" + +#. module: account +#: field:account.fiscalyear.close,fy_id:0 +msgid "Fiscal Year to close" +msgstr "" + +#. module: account +#: view:account.invoice.cancel:0 +#: model:ir.actions.act_window,name:account.action_account_invoice_cancel +msgid "Cancel Selected Invoices" +msgstr "" + +#. module: account +#: help:account.account.type,report_type:0 +msgid "" +"This field is used to generate legal reports: profit and loss, balance sheet." +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "May" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:820 +#, python-format +msgid "Global taxes defined, but they are not in invoice lines !" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_chart_template +msgid "Templates for Account Chart" +msgstr "" + +#. module: account +#: help:account.model.line,sequence:0 +msgid "" +"The sequence field is used to order the resources from lower sequences to " +"higher ones." +msgstr "" + +#. module: account +#: field:account.move.line,amount_residual_currency:0 +msgid "Residual Amount in Currency" +msgstr "" + +#. module: account +#: field:account.config.settings,sale_refund_sequence_prefix:0 +msgid "Credit note sequence" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_validate_account_move +#: model:ir.actions.act_window,name:account.action_validate_account_move_line +#: model:ir.ui.menu,name:account.menu_validate_account_moves +#: view:validate.account.move:0 +#: view:validate.account.move.lines:0 +msgid "Post Journal Entries" +msgstr "" + +#. module: account +#: selection:account.bank.statement.line,type:0 +#: view:account.config.settings:0 +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:388 +#, python-format +msgid "Customer" +msgstr "" + +#. module: account +#: field:account.financial.report,name:0 +msgid "Report Name" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_cash +#: selection:account.analytic.journal,type:0 +#: selection:account.bank.accounts.wizard,account_type:0 +#: selection:account.entries.report,type:0 +#: selection:account.journal,type:0 +#: code:addons/account/account.py:3092 +#, python-format +msgid "Cash" +msgstr "" + +#. module: account +#: field:account.fiscal.position.account,account_dest_id:0 +#: field:account.fiscal.position.account.template,account_dest_id:0 +msgid "Account Destination" +msgstr "" + +#. module: account +#: help:account.invoice.refund,filter_refund:0 +msgid "" +"Refund base on this type. You can not Modify and Cancel if the invoice is " +"already reconciled" +msgstr "" + +#. module: account +#: field:account.bank.statement.line,sequence:0 +#: field:account.financial.report,sequence:0 +#: field:account.invoice.line,sequence:0 +#: field:account.invoice.tax,sequence:0 +#: field:account.model.line,sequence:0 +#: field:account.sequence.fiscalyear,sequence_id:0 +#: field:account.tax,sequence:0 +#: field:account.tax.code,sequence:0 +#: field:account.tax.template,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: account +#: field:account.config.settings,paypal_account:0 +msgid "Paypal account" +msgstr "" + +#. module: account +#: selection:account.print.journal,sort_selection:0 +msgid "Journal Entry Number" +msgstr "" + +#. module: account +#: view:account.financial.report:0 +msgid "Parent Report" +msgstr "" + +#. module: account +#: constraint:account.account:0 +#: constraint:account.tax.code:0 +msgid "" +"Error!\n" +"You cannot create recursive accounts." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_cash_box_in +msgid "cash.box.in" +msgstr "" + +#. module: account +#: help:account.invoice,move_id:0 +msgid "Link to the automatically generated Journal Items." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_config_settings +msgid "account.config.settings" +msgstr "" + +#. module: account +#: selection:account.config.settings,period:0 +#: selection:account.installer,period:0 +msgid "Monthly" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_asset +msgid "Asset" +msgstr "" + +#. module: account +#: field:account.bank.statement,balance_end:0 +msgid "Computed Balance" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/js/account_move_reconciliation.js:89 +#, python-format +msgid "You must choose at least one record." +msgstr "" + +#. module: account +#: field:account.account,parent_id:0 +#: field:account.financial.report,parent_id:0 +msgid "Parent" +msgstr "" + +#. module: account +#: code:addons/account/account_cash_statement.py:292 +#, python-format +msgid "Profit" +msgstr "" + +#. module: account +#: help:account.payment.term.line,days2:0 +msgid "" +"Day of the month, set -1 for the last day of the current month. If it's " +"positive, it gives the day of the next month. Set 0 for net days (otherwise " +"it's based on the beginning of the month)." +msgstr "" + +#. module: account +#: view:account.move.line.reconcile:0 +msgid "Reconciliation Transactions" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_legal_statement +msgid "Legal Reports" +msgstr "" + +#. module: account +#: field:account.tax.code,sum_period:0 +msgid "Period Sum" +msgstr "" + +#. module: account +#: help:account.tax,sequence:0 +msgid "" +"The sequence field is used to order the tax lines from the lowest sequences " +"to the higher ones. The order is important if you have a tax with several " +"tax children. In this case, the evaluation order is important." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_cashbox_line +msgid "CashBox Line" +msgstr "" + +#. module: account +#: field:account.installer,charts:0 +msgid "Accounting Package" +msgstr "" + +#. module: account +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: model:ir.actions.act_window,name:account.action_account_partner_ledger +#: model:ir.actions.report.xml,name:account.account_3rdparty_ledger +#: model:ir.actions.report.xml,name:account.account_3rdparty_ledger_other +#: model:ir.ui.menu,name:account.menu_account_partner_ledger +msgid "Partner Ledger" +msgstr "" + +#. module: account +#: selection:account.tax.template,type:0 +msgid "Fixed" +msgstr "" + +#. module: account +#: code:addons/account/account.py:653 +#: code:addons/account/account.py:656 +#: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: account +#: help:account.bank.statement,message_unread:0 +#: help:account.invoice,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: account +#: field:res.company,tax_calculation_rounding_method:0 +msgid "Tax Calculation Rounding Method" +msgstr "" + +#. module: account +#: field:account.entries.report,move_line_state:0 +msgid "State of Move Line" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_move_line_reconcile +msgid "Account move line reconcile" +msgstr "" + +#. module: account +#: view:account.subscription.generate:0 +#: model:ir.model,name:account.model_account_subscription_generate +msgid "Subscription Compute" +msgstr "" + +#. module: account +#: view:account.move.line.unreconcile.select:0 +msgid "Open for Unreconciliation" +msgstr "" + +#. module: account +#: field:account.bank.statement.line,partner_id:0 +#: view:account.entries.report:0 +#: field:account.entries.report,partner_id:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: view:account.invoice:0 +#: field:account.invoice,partner_id:0 +#: field:account.invoice.line,partner_id:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,partner_id:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.model.line,partner_id:0 +#: view:account.move:0 +#: field:account.move,partner_id:0 +#: view:account.move.line:0 +#: field:account.move.line,partner_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,partner_id:0 +#: model:ir.model,name:account.model_res_partner +#: field:report.invoice.created,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: account +#: help:account.change.currency,currency_id:0 +msgid "Select a currency to apply on the invoice" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:901 +#, python-format +msgid "No Invoice Lines !" +msgstr "" + +#. module: account +#: view:account.financial.report:0 +msgid "Report Type" +msgstr "" + +#. module: account +#: help:account.open.closed.fiscalyear,fyear_id:0 +msgid "" +"Select Fiscal Year which you want to remove entries for its End of year " +"entries journal" +msgstr "" + +#. module: account +#: field:account.tax.template,type_tax_use:0 +msgid "Tax Use In" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:382 +#, python-format +msgid "" +"The statement balance is incorrect !\n" +"The expected balance (%.2f) is different than the computed one. (%.2f)" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:420 +#, python-format +msgid "The account entries lines are not in valid state." +msgstr "" + +#. module: account +#: field:account.account.type,close_method:0 +msgid "Deferral Method" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_electronicfile0 +msgid "Automatic entry" +msgstr "" + +#. module: account +#: help:account.account,reconcile:0 +msgid "" +"Check this box if this account allows reconciliation of journal items." +msgstr "" + +#. module: account +#: report:account.analytic.account.inverted.balance:0 +msgid "Inverted Analytic Balance -" +msgstr "" + +#. module: account +#: help:account.move.reconcile,opening_reconciliation:0 +msgid "" +"Is this reconciliation produced by the opening of a new fiscal year ?." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: model:ir.actions.act_window,name:account.action_account_analytic_line_form +msgid "Analytic Entries" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Associated Partner" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:1465 +#, python-format +msgid "You must first select a partner !" +msgstr "" + +#. module: account +#: field:account.invoice,comment:0 +msgid "Additional Information" +msgstr "" + +#. module: account +#: field:account.invoice.report,residual:0 +#: field:account.invoice.report,user_currency_residual:0 +msgid "Total Residual" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Opening Cash Control" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_invoiceinvoice0 +#: model:process.node,note:account.process_node_supplierinvoiceinvoice0 +msgid "Invoice's state is Open" +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +#: view:account.bank.statement:0 +#: field:account.bank.statement,state:0 +#: field:account.entries.report,move_state:0 +#: view:account.fiscalyear:0 +#: field:account.fiscalyear,state:0 +#: view:account.invoice:0 +#: field:account.invoice,state:0 +#: view:account.invoice.report:0 +#: field:account.journal.period,state:0 +#: field:account.move,state:0 +#: view:account.move.line:0 +#: field:account.move.line,state:0 +#: field:account.period,state:0 +#: view:account.subscription:0 +#: field:account.subscription,state:0 +#: field:report.invoice.created,state:0 +msgid "Status" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +#: model:ir.actions.act_window,name:account.action_account_analytic_cost +#: model:ir.actions.report.xml,name:account.account_analytic_account_cost_ledger +msgid "Cost Ledger" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "No Fiscal Year Defined for This Company" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Proforma" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +msgid "J.C. /Move name" +msgstr "" + +#. module: account +#: help:account.tax.template,include_base_amount:0 +msgid "" +"Set if the amount of tax must be included in the base amount before " +"computing the next taxes." +msgstr "" + +#. module: account +#: code:addons/account/account.py:3196 +#, python-format +msgid "Purchase Refund Journal" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1333 +#, python-format +msgid "Please define a sequence on the journal." +msgstr "" + +#. module: account +#: help:account.tax.template,amount:0 +msgid "For Tax Type percent enter % ratio between 0-1." +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Current Accounts" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Group by Invoice Date" +msgstr "" + +#. module: account +#: help:account.journal,user_id:0 +msgid "The user responsible for this journal" +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_followup:0 +msgid "" +"This allows to automate letters for unpaid invoices, with multi-level " +"recalls.\n" +" This installs the module account_followup." +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,period_id:0 +#: view:account.bank.statement:0 +#: field:account.bank.statement,period_id:0 +#: view:account.entries.report:0 +#: field:account.entries.report,period_id:0 +#: view:account.fiscalyear:0 +#: report:account.general.ledger_landscape:0 +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: field:account.journal.period,period_id:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: view:account.move:0 +#: field:account.move,period_id:0 +#: view:account.move.line:0 +#: field:account.move.line,period_id:0 +#: view:account.period:0 +#: field:account.subscription,period_nbr:0 +#: field:account.tax.chart,period_id:0 +#: field:account.treasury.report,period_id:0 +#: field:validate.account.move,period_id:0 +msgid "Period" +msgstr "" + +#. module: account +#: help:account.account,adjusted_balance:0 +msgid "" +"Total amount (in Company currency) for transactions held in secondary " +"currency for this account." +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Net Total:" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_report_common.py:158 +#, python-format +msgid "Select a starting and an ending period." +msgstr "" + +#. module: account +#: field:account.config.settings,sale_sequence_next:0 +msgid "Next invoice number" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_generic_reporting +msgid "Generic Reporting" +msgstr "" + +#. module: account +#: field:account.move.line.reconcile.writeoff,journal_id:0 +msgid "Write-Off Journal" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_income_categ:0 +msgid "Income Category Account" +msgstr "" + +#. module: account +#: field:account.account,adjusted_balance:0 +msgid "Adjusted Balance" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form +#: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form_template +msgid "Fiscal Position Templates" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +msgid "Int.Type" +msgstr "" + +#. module: account +#: field:account.move.line,tax_amount:0 +msgid "Tax/Base Amount" +msgstr "" + +#. module: account +#: view:account.open.closed.fiscalyear:0 +msgid "" +"This wizard will remove the end of year journal entries of selected fiscal " +"year. Note that you can run this wizard many times for the same fiscal year." +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Tel. :" +msgstr "" + +#. module: account +#: field:account.account,company_currency_id:0 +msgid "Company Currency" +msgstr "" + +#. module: account +#: field:account.aged.trial.balance,chart_account_id:0 +#: field:account.balance.report,chart_account_id:0 +#: field:account.central.journal,chart_account_id:0 +#: field:account.common.account.report,chart_account_id:0 +#: field:account.common.journal.report,chart_account_id:0 +#: field:account.common.partner.report,chart_account_id:0 +#: field:account.common.report,chart_account_id:0 +#: view:account.config.settings:0 +#: field:account.general.journal,chart_account_id:0 +#: field:account.partner.balance,chart_account_id:0 +#: field:account.partner.ledger,chart_account_id:0 +#: field:account.print.journal,chart_account_id:0 +#: field:account.report.general.ledger,chart_account_id:0 +#: field:account.vat.declaration,chart_account_id:0 +#: field:accounting.report,chart_account_id:0 +msgid "Chart of Account" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_paymententries0 +#: model:process.transition,name:account.process_transition_reconcilepaid0 +msgid "Payment" +msgstr "" + +#. module: account +#: view:account.automatic.reconcile:0 +msgid "Reconciliation Result" +msgstr "" + +#. module: account +#: field:account.bank.statement,balance_end_real:0 +#: field:account.treasury.report,ending_balance:0 +msgid "Ending Balance" +msgstr "" + +#. module: account +#: field:account.journal,centralisation:0 +msgid "Centralized Counterpart" +msgstr "" + +#. module: account +#: help:account.move.line,blocked:0 +msgid "" +"You can check this box to mark this journal item as a litigation with the " +"associated partner" +msgstr "" + +#. module: account +#: field:account.move.line,reconcile_partial_id:0 +#: view:account.move.line.reconcile:0 +msgid "Partial Reconcile" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_inverted_balance +msgid "Account Analytic Inverted Balance" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_common_report +msgid "Account Common Report" +msgstr "" + +#. module: account +#: view:account.invoice.refund:0 +msgid "" +"Use this option if you want to cancel an invoice and create a new\n" +" one. The credit note will be created, " +"validated and reconciled\n" +" with the current invoice. A new, draft, " +"invoice will be created \n" +" so that you can edit it." +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_filestatement0 +msgid "Automatic import of the bank sta" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:381 +#, python-format +msgid "Unknown Error!" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_move_bank_reconcile +msgid "Move bank reconcile" +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Apply" +msgstr "" + +#. module: account +#: field:account.financial.report,account_type_ids:0 +#: model:ir.actions.act_window,name:account.action_account_type_form +#: model:ir.ui.menu,name:account.menu_action_account_type_form +msgid "Account Types" +msgstr "" + +#. module: account +#: model:email.template,subject:account.email_template_edi_invoice +msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1210 +#, python-format +msgid "" +"You cannot use this general account in this journal, check the tab 'Entry " +"Controls' on the related journal." +msgstr "" + +#. module: account +#: field:account.account.type,report_type:0 +msgid "P&L / BS Category" +msgstr "" + +#. module: account +#: view:account.automatic.reconcile:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: view:account.move.line.reconcile:0 +#: view:account.move.line.reconcile.select:0 +#: code:addons/account/wizard/account_move_line_reconcile_select.py:45 +#: model:ir.ui.menu,name:account.periodical_processing_reconciliation +#: model:process.node,name:account.process_node_reconciliation0 +#: model:process.node,name:account.process_node_supplierreconciliation0 +#, python-format +msgid "Reconciliation" +msgstr "" + +#. module: account +#: view:account.tax.template:0 +msgid "Keep empty to use the income account" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "" +"This button only appears when the state of the invoice is 'paid' (showing " +"that it has been fully reconciled) and auto-computed boolean 'reconciled' is " +"False (depicting that it's not the case anymore). In other words, the " +"invoice has been dereconciled and it does not fit anymore the 'paid' state. " +"You should press this button to re-open it and let it continue its normal " +"process after having resolved the eventual exceptions it may have created." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_journal_form +msgid "" +"

\n" +" Click to add a journal.\n" +"

\n" +" A journal is used to record transactions of all accounting " +"data\n" +" related to the day-to-day business.\n" +"

\n" +" A typical company may use one journal per payment method " +"(cash,\n" +" bank accounts, checks), one purchase journal, one sale " +"journal\n" +" and one for miscellaneous information.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscalyear_close_state +msgid "Fiscalyear Close state" +msgstr "" + +#. module: account +#: field:account.invoice.refund,journal_id:0 +msgid "Refund Journal" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: report:account.central.journal:0 +#: report:account.general.journal:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.partner.balance:0 +msgid "Filter By" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_period_close.py:51 +#, python-format +msgid "" +"In order to close a period, you must first post related journal entries." +msgstr "" + +#. module: account +#: view:account.entries.report:0 +#: view:board.board:0 +#: model:ir.actions.act_window,name:account.action_company_analysis_tree +msgid "Company Analysis" +msgstr "" + +#. module: account +#: help:account.invoice,account_id:0 +msgid "The partner account used for this invoice." +msgstr "" + +#. module: account +#: code:addons/account/account.py:3391 +#, python-format +msgid "Tax %.2f%%" +msgstr "" + +#. module: account +#: field:account.tax.code,parent_id:0 +#: view:account.tax.code.template:0 +#: field:account.tax.code.template,parent_id:0 +msgid "Parent Code" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_payment_term_line +msgid "Payment Term Line" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3194 +#, python-format +msgid "Purchase Journal" +msgstr "" + +#. module: account +#: field:account.invoice,amount_untaxed:0 +msgid "Subtotal" +msgstr "" + +#. module: account +#: view:account.vat.declaration:0 +msgid "Print Tax Statement" +msgstr "" + +#. module: account +#: view:account.model.line:0 +msgid "Journal Entry Model Line" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: field:account.invoice,date_due:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,date_due:0 +#: field:report.invoice.created,date_due:0 +msgid "Due Date" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_supplier +#: model:ir.ui.menu,name:account.menu_finance_payables +msgid "Suppliers" +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Accounts Type Allowed (empty for no control)" +msgstr "" + +#. module: account +#: help:account.move.line,amount_residual:0 +msgid "" +"The residual amount on a receivable or payable of a journal entry expressed " +"in the company currency." +msgstr "" + +#. module: account +#: view:account.tax.code:0 +msgid "Statistics" +msgstr "" + +#. module: account +#: field:account.analytic.chart,from_date:0 +#: field:project.account.analytic.line,from_date:0 +msgid "From" +msgstr "" + +#. module: account +#: help:accounting.report,debit_credit:0 +msgid "" +"This option allows you to get more details about the way your balances are " +"computed. Because it is space consuming, we do not allow to use it while " +"doing a comparison." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscalyear_close +msgid "Fiscalyear Close" +msgstr "" + +#. module: account +#: sql_constraint:account.account:0 +msgid "The code of the account must be unique per company !" +msgstr "" + +#. module: account +#: help:product.category,property_account_expense_categ:0 +#: help:product.template,property_account_expense:0 +msgid "This account will be used to value outgoing stock using cost price." +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened +msgid "Unpaid Invoices" +msgstr "" + +#. module: account +#: field:account.move.line.reconcile,debit:0 +msgid "Debit amount" +msgstr "" + +#. module: account +#: view:account.aged.trial.balance:0 +#: view:account.analytic.balance:0 +#: view:account.analytic.cost.ledger:0 +#: view:account.analytic.cost.ledger.journal.report:0 +#: view:account.analytic.inverted.balance:0 +#: view:account.analytic.journal.report:0 +#: view:account.common.report:0 +#: view:account.invoice:0 +msgid "Print" +msgstr "" + +#. module: account +#: view:account.period.close:0 +msgid "Are you sure?" +msgstr "" + +#. module: account +#: view:account.journal:0 +msgid "Accounts Allowed (empty for no control)" +msgstr "" + +#. module: account +#: field:account.config.settings,sale_tax_rate:0 +msgid "Sales tax (%)" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 +#: model:ir.actions.act_window,name:account.action_account_analytic_chart +#: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 +msgid "Chart of Analytic Accounts" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_subscription_form +msgid "" +"

\n" +" Click to define a new recurring entry.\n" +"

\n" +" A recurring entry occurs on a recurrent basis from a " +"specific\n" +" date, i.e. corresponding to the signature of a contract or " +"an\n" +" agreement with a customer or a supplier. You can create " +"such\n" +" entries to automate the postings in the system.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: view:account.journal:0 +#: model:ir.ui.menu,name:account.menu_configuration_misc +msgid "Miscellaneous" +msgstr "" + +#. module: account +#: help:res.partner,debit:0 +msgid "Total amount you have to pay to this supplier." +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_analytic0 +#: model:process.node,name:account.process_node_analyticcost0 +msgid "Analytic Costs" +msgstr "" + +#. module: account +#: field:account.analytic.journal,name:0 +#: report:account.general.journal:0 +#: field:account.journal,name:0 +msgid "Journal Name" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:829 +#, python-format +msgid "Entry \"%s\" is not valid !" +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Smallest Text" +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_check_writing:0 +msgid "" +"This allows you to check writing and printing.\n" +" This installs the module account_check_writing." +msgstr "" + +#. module: account +#: model:res.groups,name:account.group_account_invoice +msgid "Invoicing & Payments" +msgstr "" + +#. module: account +#: help:account.invoice,internal_number:0 +msgid "" +"Unique number of the invoice, computed automatically when the invoice is " +"created." +msgstr "" + +#. module: account +#: model:account.account.type,name:account.data_account_type_expense +#: model:account.financial.report,name:account.account_financial_report_expense0 +msgid "Expense" +msgstr "" + +#. module: account +#: help:account.chart,fiscalyear:0 +msgid "Keep empty for all open fiscal years" +msgstr "" + +#. module: account +#: help:account.move.line,amount_currency:0 +msgid "" +"The amount expressed in an optional other currency if it is a multi-currency " +"entry." +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1006 +#, python-format +msgid "The account move (%s) for centralisation has been confirmed." +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +#: field:account.bank.statement,currency:0 +#: report:account.central.journal:0 +#: view:account.entries.report:0 +#: field:account.entries.report,currency_id:0 +#: report:account.general.journal:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: field:account.invoice,currency_id:0 +#: field:account.invoice.report,currency_id:0 +#: field:account.journal,currency:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.model.line,currency_id:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: field:account.move.line,currency_id:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:analytic.entries.report,currency_id:0 +#: model:ir.model,name:account.model_res_currency +#: field:report.account.sales,currency_id:0 +#: field:report.account_type.sales,currency_id:0 +#: field:report.invoice.created,currency_id:0 +#: field:res.partner.bank,currency_id:0 +#: field:wizard.multi.charts.accounts,currency_id:0 +msgid "Currency" +msgstr "" + +#. module: account +#: help:account.invoice.refund,journal_id:0 +msgid "" +"You can select here the journal to use for the credit note that will be " +"created. If you leave that field empty, it will use the same journal as the " +"current invoice." +msgstr "" + +#. module: account +#: help:account.bank.statement.line,sequence:0 +msgid "" +"Gives the sequence order when displaying a list of bank statement lines." +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_validentries0 +msgid "Accountant validates the accounting entries coming from the invoice." +msgstr "" + +#. module: account +#: view:account.entries.report:0 +#: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open +msgid "Reconciled entries" +msgstr "" + +#. module: account +#: code:addons/account/account.py:2334 +#, python-format +msgid "Wrong model !" +msgstr "" + +#. module: account +#: view:account.tax.code.template:0 +#: view:account.tax.template:0 +msgid "Tax Template" +msgstr "" + +#. module: account +#: field:account.invoice.refund,period:0 +msgid "Force period" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_partner_balance +msgid "Print Account Partner Balance" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1121 +#, python-format +msgid "" +"You cannot do this modification on a reconciled entry. You can just change " +"some non legal fields or you must unreconcile first.\n" +"%s." +msgstr "" + +#. module: account +#: help:account.financial.report,sign:0 +msgid "" +"For accounts that are typically more debited than credited and that you " +"would like to print as negative amounts in your reports, you should reverse " +"the sign of the balance; e.g.: Expense account. The same applies for " +"accounts that are typically more credited than debited and that you would " +"like to print as positive amounts in your reports; e.g.: Income account." +msgstr "" + +#. module: account +#: field:res.partner,contract_ids:0 +msgid "Contracts" +msgstr "" + +#. module: account +#: field:account.cashbox.line,bank_statement_id:0 +#: field:account.entries.report,reconcile_id:0 +#: field:account.financial.report,balance:0 +#: field:account.financial.report,credit:0 +#: field:account.financial.report,debit:0 +msgid "unknown" +msgstr "" + +#. module: account +#: field:account.fiscalyear.close,journal_id:0 +#: code:addons/account/account.py:3198 +#, python-format +msgid "Opening Entries Journal" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_customerinvoice0 +msgid "Draft invoices are checked, validated and printed." +msgstr "" + +#. module: account +#: field:account.bank.statement,message_is_follower:0 +#: field:account.invoice,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: account +#: view:account.move:0 +#: field:account.move,narration:0 +#: field:account.move.line,narration:0 +msgid "Internal Note" +msgstr "" + +#. module: account +#: constraint:account.account:0 +msgid "" +"Configuration Error!\n" +"You cannot select an account type with a deferral method different of " +"\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." +msgstr "" + +#. module: account +#: field:account.config.settings,has_fiscal_year:0 +msgid "Company has a fiscal year" +msgstr "" + +#. module: account +#: help:account.tax,child_depend:0 +#: help:account.tax.template,child_depend:0 +msgid "" +"Set if the tax computation is based on the computation of child taxes rather " +"than on the total amount." +msgstr "" + +#. module: account +#: code:addons/account/account.py:634 +#, python-format +msgid "You cannot deactivate an account that contains journal items." +msgstr "" + +#. module: account +#: selection:account.tax,applicable_type:0 +msgid "Given by Python Code" +msgstr "" + +#. module: account +#: field:account.analytic.journal,code:0 +msgid "Journal Code" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: field:account.move.line,amount_residual:0 +msgid "Residual Amount" +msgstr "" + +#. module: account +#: field:account.invoice,move_lines:0 +#: field:account.move.reconcile,line_id:0 +msgid "Entry Lines" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_open_journal_button +msgid "Open Journal" +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +msgid "KI" +msgstr "" + +#. module: account +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.journal:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +msgid "Period from" +msgstr "" + +#. module: account +#: field:account.cashbox.line,pieces:0 +msgid "Unit of Currency" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3195 +#, python-format +msgid "Sales Refund Journal" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Information" +msgstr "" + +#. module: account +#: view:account.invoice.confirm:0 +msgid "" +"Once draft invoices are confirmed, you will not be able\n" +" to modify them. The invoices will receive a unique\n" +" number and journal items will be created in your " +"chart\n" +" of accounts." +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_bankstatement0 +msgid "Registered payment" +msgstr "" + +#. module: account +#: view:account.fiscalyear.close.state:0 +msgid "Close states of Fiscal year and periods" +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_refund_journal_id:0 +msgid "Purchase refund journal" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Product Information" +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: model:ir.ui.menu,name:account.next_id_40 +msgid "Analytic" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_invoiceinvoice0 +#: model:process.node,name:account.process_node_supplierinvoiceinvoice0 +msgid "Create Invoice" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_configuration_installer +msgid "Configure Accounting Data" +msgstr "" + +#. module: account +#: field:wizard.multi.charts.accounts,purchase_tax_rate:0 +msgid "Purchase Tax(%)" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:901 +#, python-format +msgid "Please create some invoice lines." +msgstr "" + +#. module: account +#: code:addons/account/wizard/pos_box.py:36 +#, python-format +msgid "" +"Please check that the field 'Internal Transfers Account' is set on the " +"payment method '%s'." +msgstr "" + +#. module: account +#: field:account.vat.declaration,display_detail:0 +msgid "Display Detail" +msgstr "" + +#. module: account +#: code:addons/account/account.py:3203 +#, python-format +msgid "SCNJ" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_analyticinvoice0 +msgid "" +"Analytic costs (timesheets, some purchased products, ...) come from analytic " +"accounts. These generate draft invoices." +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: view:analytic.entries.report:0 +msgid "My Entries" +msgstr "" + +#. module: account +#: help:account.invoice,state:0 +msgid "" +" * The 'Draft' status is used when a user is encoding a new and unconfirmed " +"Invoice. \n" +"* The 'Pro-forma' when invoice is in Pro-forma status,invoice does not have " +"an invoice number. \n" +"* The 'Open' status is used when user create invoice,a invoice number is " +"generated.Its in open status till user does not pay invoice. \n" +"* The 'Paid' status is set automatically when the invoice is paid. Its " +"related journal entries may or may not be reconciled. \n" +"* The 'Cancelled' status is used when user cancel invoice." +msgstr "" + +#. module: account +#: field:account.period,date_stop:0 +#: model:ir.ui.menu,name:account.menu_account_end_year_treatments +msgid "End of Period" +msgstr "" + +#. module: account +#: field:account.account,financial_report_ids:0 +#: field:account.account.template,financial_report_ids:0 +#: model:ir.actions.act_window,name:account.action_account_financial_report_tree +#: model:ir.actions.act_window,name:account.action_account_report +#: model:ir.ui.menu,name:account.menu_account_reports +msgid "Financial Reports" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_liability_view1 +msgid "Liability View" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,period_from:0 +#: field:account.balance.report,period_from:0 +#: report:account.central.journal:0 +#: field:account.central.journal,period_from:0 +#: field:account.common.account.report,period_from:0 +#: field:account.common.journal.report,period_from:0 +#: field:account.common.partner.report,period_from:0 +#: field:account.common.report,period_from:0 +#: report:account.general.journal:0 +#: field:account.general.journal,period_from:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,period_from:0 +#: field:account.partner.ledger,period_from:0 +#: field:account.print.journal,period_from:0 +#: field:account.report.general.ledger,period_from:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: report:account.vat.declaration:0 +#: field:account.vat.declaration,period_from:0 +#: field:accounting.report,period_from:0 +#: field:accounting.report,period_from_cmp:0 +msgid "Start Period" +msgstr "" + +#. module: account +#: model:ir.actions.report.xml,name:account.account_central_journal +msgid "Central Journal" +msgstr "" + +#. module: account +#: field:account.aged.trial.balance,direction_selection:0 +msgid "Analysis Direction" +msgstr "" + +#. module: account +#: field:res.partner,ref_companies:0 +msgid "Companies that refers to partner" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Ask Refund" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Total credit" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_suppliervalidentries0 +msgid "Accountant validates the accounting entries coming from the invoice. " +msgstr "" + +#. module: account +#: field:account.subscription,period_total:0 +msgid "Number of Periods" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Document: Customer account statement" +msgstr "" + +#. module: account +#: view:account.account.template:0 +msgid "Receivale Accounts" +msgstr "" + +#. module: account +#: field:account.config.settings,purchase_refund_sequence_prefix:0 +msgid "Supplier credit note sequence" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_state_open.py:37 +#, python-format +msgid "Invoice is already reconciled." +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_payment:0 +msgid "" +"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." +msgstr "" + +#. module: account +#: xsl:account.transfer:0 +msgid "Document" +msgstr "" + +#. module: account +#: view:account.chart.template:0 +#: field:account.chart.template,property_account_receivable:0 +msgid "Receivable Account" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#, python-format +msgid "To reconcile the entries company should be the same for all entries." +msgstr "" + +#. module: account +#: field:account.account,balance:0 +#: report:account.account.balance:0 +#: selection:account.account.type,close_method:0 +#: report:account.analytic.account.balance:0 +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.inverted.balance:0 +#: report:account.central.journal:0 +#: field:account.entries.report,balance:0 +#: report:account.general.journal:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: field:account.invoice,residual:0 +#: field:account.move.line,balance:0 +#: report:account.partner.balance:0 +#: selection:account.payment.term.line,value:0 +#: selection:account.tax,type:0 +#: selection:account.tax.template,type:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.treasury.report,balance:0 +#: field:report.account.receivable,balance:0 +#: field:report.aged.receivable,balance:0 +msgid "Balance" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_supplierbankstatement0 +msgid "Manually or automatically entered in the system" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: report:account.general.ledger_landscape:0 +msgid "Display Account" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: model:account.account.type,name:account.data_account_type_payable +#: selection:account.entries.report,type:0 +msgid "Payable" +msgstr "" + +#. module: account +#: view:board.board:0 +msgid "Account Board" +msgstr "" + +#. module: account +#: view:account.model:0 +#: field:account.model,legend:0 +msgid "Legend" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_entriesreconcile0 +msgid "Accounting entries are the first input of the reconciliation." +msgstr "" + +#. module: account +#: view:account.fiscalyear.close:0 +msgid "Generate Fiscal Year Opening Entries" +msgstr "" + +#. module: account +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +msgid "Filters By" +msgstr "" + +#. module: account +#: field:account.cashbox.line,number_closing:0 +#: field:account.cashbox.line,number_opening:0 +msgid "Number of Units" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_manually0 +#: model:process.transition,name:account.process_transition_invoicemanually0 +msgid "Manual entry" +msgstr "" + +#. module: account +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: field:analytic.entries.report,move_id:0 +msgid "Move" +msgstr "" + +#. module: account +#: code:addons/account/account_bank_statement.py:478 +#: code:addons/account/wizard/account_period_close.py:51 +#, python-format +msgid "Invalid Action!" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +msgid "Date / Period" +msgstr "" + +#. module: account +#: report:account.central.journal:0 +msgid "A/C No." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement +msgid "Bank statements" +msgstr "" + +#. module: account +#: constraint:account.period:0 +msgid "" +"Error!\n" +"The period is invalid. Either some periods are overlapping or the period's " +"dates are not matching the scope of the fiscal year." +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "There is nothing due with this customer." +msgstr "" + +#. module: account +#: help:account.tax,account_paid_id:0 +msgid "" +"Set the account that will be set by default on invoice tax lines for " +"refunds. Leave empty to use the expense account." +msgstr "" + +#. module: account +#: help:account.addtmpl.wizard,cparent_id:0 +msgid "" +"Creates an account with the selected template under this existing parent." +msgstr "" + +#. module: account +#: report:account.invoice:0 +msgid "Source" +msgstr "" + +#. module: account +#: selection:account.model.line,date_maturity:0 +msgid "Date of the day" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_move_bank_reconcile.py:49 +#, python-format +msgid "" +"You have to define the bank account\n" +"in the journal definition for reconciliation." +msgstr "" + +#. module: account +#: help:account.journal,sequence_id:0 +msgid "" +"This field contains the information related to the numbering of the journal " +"entries of this journal." +msgstr "" + +#. module: account +#: field:account.invoice,sent:0 +msgid "Sent" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_common_menu +msgid "Common Report" +msgstr "" + +#. module: account +#: field:account.config.settings,default_sale_tax:0 +#: field:account.config.settings,sale_tax:0 +msgid "Default sale tax" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Balance :" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1587 +#, python-format +msgid "Cannot create moves for different companies." +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_periodical_processing +msgid "Periodic Processing" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Customer And Supplier Invoices" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_paymententries0 +#: model:process.transition,name:account.process_transition_paymentorderbank0 +#: model:process.transition,name:account.process_transition_paymentreconcile0 +msgid "Payment entries" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "July" +msgstr "" + +#. module: account +#: view:account.account:0 +msgid "Chart of accounts" +msgstr "" + +#. module: account +#: field:account.subscription.line,subscription_id:0 +msgid "Subscription" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_balance +msgid "Account Analytic Balance" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,period_to:0 +#: field:account.balance.report,period_to:0 +#: report:account.central.journal:0 +#: field:account.central.journal,period_to:0 +#: field:account.common.account.report,period_to:0 +#: field:account.common.journal.report,period_to:0 +#: field:account.common.partner.report,period_to:0 +#: field:account.common.report,period_to:0 +#: report:account.general.journal:0 +#: field:account.general.journal,period_to:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,period_to:0 +#: field:account.partner.ledger,period_to:0 +#: field:account.print.journal,period_to:0 +#: field:account.report.general.ledger,period_to:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: report:account.vat.declaration:0 +#: field:account.vat.declaration,period_to:0 +#: field:accounting.report,period_to:0 +#: field:accounting.report,period_to_cmp:0 +msgid "End Period" +msgstr "" + +#. module: account +#: model:account.account.type,name:account.account_type_expense_view1 +msgid "Expense View" +msgstr "" + +#. module: account +#: field:account.move.line,date_maturity:0 +msgid "Due date" +msgstr "" + +#. module: account +#: model:account.payment.term,name:account.account_payment_term_immediate +#: model:account.payment.term,note:account.account_payment_term_immediate +msgid "Immediate Payment" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1502 +#, python-format +msgid " Centralisation" +msgstr "" + +#. module: account +#: help:account.journal,type:0 +msgid "" +"Select 'Sale' for customer invoices journals. Select 'Purchase' for supplier " +"invoices journals. Select 'Cash' or 'Bank' for journals that are used in " +"customer or supplier payments. Select 'General' for miscellaneous operations " +"journals. Select 'Opening/Closing Situation' for entries generated for new " +"fiscal years." +msgstr "" + +#. module: account +#: view:account.subscription:0 +#: model:ir.model,name:account.model_account_subscription +msgid "Account Subscription" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Maturity date" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Entry Subscription" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,date_from:0 +#: field:account.balance.report,date_from:0 +#: report:account.central.journal:0 +#: field:account.central.journal,date_from:0 +#: field:account.common.account.report,date_from:0 +#: field:account.common.journal.report,date_from:0 +#: field:account.common.partner.report,date_from:0 +#: field:account.common.report,date_from:0 +#: field:account.fiscalyear,date_start:0 +#: report:account.general.journal:0 +#: field:account.general.journal,date_from:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: field:account.installer,date_start:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,date_from:0 +#: field:account.partner.ledger,date_from:0 +#: field:account.print.journal,date_from:0 +#: field:account.report.general.ledger,date_from:0 +#: field:account.subscription,date_start:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.vat.declaration,date_from:0 +#: field:accounting.report,date_from:0 +#: field:accounting.report,date_from_cmp:0 +msgid "Start Date" +msgstr "" + +#. module: account +#: help:account.invoice,reconciled:0 +msgid "" +"It indicates that the invoice has been paid and the journal entry of the " +"invoice has been reconciled with one or several journal entries of payment." +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: model:process.node,name:account.process_node_supplierdraftinvoices0 +msgid "Draft Invoices" +msgstr "" + +#. module: account +#: view:cash.box.in:0 +#: model:ir.actions.act_window,name:account.action_cash_box_in +msgid "Put Money In" +msgstr "" + +#. module: account +#: selection:account.account.type,close_method:0 +#: view:account.entries.report:0 +#: view:account.move.line:0 +msgid "Unreconciled" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:922 +#, python-format +msgid "Bad total !" +msgstr "" + +#. module: account +#: field:account.journal,sequence_id:0 +msgid "Entry Sequence" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_period_tree +msgid "" +"A period is a fiscal period of time during which accounting entries should " +"be recorded for accounting related activities. Monthly period is the norm " +"but depending on your countries or company needs, you could also have " +"quarterly periods. Closing a period will make it impossible to record new " +"accounting entries, all new entries should then be made on the following " +"open period. Close a period when you do not want to record new entries and " +"want to lock this period for tax related calculation." +msgstr "" + +#. module: account +#: view:account.analytic.account:0 +msgid "Pending" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_analytic_cost_ledger_journal +#: model:ir.actions.report.xml,name:account.account_analytic_account_quantity_cost_ledger +msgid "Cost Ledger (Only quantities)" +msgstr "" + +#. module: account +#: model:process.transition,name:account.process_transition_analyticinvoice0 +#: model:process.transition,name:account.process_transition_supplieranalyticcost0 +msgid "From analytic accounts" +msgstr "" + +#. module: account +#: view:account.installer:0 +msgid "Configure your Fiscal Year" +msgstr "" + +#. module: account +#: field:account.period,name:0 +msgid "Period Name" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_invoice_state.py:68 +#, python-format +msgid "" +"Selected invoice(s) cannot be cancelled as they are already in 'Cancelled' " +"or 'Done' state." +msgstr "" + +#. module: account +#: report:account.analytic.account.quantity_cost_ledger:0 +msgid "Code/Date" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: view:account.move:0 +#: view:account.move.line:0 +#: model:ir.actions.act_window,name:account.act_account_journal_2_account_move_line +#: model:ir.actions.act_window,name:account.act_account_move_to_account_move_line_open +#: model:ir.actions.act_window,name:account.act_account_partner_account_move +#: model:ir.actions.act_window,name:account.action_account_items +#: model:ir.actions.act_window,name:account.action_account_moves_all_a +#: model:ir.actions.act_window,name:account.action_move_line_select +#: model:ir.actions.act_window,name:account.action_tax_code_items +#: model:ir.actions.act_window,name:account.action_tax_code_line_open +#: model:ir.model,name:account.model_account_move_line +#: model:ir.ui.menu,name:account.menu_action_account_moves_all +msgid "Journal Items" +msgstr "" + +#. module: account +#: view:accounting.report:0 +msgid "Comparison" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1119 +#, python-format +msgid "" +"You cannot do this modification on a confirmed entry. You can just change " +"some non legal fields or you must unconfirm the journal entry first.\n" +"%s." +msgstr "" + +#. module: account +#: help:account.config.settings,module_account_budget:0 +msgid "" +"This allows accountants to manage analytic and crossovered budgets.\n" +" Once the master budgets and the budgets are defined,\n" +" the project managers can set the planned amount on each " +"analytic account.\n" +" This installs the module account_budget." +msgstr "" + +#. module: account +#: field:account.bank.statement.line,name:0 +msgid "OBI" +msgstr "" + +#. module: account +#: help:res.partner,property_account_payable:0 +msgid "" +"This account will be used instead of the default one as the payable account " +"for the current partner" +msgstr "" + +#. module: account +#: field:account.period,special:0 +msgid "Opening/Closing Period" +msgstr "" + +#. module: account +#: field:account.account,currency_id:0 +#: field:account.account.template,currency_id:0 +#: field:account.bank.accounts.wizard,currency_id:0 +msgid "Secondary Currency" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_validate_account_move +msgid "Validate Account Move" +msgstr "" + +#. module: account +#: field:account.account,credit:0 +#: report:account.account.balance:0 +#: report:account.analytic.account.balance:0 +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.inverted.balance:0 +#: report:account.central.journal:0 +#: field:account.entries.report,credit:0 +#: report:account.general.journal:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.model.line,credit:0 +#: field:account.move.line,credit:0 +#: report:account.partner.balance:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.treasury.report,credit:0 +#: report:account.vat.declaration:0 +#: field:report.account.receivable,credit:0 +msgid "Credit" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Draft Invoice " +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_account_general_journal +msgid "General Journals" +msgstr "" + +#. module: account +#: view:account.model:0 +msgid "Journal Entry Model" +msgstr "" + +#. module: account +#: code:addons/account/account.py:1073 +#, python-format +msgid "Start period should precede then end period." +msgstr "" + +#. module: account +#: field:account.invoice,number:0 +#: field:account.move,name:0 +msgid "Number" +msgstr "" + +#. module: account +#: report:account.analytic.account.journal:0 +#: selection:account.analytic.journal,type:0 +#: selection:account.bank.statement.line,type:0 +#: selection:account.journal,type:0 +msgid "General" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +#: field:account.invoice.report,price_total:0 +#: field:account.invoice.report,user_currency_price_total:0 +msgid "Total Without Tax" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,filter:0 +#: selection:account.balance.report,filter:0 +#: selection:account.central.journal,filter:0 +#: view:account.chart:0 +#: selection:account.common.account.report,filter:0 +#: selection:account.common.journal.report,filter:0 +#: selection:account.common.partner.report,filter:0 +#: view:account.common.report:0 +#: selection:account.common.report,filter:0 +#: field:account.config.settings,period:0 +#: field:account.fiscalyear,period_ids:0 +#: selection:account.general.journal,filter:0 +#: field:account.installer,period:0 +#: selection:account.partner.balance,filter:0 +#: selection:account.partner.ledger,filter:0 +#: view:account.print.journal:0 +#: selection:account.print.journal,filter:0 +#: selection:account.report.general.ledger,filter:0 +#: report:account.vat.declaration:0 +#: view:account.vat.declaration:0 +#: selection:account.vat.declaration,filter:0 +#: view:accounting.report:0 +#: selection:accounting.report,filter:0 +#: selection:accounting.report,filter_cmp:0 +#: model:ir.actions.act_window,name:account.action_account_period +#: model:ir.ui.menu,name:account.menu_action_account_period +#: model:ir.ui.menu,name:account.next_id_23 +msgid "Periods" +msgstr "" + +#. module: account +#: field:account.invoice.report,currency_rate:0 +msgid "Currency Rate" +msgstr "" + +#. module: account +#: field:account.account,tax_ids:0 +#: view:account.account.template:0 +#: field:account.account.template,tax_ids:0 +#: view:account.chart.template:0 +msgid "Default Taxes" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "April" +msgstr "" + +#. module: account +#: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 +msgid "Profit (Loss) to report" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:379 +#, python-format +msgid "There is no Sale/Purchase Journal(s) defined." +msgstr "" + +#. module: account +#: view:account.move.line.reconcile.select:0 +msgid "Open for Reconciliation" +msgstr "" + +#. module: account +#: field:account.account,parent_left:0 +msgid "Parent Left" +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Title 2 (bold)" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_invoice_tree2 +#: model:ir.ui.menu,name:account.menu_action_invoice_tree2 +msgid "Supplier Invoices" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +#: field:account.analytic.line,product_id:0 +#: view:account.entries.report:0 +#: field:account.entries.report,product_id:0 +#: field:account.invoice.line,product_id:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,product_id:0 +#: field:account.move.line,product_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,product_id:0 +#: field:report.account.sales,product_id:0 +#: field:report.account_type.sales,product_id:0 +msgid "Product" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_validate_account_move +msgid "" +"The validation of journal entries process is also called 'ledger posting' " +"and is the process of transferring debit and credit amounts from a journal " +"of original entry to a ledger book." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_period +msgid "Account period" +msgstr "" + +#. module: account +#: view:account.subscription:0 +msgid "Remove Lines" +msgstr "" + +#. module: account +#: selection:account.account,type:0 +#: selection:account.account.template,type:0 +#: selection:account.entries.report,type:0 +msgid "Regular" +msgstr "" + +#. module: account +#: view:account.account:0 +#: field:account.account,type:0 +#: view:account.account.template:0 +#: field:account.account.template,type:0 +#: field:account.entries.report,type:0 +msgid "Internal Type" +msgstr "" + +#. module: account +#: field:account.subscription.generate,date:0 +msgid "Generate Entries Before" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_subscription_form_running +msgid "Running Subscriptions" +msgstr "" + +#. module: account +#: view:account.analytic.balance:0 +#: view:account.analytic.cost.ledger:0 +#: view:account.analytic.inverted.balance:0 +#: view:account.analytic.journal.report:0 +msgid "Select Period" +msgstr "" + +#. module: account +#: view:account.entries.report:0 +#: selection:account.entries.report,move_state:0 +#: view:account.move:0 +#: selection:account.move,state:0 +#: view:account.move.line:0 +msgid "Posted" +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,date_to:0 +#: field:account.balance.report,date_to:0 +#: report:account.central.journal:0 +#: field:account.central.journal,date_to:0 +#: field:account.common.account.report,date_to:0 +#: field:account.common.journal.report,date_to:0 +#: field:account.common.partner.report,date_to:0 +#: field:account.common.report,date_to:0 +#: field:account.fiscalyear,date_stop:0 +#: report:account.general.journal:0 +#: field:account.general.journal,date_to:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: field:account.installer,date_stop:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,date_to:0 +#: field:account.partner.ledger,date_to:0 +#: field:account.print.journal,date_to:0 +#: field:account.report.general.ledger,date_to:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.vat.declaration,date_to:0 +#: field:accounting.report,date_to:0 +#: field:accounting.report,date_to_cmp:0 +msgid "End Date" +msgstr "" + +#. module: account +#: view:account.open.closed.fiscalyear:0 +#: model:ir.actions.act_window,name:account.action_account_open_closed_fiscalyear +#: model:ir.ui.menu,name:account.menu_wizard_account_open_closed_fiscalyear +msgid "Cancel Opening Entries" +msgstr "" + +#. module: account +#: field:account.payment.term.line,days2:0 +msgid "Day of the Month" +msgstr "" + +#. module: account +#: field:account.fiscal.position.tax,tax_src_id:0 +#: field:account.fiscal.position.tax.template,tax_src_id:0 +msgid "Tax Source" +msgstr "" + +#. module: account +#: view:ir.sequence:0 +msgid "Fiscal Year Sequences" +msgstr "" + +#. module: account +#: selection:account.financial.report,display_detail:0 +msgid "No detail" +msgstr "" + +#. module: account +#: field:account.account,unrealized_gain_loss:0 +#: model:ir.actions.act_window,name:account.action_account_gain_loss +#: model:ir.ui.menu,name:account.menu_unrealized_gains_losses +msgid "Unrealized Gain or Loss" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "States" +msgstr "" + +#. module: account +#: help:product.category,property_account_income_categ:0 +#: help:product.template,property_account_income:0 +msgid "This account will be used to value outgoing stock using sale price." +msgstr "" + +#. module: account +#: field:account.invoice,check_total:0 +msgid "Verification Total" +msgstr "" + +#. module: account +#: report:account.analytic.account.balance:0 +#: report:account.analytic.account.inverted.balance:0 +#: report:account.analytic.account.quantity_cost_ledger:0 +#: view:account.analytic.line:0 +#: field:account.invoice,amount_total:0 +#: field:report.account.sales,amount_total:0 +#: field:report.account_type.sales,amount_total:0 +#: field:report.invoice.created,amount_total:0 +msgid "Total" +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_invoice_refund.py:109 +#, python-format +msgid "Cannot %s draft/proforma/cancel invoice." +msgstr "" + +#. module: account +#: field:account.tax,account_analytic_paid_id:0 +msgid "Refund Tax Analytic Account" +msgstr "" + +#. module: account +#: view:account.move.bank.reconcile:0 +msgid "Open for Bank Reconciliation" +msgstr "" + +#. module: account +#: field:account.account,company_id:0 +#: report:account.account.balance:0 +#: field:account.aged.trial.balance,company_id:0 +#: field:account.analytic.journal,company_id:0 +#: field:account.balance.report,company_id:0 +#: field:account.bank.statement,company_id:0 +#: field:account.bank.statement.line,company_id:0 +#: field:account.central.journal,company_id:0 +#: field:account.common.account.report,company_id:0 +#: field:account.common.journal.report,company_id:0 +#: field:account.common.partner.report,company_id:0 +#: field:account.common.report,company_id:0 +#: field:account.config.settings,company_id:0 +#: view:account.entries.report:0 +#: field:account.entries.report,company_id:0 +#: field:account.fiscal.position,company_id:0 +#: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 +#: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 +#: field:account.installer,company_id:0 +#: field:account.invoice,company_id:0 +#: field:account.invoice.line,company_id:0 +#: view:account.invoice.report:0 +#: field:account.invoice.report,company_id:0 +#: field:account.invoice.tax,company_id:0 +#: field:account.journal,company_id:0 +#: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 +#: field:account.model,company_id:0 +#: field:account.move,company_id:0 +#: field:account.move.line,company_id:0 +#: field:account.partner.balance,company_id:0 +#: field:account.partner.ledger,company_id:0 +#: field:account.period,company_id:0 +#: field:account.print.journal,company_id:0 +#: field:account.report.general.ledger,company_id:0 +#: field:account.tax,company_id:0 +#: field:account.tax.code,company_id:0 +#: field:account.treasury.report,company_id:0 +#: field:account.vat.declaration,company_id:0 +#: field:accounting.report,company_id:0 +#: view:analytic.entries.report:0 +#: field:analytic.entries.report,company_id:0 +#: field:wizard.multi.charts.accounts,company_id:0 +msgid "Company" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_action_subscription_form +msgid "Define Recurring Entries" +msgstr "" + +#. module: account +#: field:account.entries.report,date_maturity:0 +msgid "Date Maturity" +msgstr "" + +#. module: account +#: field:account.invoice.refund,description:0 +#: field:cash.box.in,name:0 +#: field:cash.box.out,name:0 +msgid "Reason" +msgstr "" + +#. module: account +#: selection:account.partner.ledger,filter:0 +#: code:addons/account/report/account_partner_ledger.py:56 +#: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled +#, python-format +msgid "Unreconciled Entries" +msgstr "" + +#. module: account +#: help:account.partner.reconcile.process,today_reconciled:0 +msgid "" +"This figure depicts the total number of partners that have gone throught the " +"reconciliation process today. The current partner is counted as already " +"processed." +msgstr "" + +#. module: account +#: view:account.fiscalyear:0 +msgid "Create Monthly Periods" +msgstr "" + +#. module: account +#: field:account.tax.code.template,sign:0 +msgid "Sign For Parent" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_balance_report +msgid "Trial Balance Report" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree +msgid "Draft statements" +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_statemententries0 +msgid "" +"Manual or automatic creation of payment entries according to the statements" +msgstr "" + +#. module: account +#: field:account.analytic.balance,empty_acc:0 +msgid "Empty Accounts ? " +msgstr "" + +#. module: account +#: view:account.unreconcile.reconcile:0 +msgid "" +"If you unreconcile transactions, you must also verify all the actions that " +"are linked to those transactions because they will not be disable" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:1056 +#, python-format +msgid "Unable to change tax!" +msgstr "" + +#. module: account +#: constraint:account.bank.statement:0 +msgid "The journal and period chosen have to belong to the same company." +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Invoice lines" +msgstr "" + +#. module: account +#: field:account.chart,period_to:0 +msgid "End period" +msgstr "" + +#. module: account +#: sql_constraint:account.journal:0 +msgid "The code of the journal must be unique per company !" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_invoice_report_all +msgid "" +"From this report, you can have an overview of the amount invoiced to your " +"customer. The tool search can also be used to personalise your Invoices " +"reports and so, match this analysis to your needs." +msgstr "" + +#. module: account +#: view:account.partner.reconcile.process:0 +msgid "Go to Next Partner" +msgstr "" + +#. module: account +#: view:account.automatic.reconcile:0 +#: view:account.move.line.reconcile.writeoff:0 +msgid "Write-Off Move" +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_paidinvoice0 +msgid "Invoice's state is Done" +msgstr "" + +#. module: account +#: field:account.config.settings,module_account_followup:0 +msgid "Manage customer payment follow-ups" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_report_account_sales +msgid "Report of the Sales by Account" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_account +msgid "Accounts Fiscal Position" +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +#: selection:account.invoice,type:0 +#: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 +#: model:process.process,name:account.process_process_supplierinvoiceprocess0 +#: selection:report.invoice.created,type:0 +#, python-format +msgid "Supplier Invoice" +msgstr "" + +#. module: account +#: field:account.account,debit:0 +#: report:account.account.balance:0 +#: report:account.analytic.account.balance:0 +#: report:account.analytic.account.cost_ledger:0 +#: report:account.analytic.account.inverted.balance:0 +#: report:account.central.journal:0 +#: field:account.entries.report,debit:0 +#: report:account.general.journal:0 +#: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 +#: report:account.journal.period.print.sale.purchase:0 +#: field:account.model.line,debit:0 +#: field:account.move.line,debit:0 +#: report:account.partner.balance:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +#: field:account.treasury.report,debit:0 +#: report:account.vat.declaration:0 +#: field:report.account.receivable,debit:0 +msgid "Debit" +msgstr "" + +#. module: account +#: selection:account.financial.report,style_overwrite:0 +msgid "Title 3 (bold, smaller)" +msgstr "" + +#. module: account +#: view:account.invoice:0 +#: field:account.invoice,invoice_line:0 +msgid "Invoice Lines" +msgstr "" + +#. module: account +#: help:account.model.line,quantity:0 +msgid "The optional quantity on entries." +msgstr "" + +#. module: account +#: field:account.automatic.reconcile,reconciled:0 +msgid "Reconciled transactions" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_report_account_receivable +msgid "Receivable accounts" +msgstr "" + +#. module: account +#: code:addons/account/account_move_line.py:783 +#, python-format +msgid "Already reconciled." +msgstr "" + +#. module: account +#: selection:account.model.line,date_maturity:0 +msgid "Partner Payment Term" +msgstr "" + +#. module: account +#: field:temp.range,name:0 +msgid "Range" +msgstr "" + +#. module: account +#: view:account.analytic.line:0 +msgid "Analytic Journal Items related to a purchase journal." +msgstr "" + +#. module: account +#: help:account.account,type:0 +msgid "" +"The 'Internal Type' is used for features available on different types of " +"accounts: view can not have journal items, consolidation are accounts that " +"can have children accounts for multi-company consolidations, " +"payable/receivable are for partners accounts (for debit/credit " +"computations), closed for depreciated accounts." +msgstr "" + +#. module: account +#: report:account.account.balance:0 +#: selection:account.balance.report,display_account:0 +#: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 +#: selection:account.report.general.ledger,display_account:0 +msgid "With movements" +msgstr "" + +#. module: account +#: view:account.tax.code.template:0 +msgid "Account Tax Code Template" +msgstr "" + +#. module: account +#: model:process.node,name:account.process_node_manually0 +msgid "Manually" +msgstr "" + +#. module: account +#: help:account.move,balance:0 +msgid "" +"This is a field only used for internal purpose and shouldn't be displayed" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "December" +msgstr "" + +#. module: account +#: view:account.invoice.report:0 +msgid "Group by month of Invoice Date" +msgstr "" + +#. module: account +#: code:addons/account/account_analytic_line.py:99 +#, python-format +msgid "There is no income account defined for this product: \"%s\" (id:%d)." +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_aged_receivable_graph +#: view:report.aged.receivable:0 +msgid "Aged Receivable" +msgstr "" + +#. module: account +#: field:account.tax,applicable_type:0 +msgid "Applicability" +msgstr "" + +#. module: account +#: help:account.move.line,currency_id:0 +msgid "The optional other currency if it is a multi-currency entry." +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_invoiceimport0 +msgid "" +"Import of the statement in the system from a supplier or customer invoice" +msgstr "" + +#. module: account +#: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing +msgid "Billing" +msgstr "" + +#. module: account +#: view:account.account:0 +#: view:account.analytic.account:0 +msgid "Parent Account" +msgstr "" + +#. module: account +#: view:report.account.receivable:0 +msgid "Accounts by Type" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_analytic_chart +msgid "Account Analytic Chart" +msgstr "" + +#. module: account +#: help:account.invoice,residual:0 +msgid "Remaining amount due." +msgstr "" + +#. module: account +#: field:account.print.journal,sort_selection:0 +msgid "Entries Sorted by" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:1546 +#, python-format +msgid "" +"The selected unit of measure is not compatible with the unit of measure of " +"the product." +msgstr "" + +#. module: account +#: view:account.fiscal.position:0 +#: view:account.fiscal.position.template:0 +msgid "Accounts Mapping" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_tax_code_list +msgid "" +"

\n" +" Click to define a new tax code.\n" +"

\n" +" Depending on the country, a tax code is usually a cell to " +"fill\n" +" in your legal tax statement. OpenERP allows you to define " +"the\n" +" tax structure and each tax computation will be registered " +"in\n" +" one or several tax code.\n" +"

\n" +" " +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "November" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,help:account.action_account_moves_all_a +msgid "" +"

\n" +" Select the period and the journal you want to fill.\n" +"

\n" +" This view can be used by accountants in order to quickly " +"record\n" +" entries in OpenERP. If you want to record a supplier " +"invoice,\n" +" start by recording the line of the expense account. OpenERP\n" +" will propose to you automatically the Tax related to this\n" +" account and the counterpart \"Account Payable\".\n" +"

\n" +" " +msgstr "" + +#. module: account +#: help:account.invoice.line,account_id:0 +msgid "The income or expense account related to the selected product." +msgstr "" + +#. module: account +#: view:account.config.settings:0 +msgid "Install more chart templates" +msgstr "" + +#. module: account +#: report:account.general.journal:0 +#: model:ir.actions.report.xml,name:account.account_general_journal +msgid "General Journal" +msgstr "" + +#. module: account +#: view:account.invoice:0 +msgid "Search Invoice" +msgstr "" + +#. module: account +#: report:account.invoice:0 +#: view:account.invoice:0 +#: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format +msgid "Refund" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account +#: field:res.partner,credit:0 +msgid "Total Receivable" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "General Information" +msgstr "" + +#. module: account +#: view:account.move:0 +#: view:account.move.line:0 +msgid "Accounting Documents" +msgstr "" + +#. module: account +#: code:addons/account/account.py:641 +#, python-format +msgid "" +"You cannot remove/deactivate an account which is set on a customer or " +"supplier." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_validate_account_move_lines +msgid "Validate Account Move Lines" +msgstr "" + +#. module: account +#: help:res.partner,property_account_position:0 +msgid "" +"The fiscal position will determine taxes and accounts used for the partner." +msgstr "" + +#. module: account +#: model:process.node,note:account.process_node_supplierpaidinvoice0 +msgid "Invoice's state is Done." +msgstr "" + +#. module: account +#: model:process.transition,note:account.process_transition_reconcilepaid0 +msgid "As soon as the reconciliation is done, the invoice can be paid." +msgstr "" + +#. module: account +#: code:addons/account/wizard/account_change_currency.py:59 +#, python-format +msgid "New currency is not configured properly." +msgstr "" + +#. module: account +#: view:account.account.template:0 +msgid "Search Account Templates" +msgstr "" + +#. module: account +#: view:account.invoice.tax:0 +msgid "Manual Invoice Taxes" +msgstr "" + +#. module: account +#: code:addons/account/account_invoice.py:573 +#, python-format +msgid "The payment term of supplier does not have a payment term line." +msgstr "" + +#. module: account +#: field:account.account,parent_right:0 +msgid "Parent Right" +msgstr "" + +#. module: account +#. openerp-web +#: code:addons/account/static/src/js/account_move_reconciliation.js:74 +#: code:addons/account/static/src/js/account_move_reconciliation.js:80 +#, python-format +msgid "Never" +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_addtmpl_wizard +msgid "account.addtmpl.wizard" +msgstr "" + +#. module: account +#: field:account.aged.trial.balance,result_selection:0 +#: field:account.common.partner.report,result_selection:0 +#: report:account.partner.balance:0 +#: field:account.partner.balance,result_selection:0 +#: field:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 +#: report:account.third_party_ledger_other:0 +msgid "Partner's" +msgstr "" + +#. module: account +#: field:account.account,note:0 +msgid "Internal Notes" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_fiscalyear +#: view:ir.sequence:0 +#: model:ir.ui.menu,name:account.menu_action_account_fiscalyear +msgid "Fiscal Years" +msgstr "" + +#. module: account +#: help:account.analytic.journal,active:0 +msgid "" +"If the active field is set to False, it will allow you to hide the analytic " +"journal without removing it." +msgstr "" + +#. module: account +#: field:account.analytic.line,ref:0 +msgid "Ref." +msgstr "" + +#. module: account +#: field:account.use.model,model:0 +#: model:ir.model,name:account.model_account_model +msgid "Account Model" +msgstr "" + +#. module: account +#: code:addons/account/account_cash_statement.py:292 +#, python-format +msgid "Loss" +msgstr "" + +#. module: account +#: selection:account.entries.report,month:0 +#: selection:account.invoice.report,month:0 +#: selection:analytic.entries.report,month:0 +#: selection:report.account.sales,month:0 +#: selection:report.account_type.sales,month:0 +msgid "February" +msgstr "" + +#. module: account +#: view:account.bank.statement:0 +#: help:account.cashbox.line,number_closing:0 +msgid "Closing Unit Numbers" +msgstr "" + +#. module: account +#: field:account.bank.accounts.wizard,bank_account_id:0 +#: view:account.chart.template:0 +#: field:account.chart.template,bank_account_view_id:0 +#: field:account.invoice,partner_bank_id:0 +#: field:account.invoice.report,partner_bank_id:0 +msgid "Bank Account" +msgstr "" + +#. module: account +#: model:ir.actions.act_window,name:account.action_account_central_journal +#: model:ir.model,name:account.model_account_central_journal +msgid "Account Central Journal" +msgstr "" + +#. module: account +#: report:account.overdue:0 +msgid "Maturity" +msgstr "" + +#. module: account +#: selection:account.aged.trial.balance,direction_selection:0 +msgid "Future" +msgstr "" + +#. module: account +#: view:account.move.line:0 +msgid "Search Journal Items" +msgstr "" + +#. module: account +#: help:account.tax,base_sign:0 +#: help:account.tax,ref_base_sign:0 +#: help:account.tax,ref_tax_sign:0 +#: help:account.tax,tax_sign:0 +#: help:account.tax.template,base_sign:0 +#: help:account.tax.template,ref_base_sign:0 +#: help:account.tax.template,ref_tax_sign:0 +#: help:account.tax.template,tax_sign:0 +msgid "Usually 1 or -1." +msgstr "" + +#. module: account +#: model:ir.model,name:account.model_account_fiscal_position_account_template +msgid "Template Account Fiscal Mapping" +msgstr "" + +#. module: account +#: field:account.chart.template,property_account_expense:0 +msgid "Expense Account on Product Template" +msgstr "" + +#. module: account +#: field:res.partner,property_payment_term:0 +msgid "Customer Payment Term" +msgstr "" + +#. module: account +#: help:accounting.report,label_filter:0 +msgid "" +"This label will be displayed on report to show the balance computed for the " +"given comparison filter." +msgstr "" + +#. module: account +#: selection:account.config.settings,tax_calculation_rounding_method:0 +msgid "Round per line" +msgstr "" + +#. module: account +#: help:account.move.line,amount_residual_currency:0 +msgid "" +"The residual amount on a receivable or payable of a journal entry expressed " +"in its currency (maybe different of the company currency)." +msgstr "" diff --git a/addons/account/i18n/es_PY.po b/addons/account/i18n/es_PY.po index ad406c10338..5c968cae293 100644 --- a/addons/account/i18n/es_PY.po +++ b/addons/account/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:04+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_UY.po b/addons/account/i18n/es_UY.po index 4c3bb1f2ac0..dd8bd08db92 100644 --- a/addons/account/i18n/es_UY.po +++ b/addons/account/i18n/es_UY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:38+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_VE.po b/addons/account/i18n/es_VE.po index edd98b5595b..f766eafb1bc 100644 --- a/addons/account/i18n/es_VE.po +++ b/addons/account/i18n/es_VE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/et.po b/addons/account/i18n/et.po index 4a728b9c4a6..87ca05efabe 100644 --- a/addons/account/i18n/et.po +++ b/addons/account/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:24+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:54+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -236,12 +236,12 @@ msgstr "" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Kinnitatud" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "" +msgstr "Sissetuleku vaade" #. module: account #: help:account.account,user_type:0 @@ -428,7 +428,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Periood:" #. module: account #: field:account.account.template,chart_template_id:0 diff --git a/addons/account/i18n/eu.po b/addons/account/i18n/eu.po index c4b2613ee1c..b69b09a2acf 100644 --- a/addons/account/i18n/eu.po +++ b/addons/account/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fa.po b/addons/account/i18n/fa.po index c900532e686..2cc645c8080 100644 --- a/addons/account/i18n/fa.po +++ b/addons/account/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:30+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fa_AF.po b/addons/account/i18n/fa_AF.po index eb11a9c71bd..b18ffc55d99 100644 --- a/addons/account/i18n/fa_AF.po +++ b/addons/account/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:04+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fi.po b/addons/account/i18n/fi.po index 44f88fc1bdc..fa006099ea6 100644 --- a/addons/account/i18n/fi.po +++ b/addons/account/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:25+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:54+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -26,7 +26,7 @@ msgstr "Järjestelmämaksu" #: sql_constraint:account.fiscal.position.account:0 msgid "" "An account fiscal position could be defined only once time on same accounts." -msgstr "" +msgstr "Tilin verokanta voidaan määritellä vain yhden kerran per tili." #. module: account #: help:account.tax.code,sequence:0 @@ -34,6 +34,8 @@ msgid "" "Determine the display order in the report 'Accounting \\ Reporting \\ " "Generic Reporting \\ Taxes \\ Taxes Report'" msgstr "" +"Määrittele esitysjärjestys raportissa 'Kirjanpito \\ Raportointi \\ " +"Yleisraportointi \\ Verot \\ Veroraportti'" #. module: account #: view:account.move.reconcile:0 @@ -50,7 +52,7 @@ msgstr "Tilitilastot" #. module: account #: view:account.invoice:0 msgid "Proforma/Open/Paid Invoices" -msgstr "" +msgstr "Proforma/avoimet/maksetut laskut" #. module: account #: field:report.invoice.created,residual:0 @@ -61,12 +63,12 @@ msgstr "Jäännös" #: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." -msgstr "Päiväkirjamerkintä \"%s\" ei ole validi" +msgstr "Päiväkirjamerkintä \"%s\" ei ole kelvollinen" #. module: account #: model:ir.model,name:account.model_report_aged_receivable msgid "Aged Receivable Till Today" -msgstr "Ikääntyneet saatavat tähän päivään asti" +msgstr "Erääntyneet saatavat tähän päivään asti" #. module: account #: model:process.transition,name:account.process_transition_invoiceimport0 @@ -79,13 +81,13 @@ msgstr "Tuo laskulta tai maksulta" #: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "Viallinen tili!" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Total Debit" -msgstr "Summa debet" +msgstr "Debet yhteensä" #. module: account #: constraint:account.account.template:0 @@ -93,6 +95,8 @@ msgid "" "Error!\n" "You cannot create recursive account templates." msgstr "" +"Virhe!\n" +"Et voi luoda rekursiivia tilimalleja." #. module: account #. openerp-web @@ -103,7 +107,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "Suoritus" +msgstr "Täsmäytä" #. module: account #: field:account.bank.statement,name:0 @@ -123,8 +127,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the payment " "term without removing it." msgstr "" -"Jos aktiivinen kenttä on tilassa epätosi (false), voit piilottaa maksun " -"poistamatta sitä." +"Jos aktiivinen kenttä on asetettu tilaan epätosi (false), niin voit " +"piilottaa maksuehdon poistamatta sitä." #. module: account #: code:addons/account/account.py:641 @@ -153,7 +157,7 @@ msgstr "Varoitus!" #: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" -msgstr "" +msgstr "Päiväkirja sekalaiset" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -163,6 +167,8 @@ msgid "" "which is set after generating opening entries from 'Generate Opening " "Entries'." msgstr "" +"Aseta 'Tilikauden tilinpäätösviennit päiväkirjaan' kuluvalle tilikaudelle, " +"joka on määritetty 'Luo tilikauden avausviennit' -toiminnolla." #. module: account #: field:account.fiscal.position.account,account_src_id:0 @@ -181,11 +187,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa lisätäksesi tilikauden.\n" +"

\n" +" Tilikausi on tyypillisesti kuukausi tai neljännesvuosi. " +"Yleensä\n" +" se vastaa verojen ilmoitusjaksoja.\n" +"

\n" +" " #. module: account #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard msgid "Invoices Created Within Past 15 Days" -msgstr "Lasku muodostettu 15 päivän sisällä" +msgstr "Viimeisten 15 päivän aikana luodut laskut" #. module: account #: field:accounting.report,label_filter:0 @@ -195,7 +209,7 @@ msgstr "Sarakeotsikko" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "Tilikoodin numeroiden lukumäärä" #. module: account #: help:account.analytic.journal,type:0 @@ -215,6 +229,9 @@ msgid "" "lines for invoices. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Asettaa analyyttisen tilin, jota käytetään oletuksena laskujen veroriveille. " +"Jätä tyhjäksi, jos et halua käyttää analyyttistä tiliä oletuksena laskujen " +"veroriveille." #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_template_form @@ -240,12 +257,12 @@ msgstr "Belgialaiset raportit" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Vahvistettu" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "" +msgstr "Tulonäkymä" #. module: account #: help:account.account,user_type:0 @@ -254,11 +271,13 @@ msgid "" "legal reports, and set the rules to close a fiscal year and generate opening " "entries." msgstr "" +"Tilityyppiä käytetään maakohtaisten virallisten raporttien luomiseen sekä " +"tilikauden sulkemiseen ja uuden tilikauden avaukseen." #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "Seuraava hyvityslaskun numero" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -267,16 +286,19 @@ msgid "" "sales, purchase, expense, contra, etc.\n" " This installs the module account_voucher." msgstr "" +"Tämä sisältää kaikki perusvaatimukset voucher-merkinnöiksi pankki, käteinen, " +"osto, kulu, vasta etc.\n" +" Tämä asentaa account_voucher -moduulin." #. module: account #: model:ir.actions.act_window,name:account.action_account_use_model_create_entry msgid "Manual Recurring" -msgstr "Käsin toistettava" +msgstr "Manuaalisesti toistettava" #. module: account #: field:account.automatic.reconcile,allow_write_off:0 msgid "Allow write off" -msgstr "Salli hylkäykset" +msgstr "Salli alaskirjaukset" #. module: account #: view:account.analytic.chart:0 @@ -298,6 +320,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi asiakkaalle hyvityksen. \n" +"

\n" +" Hyvitys on dokumentti, joka hyvittää laskun kokonaan \n" +" tai osittain.\n" +"

\n" +" Sen sijaan että loisit hyvityksen manuaalisesti, \n" +" voit luoda laskun vastaavasta myyntilaskusta.\n" +"

\n" +" " #. module: account #: help:account.installer,charts:0 @@ -305,16 +337,18 @@ msgid "" "Installs localized accounting charts to match as closely as possible the " "accounting needs of your company based on your country." msgstr "" +"Asentaa lokalisoidut tilikartat vastaamaan mahdollisimman tarkasti " +"yrityksesi paikallisia kirjanpitotarpeitasi omassa maassasi." #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "Poista tilin täsmäytys" +msgstr "Peruuta tilin täsmäytys" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "" +msgstr "Budjetointi" #. module: account #: view:product.template:0 @@ -332,13 +366,13 @@ msgstr "" #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "" +msgstr "Salli monivaluutta" #. module: account #: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" -msgstr "" +msgstr "Määrittele analyttinen päiväkirjatyyppi '%s'!" #. module: account #: selection:account.entries.report,month:0 @@ -347,18 +381,18 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "June" -msgstr "Kesäkuu" +msgstr "kesäkuu" #. module: account #: code:addons/account/wizard/account_automatic_reconcile.py:148 #, python-format msgid "You must select accounts to reconcile." -msgstr "" +msgstr "Valitse täsmäytettävä tili" #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "Sallii analyyttisen tilien käytön." #. module: account #: view:account.invoice:0 @@ -366,13 +400,13 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Myyjä" #. module: account #: view:account.bank.statement:0 #: view:account.invoice:0 msgid "Responsible" -msgstr "Vastuuhenkilö" +msgstr "Vastuullinen" #. module: account #: model:ir.model,name:account.model_account_bank_accounts_wizard @@ -383,17 +417,17 @@ msgstr "account.bank.accounts.wizard" #: field:account.move.line,date_created:0 #: field:account.move.reconcile,create_date:0 msgid "Creation date" -msgstr "Luomispäivämäärä" +msgstr "Luontipäivä" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "Oston hyvitys" +msgstr "Ostohyvitys" #. module: account #: selection:account.journal,type:0 msgid "Opening/Closing Situation" -msgstr "Avaus/sulkeimistilanne" +msgstr "Avaus/sulkemistilanne" #. module: account #: help:account.journal,currency:0 @@ -403,13 +437,13 @@ msgstr "Tiliotteen valuutta" #. module: account #: field:account.journal,default_debit_account_id:0 msgid "Default Debit Account" -msgstr "Oletus debet tili" +msgstr "Oletusarvoinen debet-tili" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Total Credit" -msgstr "Summa kredit" +msgstr "Kredit yhteensä" #. module: account #: help:account.config.settings,module_account_asset:0 @@ -425,14 +459,14 @@ msgstr "" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Alkuperäinen lähde edunsaajatiedoille" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Jakso:" #. module: account #: field:account.account.template,chart_template_id:0 @@ -445,7 +479,7 @@ msgstr "Tilikarttamalli" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" -msgstr "" +msgstr "Muokkaa: luo hyvitys, täsmäytä ja luo uusi laskuehdotus" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -473,12 +507,12 @@ msgstr "Summa ilmoitettuna valinnaisessa toisessa valuutassa." #. module: account #: view:account.journal:0 msgid "Available Coins" -msgstr "" +msgstr "Käytettävät kolikot" #. module: account #: field:accounting.report,enable_filter:0 msgid "Enable Comparison" -msgstr "" +msgstr "Salli vertailu" #. module: account #: view:account.analytic.line:0 @@ -516,7 +550,7 @@ msgstr "Päiväkirja" #. module: account #: model:ir.model,name:account.model_account_invoice_confirm msgid "Confirm the selected invoices" -msgstr "Vahvista vlitut laskut" +msgstr "Vahvista valitut laskut" #. module: account #: field:account.addtmpl.wizard,cparent_id:0 @@ -526,7 +560,7 @@ msgstr "Ylätason kohde" #. module: account #: help:account.invoice.line,sequence:0 msgid "Gives the sequence of this line when displaying the invoice." -msgstr "" +msgstr "Antaa tälle riville järjestyksen laskua näytettäessä." #. module: account #: field:account.bank.statement,account_id:0 @@ -564,7 +598,7 @@ msgstr "Li" #. module: account #: field:account.automatic.reconcile,unreconciled:0 msgid "Not reconciled transactions" -msgstr "Suorittamattomat tapahtumat" +msgstr "Täsmäyttämättömät tapahtumat" #. module: account #: report:account.general.ledger:0 @@ -577,7 +611,7 @@ msgstr "Vastapuoli" #: field:account.fiscal.position,tax_ids:0 #: field:account.fiscal.position.template,tax_ids:0 msgid "Tax Mapping" -msgstr "Verokartoitus" +msgstr "Verokohdistus" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state @@ -600,7 +634,7 @@ msgstr "" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "Desimaalien määrä päiväkirjavienneissä" #. module: account #: selection:account.config.settings,period:0 @@ -617,7 +651,7 @@ msgstr "Sarjat" #: field:account.financial.report,account_report_id:0 #: selection:account.financial.report,type:0 msgid "Report Value" -msgstr "" +msgstr "Raportointiarvo" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:39 @@ -626,12 +660,14 @@ msgid "" "Specified journal does not have any account move entries in draft state for " "this period." msgstr "" +"Määritellyssä päiväkirjassa ei ole yhtään tälle jaksolle kuuluvaa " +"kirjausehdotusta." #. module: account #: view:account.fiscal.position:0 #: view:account.fiscal.position.template:0 msgid "Taxes Mapping" -msgstr "Verokartoitus" +msgstr "Verokohdistus" #. module: account #: report:account.central.journal:0 @@ -641,25 +677,27 @@ msgstr "Keskitetty päiväkirja" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 msgid "Main Sequence must be different from current !" -msgstr "Pääjärjestyksen tulee olla eri nykyiseen nähden!" +msgstr "Pääjärjestyksen tulee olla eri kuin nykyinen" #. module: account #: code:addons/account/wizard/account_change_currency.py:64 #: code:addons/account/wizard/account_change_currency.py:70 #, python-format msgid "Current currency is not configured properly." -msgstr "" +msgstr "Käytettävä valuutta ei ole määritelty oikein" #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Tulostili" #. module: account #: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" +"Annetulle päivämäärälle ei voitu määrittää jaksoa tai löytyi enemmän kuin " +"yksi jakso." #. module: account #: model:ir.model,name:account.model_report_account_type_sales @@ -676,7 +714,7 @@ msgstr "SAJ" #: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." -msgstr "" +msgstr "Siirtoa ei voi luoda valuuatelle, joka poikkeaa valuutasta ..." #. module: account #: model:email.template,report_name:account.email_template_edi_invoice @@ -684,6 +722,8 @@ msgid "" "Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " "and 'draft' or ''}" msgstr "" +"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " +"and 'draft' or ''}" #. module: account #: view:account.period:0 @@ -699,7 +739,7 @@ msgstr "Tilin yhteiskumppanien raportti" #. module: account #: field:account.fiscalyear.close,period_id:0 msgid "Opening Entries Period" -msgstr "Avaa kohteiden jaksoa" +msgstr "Avaavien vientien jakso" #. module: account #: model:ir.model,name:account.model_account_journal_period @@ -711,6 +751,7 @@ msgstr "Päiväkirjan jakso" msgid "" "You cannot create more than one move per period on a centralized journal." msgstr "" +"Et voi luoda jaksoon yhtä enempää siirtoja keskitettyyn päiväkirjaan." #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -731,17 +772,17 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" -msgstr "Saatavat tilit" +msgstr "Saatavatilit" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "Määrittele yrityksesi pankkitili." #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Luo hyvitys" #. module: account #: constraint:account.move.line:0 @@ -749,11 +790,13 @@ msgid "" "The date of your Journal Entry is not in the defined period! You should " "change the date or remove this constraint from the journal." msgstr "" +"Päiväkirjavienti ei ole määritellyllä jaksolla. Muuta viennin päiväystä tai " +"poista tämä vienti päiväkirjasta." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger msgid "General Ledger Report" -msgstr "" +msgstr "Kirjanpitoraportti" #. module: account #: view:account.invoice:0 @@ -763,13 +806,15 @@ msgstr "Uudelleen avaus" #. module: account #: view:account.use.model:0 msgid "Are you sure you want to create entries?" -msgstr "Oletko varma että haluat luoda merkinnät?" +msgstr "Oletko varma että haluat luoda kirjaukset?" #. module: account #: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" +"Lasku maksettu osittain: %s%s laskun summasta %s%s on maksettu %s%s on " +"maksamatta." #. module: account #: view:account.invoice:0 @@ -783,11 +828,13 @@ msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." msgstr "" +"Ei voi %s laskuttaa, koska se on jo täsmäytetty. Peruuta ensin täsmäytys. " +"Tämän laskun voit vain hyvittää." #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children with hierarchy" -msgstr "" +msgstr "Näytä alatasot ja niiden hierarkiat" #. module: account #: selection:account.payment.term.line,value:0 @@ -805,12 +852,12 @@ msgstr "Tilikartat" #: model:ir.model,name:account.model_project_account_analytic_line #, python-format msgid "Analytic Entries by line" -msgstr "Analyyttiset viennit riveittäin" +msgstr "Analyyttiset kirjaukset riveittäin" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "" +msgstr "Hyvitysmenettely" #. module: account #: model:ir.ui.menu,name:account.menu_account_report @@ -841,6 +888,8 @@ msgid "" "Taxes are missing!\n" "Click on compute button." msgstr "" +"Verotiedot puuttuvat!\n" +"Paina 'päivitä' -paniketta." #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -855,20 +904,20 @@ msgstr "Kumppanin viite tässä laskussa." #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "" +msgstr "Toimittajalaskut ja hyvitykset" #. module: account #: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "Vienti on jo täsmäytetty." #. module: account #: view:account.move.line.unreconcile.select:0 #: view:account.unreconcile.reconcile:0 #: model:ir.model,name:account.model_account_move_line_unreconcile_select msgid "Unreconciliation" -msgstr "Suoritusten poisto" +msgstr "Täsmäytysten peruutus" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report @@ -878,7 +927,7 @@ msgstr "Analyyttisten tilien päiväkirja" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Lähetä sähköpostilla" #. module: account #: help:account.central.journal,amount_currency:0 @@ -889,6 +938,8 @@ msgid "" "Print Report with the currency column if the currency differs from the " "company currency." msgstr "" +"Tulosta raporttiin valuuttasarake, mikäli valuutta poikkeaa yrityksen " +"kotivaluutasta." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -898,7 +949,7 @@ msgstr "J.C. / Siirron nimi" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Tilikoodi ja nimi" #. module: account #: selection:account.entries.report,month:0 @@ -907,7 +958,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "September" -msgstr "Syyskuu" +msgstr "syyskuu" #. module: account #: selection:account.subscription,period_type:0 @@ -918,7 +969,7 @@ msgstr "päivät" #: help:account.account.template,nocreate:0 msgid "" "If checked, the new chart of accounts will not contain this by default." -msgstr "Jos valittu, uuti tilikirja ei sisälltä tätä oletusarvoisesti." +msgstr "Jos valittu, uusi tilikartta ei sisällä tätä oletuksena." #. module: account #: model:ir.actions.act_window,help:account.action_account_manual_reconcile @@ -928,6 +979,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Päiväkirjavientejä ei löydy.\n" +"

\n" +" " #. module: account #: code:addons/account/account.py:1677 @@ -937,6 +992,8 @@ msgid "" " opening/closing fiscal " "year process." msgstr "" +"Et voi täsmäyttää päiväkirjan vientejä, jos ne on luotu tilikauden avaus- " +"tai päätösvienteinä tilikauden avauksessa tai sulkemisessa." #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_new @@ -964,22 +1021,22 @@ msgstr "Verotaulukko" #. module: account #: view:account.fiscalyear:0 msgid "Create 3 Months Periods" -msgstr "Luo 3 kuukauden jakso" +msgstr "Luo neljännesvuoden jakso" #. module: account #: report:account.overdue:0 msgid "Due" -msgstr "kuluessa" +msgstr "Erääntyvät" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "" +msgstr "Ostopäiväkirja" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "" +msgstr "Lasku maksettu" #. module: account #: view:validate.account.move:0 @@ -997,7 +1054,7 @@ msgstr "Kokonaismäärä" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "" +msgstr "Tämän laskun viite tulee toimittajalta" #. module: account #: selection:account.account,type:0 @@ -1017,22 +1074,22 @@ msgstr "Vastuu" #: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." -msgstr "" +msgstr "Määrittele tälle laskulle päiväkirjaan liittyvä järjestys." #. module: account #: view:account.entries.report:0 msgid "Extended Filters..." -msgstr "Laajennetut Suotimet..." +msgstr "Laajennetut suodattimet..." #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal msgid "Centralizing Journal" -msgstr "Keskuspäiväkirja" +msgstr "Keskitetty päiväkirja" #. module: account #: selection:account.journal,type:0 msgid "Sale Refund" -msgstr "Myynnin hyvitys" +msgstr "Myyntihyvitys" #. module: account #: model:process.node,note:account.process_node_accountingstatemententries0 @@ -1060,7 +1117,7 @@ msgstr "Ostot" #. module: account #: field:account.model,lines_id:0 msgid "Model Entries" -msgstr "Mallin merkit" +msgstr "Mallikirjaukset" #. module: account #: field:account.account,code:0 @@ -1082,7 +1139,7 @@ msgstr "Koodi" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Ominaisuudet" #. module: account #: code:addons/account/account.py:2346 @@ -1092,7 +1149,7 @@ msgstr "" #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" -msgstr "Ei analyyttinen päiväkirja!" +msgstr "Ei analyyttistä päiväkirjaa!" #. module: account #: report:account.partner.balance:0 @@ -1118,6 +1175,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi tilin.\n" +"

\n" +" When doing multi-currency transactions, you may loose or " +"gain\n" +" some amount due to changes of exchange rate. This menu " +"gives\n" +" you a forecast of the Gain or Loss you'd realized if those\n" +" transactions were ended today. Only for accounts having a\n" +" secondary currency set.\n" +"

\n" +" " #. module: account #: field:account.bank.accounts.wizard,acc_name:0 @@ -1127,14 +1196,14 @@ msgstr "Tilin nimi." #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "" +msgstr "Avataan edellisen suljetun tilikauden saldoilla" #. module: account #: help:account.tax.code,notprintable:0 msgid "" "Check this box if you don't want any tax related to this tax code to appear " "on invoices" -msgstr "" +msgstr "Valitse tämä, jos et halua tämän verokoodin veroja laskulle." #. module: account #: field:report.account.receivable,name:0 @@ -1144,12 +1213,12 @@ msgstr "Vuoden viikko" #. module: account #: field:account.report.general.ledger,landscape:0 msgid "Landscape Mode" -msgstr "Maisematila" +msgstr "Vaakasuora" #. module: account #: help:account.fiscalyear.close,fy_id:0 msgid "Select a Fiscal year to close" -msgstr "Valitse suljettava kirjanpitovuosi" +msgstr "Valitse suljettava tilikausi" #. module: account #: help:account.account.template,user_type:0 @@ -1157,11 +1226,13 @@ msgid "" "These types are defined according to your country. The type contains more " "information about the account and its specificities." msgstr "" +"Nämä tyypit on määritelty maasi perusteella. Tyyppi sisältää lisää tietoa " +"tilistä ja sen määrityksistä." #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "Hyvitys " #. module: account #: code:addons/account/account_analytic_line.py:90 @@ -1177,7 +1248,7 @@ msgstr "Voimassaolosäännöt" #. module: account #: report:account.partner.balance:0 msgid "In dispute" -msgstr "Väittelyssä" +msgstr "riidanalainen" #. module: account #: view:account.journal:0 @@ -1189,7 +1260,7 @@ msgstr "Kassakoneet" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Myyntihyvitykset päiväkirja" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1225,7 +1296,7 @@ msgstr "Jakson alku" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Hyvitykset" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 @@ -1243,6 +1314,8 @@ msgid "" "Total amount (in Secondary currency) for transactions held in secondary " "currency for this account." msgstr "" +"Kokonaisarvo (toissijaisessa valuutassa) tapahtumille, jotka käsitellään " +"toissijaisella valuutalla tälle tilille." #. module: account #: field:account.fiscal.position.tax,tax_dest_id:0 @@ -1276,12 +1349,12 @@ msgstr "Peruuta laskut" #. module: account #: help:account.journal,code:0 msgid "The code will be displayed on reports." -msgstr "" +msgstr "Koodi näytetään raporteilla." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "" +msgstr "Ostoissa käytetyt verot" #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1301,7 +1374,7 @@ msgstr "Ulkomaalaisten valuuttojen kurssi(t)" #: view:account.analytic.account:0 #: field:account.config.settings,chart_template_id:0 msgid "Template" -msgstr "" +msgstr "Malli" #. module: account #: selection:account.analytic.journal,type:0 @@ -1311,12 +1384,12 @@ msgstr "Tilanne" #. module: account #: help:account.move.line,move_id:0 msgid "The move of this entry line." -msgstr "Merkinnän rivin siirto." +msgstr "Kirjatun vientirivin siirto." #. module: account #: field:account.move.line.reconcile,trans_nbr:0 msgid "# of Transaction" -msgstr "Liiketoimen nro" +msgstr "Tapahtumien määrä" #. module: account #: report:account.general.ledger:0 @@ -1324,7 +1397,7 @@ msgstr "Liiketoimen nro" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Entry Label" -msgstr "Merkinnän nimike" +msgstr "Kirjauksen nimi" #. module: account #: help:account.invoice,origin:0 @@ -1336,12 +1409,12 @@ msgstr "Dokumentin viite joka on luonut tämän laskun." #: view:account.analytic.line:0 #: view:account.journal:0 msgid "Others" -msgstr "Toiset" +msgstr "Muut" #. module: account #: view:account.subscription:0 msgid "Draft Subscription" -msgstr "" +msgstr "Merkintäehdotus" #. module: account #: view:account.account:0 @@ -1381,7 +1454,7 @@ msgstr "Sisältyy perusmäärään" #: model:ir.actions.act_window,name:account.action_account_entries_report_all #: model:ir.ui.menu,name:account.menu_action_account_entries_report_all msgid "Entries Analysis" -msgstr "Vientien analyysi" +msgstr "Kirjausten analyysi" #. module: account #: field:account.account,level:0 @@ -1393,7 +1466,7 @@ msgstr "taso" #: code:addons/account/wizard/account_change_currency.py:38 #, python-format msgid "You can only change currency for Draft Invoice." -msgstr "" +msgstr "Valuutan voi vaihtaa vain laskuehdotukselle." #. module: account #: report:account.invoice:0 @@ -1413,13 +1486,13 @@ msgstr "Verot" #: code:addons/account/wizard/account_financial_report.py:70 #, python-format msgid "Select a starting and an ending period" -msgstr "Valitse alku ja loppujakso" +msgstr "Valitse alku- ja loppujakso" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitandloss0 #: model:ir.actions.act_window,name:account.action_account_report_pl msgid "Profit and Loss" -msgstr "Tuotto ja menetys" +msgstr "Tulos" #. module: account #: model:ir.model,name:account.model_account_account_template @@ -1429,14 +1502,14 @@ msgstr "Tilimallit" #. module: account #: view:account.tax.code.template:0 msgid "Search tax template" -msgstr "Hae veropohja" +msgstr "Etsi veromalli" #. module: account #: view:account.move.reconcile:0 #: model:ir.actions.act_window,name:account.action_account_reconcile_select #: model:ir.actions.act_window,name:account.action_view_account_move_line_reconcile msgid "Reconcile Entries" -msgstr "Tee suoritusmerkintöjä" +msgstr "Täsmäytä kirjaukset" #. module: account #: model:ir.actions.report.xml,name:account.account_overdue @@ -1453,7 +1526,7 @@ msgstr "Alkusaldo" #. module: account #: view:account.invoice:0 msgid "Reset to Draft" -msgstr "Palauta luonnokseksi" +msgstr "Palauta ehdotukseksi" #. module: account #: view:account.aged.trial.balance:0 @@ -1464,12 +1537,12 @@ msgstr "Raporttivalinnat" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "Suljettava tilikausi" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 msgid "Invoice sequence" -msgstr "" +msgstr "Laskutusjärjestys" #. module: account #: model:ir.model,name:account.model_account_entries_report @@ -1488,11 +1561,13 @@ msgid "" "And after getting confirmation from the bank it will be in 'Confirmed' " "status." msgstr "" +"Kun uusi tiliote luodaan, sen tila on \"Ehdotus\".\n" +"Kun pankista on saatu vahvistus, tilitotteen tila on \"Vahvistettu\"." #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "Laskun tila" #. module: account #: view:account.bank.statement:0 @@ -1506,7 +1581,7 @@ msgstr "Pankin tiliote" #. module: account #: field:res.partner,property_account_receivable:0 msgid "Account Receivable" -msgstr "Tili saatavat" +msgstr "Myyntireskontra" #. module: account #: code:addons/account/account.py:612 @@ -1514,7 +1589,7 @@ msgstr "Tili saatavat" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopio)" #. module: account #: report:account.account.balance:0 @@ -1524,7 +1599,7 @@ msgstr "" #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" -msgstr "Saldo ei ole tasan 0" +msgstr "Tili saldo ei ole nolla (0)" #. module: account #: code:addons/account/account.py:1483 @@ -1532,22 +1607,22 @@ msgstr "Saldo ei ole tasan 0" msgid "" "There is no default debit account defined \n" "on journal \"%s\"." -msgstr "" +msgstr "Päiväkirjalle \"%s\" ei ole määritelty oletusarvoista Debet-tiliä." #. module: account #: view:account.tax:0 msgid "Search Taxes" -msgstr "Hae veroja" +msgstr "Etsi verot" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger msgid "Account Analytic Cost Ledger" -msgstr "" +msgstr "Analyyttisen kirjanpidon kustannuspaikka" #. module: account #: view:account.model:0 msgid "Create entries" -msgstr "Luo tapahtumat" +msgstr "Luo kirjaukset" #. module: account #: field:account.entries.report,nbr:0 @@ -1567,6 +1642,8 @@ msgid "" "There is nothing to reconcile. All invoices and payments\n" " have been reconciled, your partner balance is clean." msgstr "" +"Kaikki on täsmäytetty. Jokainen lasku ja maksu \n" +" on täsmäytetty ja kumppanin saldo on nolla." #. module: account #: field:account.chart.template,code_digits:0 @@ -1578,34 +1655,34 @@ msgstr "Desimaalien määrä" #. module: account #: field:account.journal,entry_posted:0 msgid "Skip 'Draft' State for Manual Entries" -msgstr "Ohita 'luonnos' tila käsinsyötetyissä vienneissä" +msgstr "Ohita tila \"Ehdotus\" manuaalikirjauksissa." #. module: account #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_report_common.py:164 #, python-format msgid "Not implemented." -msgstr "" +msgstr "Ei ole asennettu." #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "Luottoilmoitus" +msgstr "Hyvityslasku" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "" +msgstr "Sähköinen laskutus ja maksut" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 msgid "Cost Ledger for Period" -msgstr "" +msgstr "Jakson kulureskontra" #. module: account #: view:account.entries.report:0 msgid "# of Entries " -msgstr "Vientien määrä " +msgstr "Kirjausten määrä " #. module: account #: help:account.fiscal.position,active:0 @@ -1613,17 +1690,19 @@ msgid "" "By unchecking the active field, you may hide a fiscal position without " "deleting it." msgstr "" +"Poistamalla valinnan aktiivisesta kentästä, voi verokannan piilottaa, " +"kuitenkaan poistamatta sitä." #. module: account #: model:ir.model,name:account.model_temp_range msgid "A Temporary table used for Dashboard view" -msgstr "" +msgstr "Valvontanäytön käyttämä väliaikainen taulu" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree4 #: model:ir.ui.menu,name:account.menu_action_invoice_tree4 msgid "Supplier Refunds" -msgstr "Toimittajan hyvitykset" +msgstr "Hyvitykset toimittajalta" #. module: account #: field:account.tax.code,code:0 @@ -1634,7 +1713,7 @@ msgstr "Asiakoodi" #. module: account #: field:account.config.settings,company_footer:0 msgid "Bank accounts footer preview" -msgstr "" +msgstr "Pankkitilien esikatselu alatunnisteessa" #. module: account #: selection:account.account,type:0 @@ -1650,12 +1729,12 @@ msgstr "Suljettu" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries msgid "Recurring Entries" -msgstr "Toistuvat viennit" +msgstr "Toistuvat kirjaukset" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template msgid "Template for Fiscal Position" -msgstr "Malli talouskannalle" +msgstr "Verokannan malli" #. module: account #: view:account.subscription:0 @@ -1675,23 +1754,23 @@ msgstr "Veroton" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "Edistyneet asetukset" #. module: account #: view:account.bank.statement:0 msgid "Search Bank Statements" -msgstr "Hae pankkitiliotteita" +msgstr "Etsi pankkitiliotteita" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "" +msgstr "Kirjaamattommat päiväkirjamerkinnät" #. module: account #: view:account.chart.template:0 #: field:account.chart.template,property_account_payable:0 msgid "Payable Account" -msgstr "Maksettavat tili" +msgstr "Ostovelat" #. module: account #: field:account.tax,account_paid_id:0 @@ -1702,7 +1781,7 @@ msgstr "Hyvitä verotili" #. module: account #: model:ir.model,name:account.model_ir_sequence msgid "ir.sequence" -msgstr "" +msgstr "ir.sequence" #. module: account #: view:account.bank.statement:0 @@ -1725,7 +1804,7 @@ msgstr "Yleinen tili" #. module: account #: field:res.partner,debit_limit:0 msgid "Payable Limit" -msgstr "Maksettavat raja" +msgstr "Ostovelkaraja" #. module: account #: model:ir.actions.act_window,help:account.action_account_type_form @@ -1744,6 +1823,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa määritelläksesi uusi tilityyppi.\n" +"

\n" +" Tilityypillä määritellään miten tiliä käytetään kussakin " +"päiväkirjassa.\n" +" Tilityypin jaksotusmenetelmä määrittelee miten tili " +"käsitellään\n" +" tilinpäätösajossa. Raportit kuten tuloslaskelma ja tase " +"käyttävät\n" +" kategoriaa tulos tai tase.\n" +"

\n" +" " #. module: account #: report:account.invoice:0 @@ -1760,7 +1851,7 @@ msgstr "Lasku" #. module: account #: field:account.move,balance:0 msgid "balance" -msgstr "" +msgstr "saldo" #. module: account #: model:process.node,note:account.process_node_analytic0 @@ -1771,12 +1862,12 @@ msgstr "Analyyttisiä kuluja laskutettavaksi" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequence" -msgstr "Kirjanpitovuoden järjestys" +msgstr "Tilikauden numerointi" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Analyyttinen kirjanpito" #. module: account #: report:account.overdue:0 @@ -1806,7 +1897,7 @@ msgstr "Myynti tilityypeittäin" #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 päivää" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing @@ -1826,12 +1917,14 @@ msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." msgstr "" +"Tällä päiväkirjalla pitää olla keskitetty vastapuoli ilman että ohitetaan " +"ehdotustilan mahdollinen tarkistaminen." #. module: account #: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." -msgstr "" +msgstr "Osa kirjauksista on jo täsmäytetty." #. module: account #: field:account.tax.code,sum:0 @@ -1853,7 +1946,7 @@ msgstr "" #. module: account #: view:account.analytic.account:0 msgid "Pending Accounts" -msgstr "" +msgstr "Odottavat tilit" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -1872,6 +1965,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the journal " "period without removing it." msgstr "" +"Jos aktiivinen tili on asetettu tilaan \"epätosi\", se sallii päiväkirjan " +"kauden piilottamisen poistammatta kuitenkaan sitä." #. module: account #: field:account.report.general.ledger,sortby:0 @@ -1881,28 +1976,28 @@ msgstr "Järjestä" #. module: account #: model:ir.actions.act_window,name:account.act_account_partner_account_move_all msgid "Receivables & Payables" -msgstr "Saatavat & Maksettavat" +msgstr "Saatavat ja ostovelat" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "" +msgstr "Hallitse maksumääräyksiä" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "Kesto" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,last_closing_balance:0 msgid "Last Closing Balance" -msgstr "" +msgstr "Viimeinen päättävä saldo" #. module: account #: model:ir.model,name:account.model_account_common_journal_report msgid "Account Common Journal Report" -msgstr "" +msgstr "Kirjanpidon yleinen päiväkirjaraportti" #. module: account #: selection:account.partner.balance,display_partner:0 @@ -1917,7 +2012,7 @@ msgstr "Analyyttisen kirjanpidon kartat" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "Asiakkaan Viite:" +msgstr "Asiakkaan viite:" #. module: account #: help:account.tax,base_code_id:0 @@ -1929,27 +2024,27 @@ msgstr "Asiakkaan Viite:" #: help:account.tax.template,ref_tax_code_id:0 #: help:account.tax.template,tax_code_id:0 msgid "Use this code for the tax declaration." -msgstr "" +msgstr "Käytä tätä koodia veroilmoitukseen" #. module: account #: help:account.period,special:0 msgid "These periods can overlap." -msgstr "Nämä jaksot voivat olla päällekkäisiä." +msgstr "Nämä kaudet voivat olla päällekkäisiä." #. module: account #: model:process.node,name:account.process_node_draftstatement0 msgid "Draft statement" -msgstr "Luonnostiliote" +msgstr "Tiliote-ehdotus" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "" +msgstr "Lasku vahvistettu" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "Maksa toimittajillesi šekillä" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -1960,7 +2055,7 @@ msgstr "Luotonmäärä" #: field:account.bank.statement,message_ids:0 #: field:account.invoice,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Viestit" #. module: account #: view:account.vat.declaration:0 @@ -2042,11 +2137,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa kirjataksesi uuden ostolaskun.\n" +"

\n" +" Voit kontrolloida ostolaskuja toimittajilta sen perusteella, " +"mitä \n" +" tilasit ja mitä vastaanotettiin. OpenERP voi myös luoda \n" +" laskuehdotukset automaattisesti ostotilauksilta tai " +"kuiteilta.\n" +"

\n" +" " #. module: account #: sql_constraint:account.move.line:0 msgid "Wrong credit or debit value in accounting entry !" -msgstr "Väärä kredit tai debet arvo tiliviennissä" +msgstr "Väärä kredit- tai debetarvo kirjanpidon kirjauksessa!" #. module: account #: view:account.invoice.report:0 @@ -2058,7 +2163,7 @@ msgstr "Laskuanalyysi" #. module: account #: model:ir.model,name:account.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Sähköpostin ohjattu koostaminen" #. module: account #: model:ir.model,name:account.model_account_period_close @@ -2072,11 +2177,13 @@ msgid "" "This journal already contains items for this period, therefore you cannot " "modify its company field." msgstr "" +"Tämä päiväkirja sisältää jo vientejä kuluvalle kaudelle, tämän vuoksi et voi " +"enää muokata sen yritys-kenttää." #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form msgid "Entries By Line" -msgstr "Viennit riveittäin" +msgstr "Kirjaukset riveittäin" #. module: account #: field:account.vat.declaration,based_on:0 @@ -2104,7 +2211,7 @@ msgstr "" #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "Yrityksen oletusvaluutta" #. module: account #: field:account.invoice,move_id:0 @@ -2129,7 +2236,7 @@ msgstr "Omaisuuden analyysi" #. module: account #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase msgid "Sale/Purchase Journal" -msgstr "" +msgstr "Myynti-/ostopäiväkirja" #. module: account #: view:account.analytic.account:0 @@ -2152,7 +2259,7 @@ msgstr "Voimassa" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seuraajat" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal @@ -2172,28 +2279,29 @@ msgid "" "You cannot change the type of account to '%s' type as it contains journal " "items!" msgstr "" +"Tilityyppiä '%s' ei vii muuttaa, sisällä se sisältää jo päiväkirjavientejä." #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance msgid "Account Aged Trial balance Report" -msgstr "" +msgstr "Kirjanpidon koetaseen aikaraportti" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close Fiscal Year" -msgstr "" +msgstr "Sulje tilikausi" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "" +msgstr "Päiväkirja :" #. module: account #: sql_constraint:account.fiscal.position.tax:0 msgid "A tax fiscal position could be defined only once time on same taxes." -msgstr "" +msgstr "Verokanta voidaan määritellä vain kerran samalle verolle." #. module: account #: view:account.tax:0 @@ -2205,12 +2313,12 @@ msgstr "Veron määritys" #: view:account.config.settings:0 #: model:ir.actions.act_window,name:account.action_account_config msgid "Configure Accounting" -msgstr "" +msgstr "Konfiguroi kirjanpito" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference Unit of Measure" -msgstr "" +msgstr "Referenssiyksikkö" #. module: account #: help:account.journal,allow_date:0 @@ -2218,20 +2326,20 @@ msgid "" "If set to True then do not accept the entry if the entry date is not into " "the period dates" msgstr "" -"Jos asetetaan arvoon tosi (true) ei jakson ulkopuolisia päivämääriä " -"hyväksytä vientien päivämääriksi." +"Jos asetettu arvoon Tosi (True), ei hyväksy kirjauspäiviä, jotka eivät kuulu " +"tilijaksolle." #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 #, python-format msgid "Good job!" -msgstr "" +msgstr "Hyvin tehty!" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "Varojen hallinta" #. module: account #: view:account.account:0 @@ -2245,7 +2353,7 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" -msgstr "Maksettavat tilit" +msgstr "Ostovelat" #. module: account #: constraint:account.move.line:0 @@ -2254,6 +2362,8 @@ msgid "" "currency. You should remove the secondary currency on the account or select " "a multi-currency view on the journal." msgstr "" +"Päiväkirjaviennin tili vaatii lisäämään toisen valuutan. Poista tilin toinen " +"valuutta tai valitse päiväkirjasta monivaluuttanäkymä." #. module: account #: view:account.invoice:0 @@ -2273,12 +2383,12 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "" +msgstr "Analyyttisiä myynnin päiväkirjavientejä" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Italic Text (smaller)" -msgstr "" +msgstr "Kursivoitu teksti" #. module: account #: help:account.journal,cash_control:0 @@ -2286,6 +2396,8 @@ msgid "" "If you want the journal should be control at opening/closing, check this " "option" msgstr "" +"Jos haluat, että päiväkirjan pitäisi ohjata päivittäistä kassan avaus-" +"/sulkemistoimintaa, valitse tämä vaihtoehto" #. module: account #: view:account.bank.statement:0 @@ -2298,12 +2410,12 @@ msgstr "" #: selection:account.subscription,state:0 #: selection:report.invoice.created,state:0 msgid "Draft" -msgstr "Luonnos" +msgstr "Ehdotus" #. module: account #: field:account.move.reconcile,line_partial_ids:0 msgid "Partial Entry lines" -msgstr "Osittaiset merkintärivit" +msgstr "Osittaiset vientirivit" #. module: account #: view:account.fiscalyear:0 @@ -2321,12 +2433,12 @@ msgstr "Standardi koodaus" #: view:account.journal.select:0 #: view:project.account.analytic.line:0 msgid "Open Entries" -msgstr "Avoimet merkinnät" +msgstr "Avoimet kirjaukset" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "" +msgstr "Seuraava ostohyvityslaskun numero" #. module: account #: field:account.automatic.reconcile,account_ids:0 @@ -2336,7 +2448,7 @@ msgstr "Täsmäytettävät tilit" #. module: account #: model:process.transition,note:account.process_transition_filestatement0 msgid "Import of the statement in the system from an electronic file" -msgstr "" +msgstr "Lue tiliote järjestelmään tiedostosta." #. module: account #: model:process.node,name:account.process_node_importinvoice0 @@ -2366,18 +2478,18 @@ msgstr "Tilin verokartta" #: model:account.payment.term,name:account.account_payment_term_net #: model:account.payment.term,note:account.account_payment_term_net msgid "30 Net Days" -msgstr "" +msgstr "30 päivää netto" #. module: account #: code:addons/account/account_cash_statement.py:256 #, python-format msgid "You do not have rights to open this %s journal !" -msgstr "" +msgstr "SInulla ei ole käyttöoikeutta avata tätä %s päiväkirjaa !" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "" +msgstr "Tarkista ostolaskujen kokonaisarvo" #. module: account #: selection:account.invoice,state:0 @@ -2401,7 +2513,7 @@ msgstr "" #. module: account #: view:account.chart.template:0 msgid "Search Chart of Account Templates" -msgstr "" +msgstr "Hae tilikarttamalleista" #. module: account #: report:account.invoice:0 @@ -2447,14 +2559,14 @@ msgstr "Tulotili" #. module: account #: help:account.config.settings,default_sale_tax:0 msgid "This sale tax will be assigned by default on new products." -msgstr "" +msgstr "Tämä myyntivero on asetettu oletukseksi uusille tuotteille." #. module: account #: report:account.general.ledger_landscape:0 #: report:account.journal.period.print:0 #: report:account.journal.period.print.sale.purchase:0 msgid "Entries Sorted By" -msgstr "Merkintöjen järjestelyn peruste" +msgstr "Kiirjausten järjestelyn peruste" #. module: account #: field:account.change.currency,currency_id:0 @@ -2528,7 +2640,7 @@ msgstr "Tilikausi" #: help:accounting.report,fiscalyear_id:0 #: help:accounting.report,fiscalyear_id_cmp:0 msgid "Keep empty for all open fiscal year" -msgstr "Jätä tyhjäksi käyttääksesi kaikkia avoimia tilikausia" +msgstr "Jätä tyhjäksi kaikille avoimille tilikausille" #. module: account #: code:addons/account/account.py:653 @@ -2537,6 +2649,8 @@ msgid "" "You cannot change the type of account from 'Closed' to any other type as it " "contains journal items!" msgstr "" +"Et voi muuttaa tilityyppiä \"Suljettu\" muuhun tilaan, sillä se sisältää jo " +"päiväkirjavientejä!" #. module: account #: field:account.invoice.report,account_line_id:0 @@ -2562,7 +2676,7 @@ msgstr "" #: view:account.move:0 #: model:ir.model,name:account.model_account_move msgid "Account Entry" -msgstr "Tilimerkintä" +msgstr "Kirjaus" #. module: account #: field:account.sequence.fiscalyear,sequence_main_id:0 @@ -2576,6 +2690,8 @@ msgid "" "In order to delete a bank statement, you must first cancel it to delete " "related journal items." msgstr "" +"Jotta voit poistaa pankintiliotteen, sinun pitää ensin peruuttaa se, jotta " +"siihen liittyvät päiväkirjaviennit poistetaan." #. module: account #: field:account.invoice.report,payment_term:0 @@ -2591,13 +2707,13 @@ msgstr "Maksuehto" #: model:ir.actions.act_window,name:account.action_account_fiscal_position_form #: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form msgid "Fiscal Positions" -msgstr "Talouskannat" +msgstr "Verokanta" #. module: account #: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." -msgstr "" +msgstr "Et voi luoda päiväkirjavientejä suljetulle tilille %s %s." #. module: account #: field:account.period.close,sure:0 @@ -2613,17 +2729,17 @@ msgstr "Suodattimet" #: model:process.node,note:account.process_node_draftinvoices0 #: model:process.node,note:account.process_node_supplierdraftinvoices0 msgid "Draft state of an invoice" -msgstr "Laskun luonnostila" +msgstr "Laskuehdotus" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Tilin ominaisuudet" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Luo hyvitysehdotus" #. module: account #: view:account.partner.reconcile.process:0 @@ -2645,12 +2761,12 @@ msgstr "Tilin verokoodi" #: model:account.payment.term,name:account.account_payment_term_advance #: model:account.payment.term,note:account.account_payment_term_advance msgid "30% Advance End 30 Days" -msgstr "" +msgstr "30% ennakko, loput 30 päivän kuluessa" #. module: account #: view:account.entries.report:0 msgid "Unreconciled entries" -msgstr "Suorittamattomat merkinnät" +msgstr "Täsmäyttämättömät kirjaukset" #. module: account #: field:account.invoice.tax,base_code_id:0 @@ -2661,7 +2777,7 @@ msgstr "Peruskoodi" #. module: account #: help:account.invoice.tax,sequence:0 msgid "Gives the sequence order when displaying a list of invoice tax." -msgstr "" +msgstr "Antaa esitysjärjestyksen näytettäessä laskun verolistan" #. module: account #: field:account.tax,base_sign:0 @@ -2680,7 +2796,7 @@ msgstr "Debettien keskitys" #: view:account.invoice.confirm:0 #: model:ir.actions.act_window,name:account.action_account_invoice_confirm msgid "Confirm Draft Invoices" -msgstr "Vahvista luonnoslaskut" +msgstr "Vahvista laskuehdotukset" #. module: account #: field:account.entries.report,day:0 @@ -2699,7 +2815,7 @@ msgstr "Uudistettavat tilit" #. module: account #: model:ir.model,name:account.model_account_model_line msgid "Account Model Entries" -msgstr "Tilimallin merkinnät" +msgstr "Tilimallin kirjaukset" #. module: account #: code:addons/account/account.py:3202 @@ -2753,7 +2869,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "" +msgstr "Seuraava ostolaskunumero" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -2802,7 +2918,7 @@ msgstr "Analyyttinen tili" #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "Oletusarvoinen ostovero" #. module: account #: view:account.account:0 @@ -2834,7 +2950,7 @@ msgstr "Konfiguraatio virhe!" #: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." -msgstr "" +msgstr "Tila %s vahvistettu, päiväkirjaviennit on luotu." #. module: account #: field:account.invoice.report,price_average:0 @@ -2887,7 +3003,7 @@ msgstr "Viite" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "" +msgstr "Ostovero" #. module: account #: help:account.move.line,tax_code_id:0 @@ -2903,7 +3019,7 @@ msgstr "" #: model:process.node,note:account.process_node_reconciliation0 #: model:process.node,note:account.process_node_supplierreconciliation0 msgid "Comparison between accounting and payment entries" -msgstr "Vertailu kirjanpito ja maksutapahtumien välillä" +msgstr "Vertailu kirjanpitokirjausten ja maksutapahtumien välillä" #. module: account #: model:ir.ui.menu,name:account.menu_automatic_reconcile @@ -2913,7 +3029,7 @@ msgstr "Automaattinen täsmäytys" #. module: account #: field:account.invoice,reconciled:0 msgid "Paid/Reconciled" -msgstr "Maksettu/Suoritettu" +msgstr "Maksettu/Täsmäytetty" #. module: account #: field:account.tax,ref_base_code_id:0 @@ -2958,31 +3074,31 @@ msgstr "Päivämäärät" #. module: account #: field:account.chart.template,parent_id:0 msgid "Parent Chart Template" -msgstr "" +msgstr "Ylätason tilikartan malli" #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 msgid "Parent Tax Account" -msgstr "Ylin verotili" +msgstr "Ylätason verotili" #. module: account #: view:account.aged.trial.balance:0 #: model:ir.actions.act_window,name:account.action_account_aged_balance_view #: model:ir.ui.menu,name:account.menu_aged_trial_balance msgid "Aged Partner Balance" -msgstr "Tase kumppanien erääntyvistä" +msgstr "Kumppanien erääntymisraportti" #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries" -msgstr "Tiliviennit" +msgstr "Kirjaukset" #. module: account #: constraint:account.move.line:0 msgid "Account and Period must belong to the same company." -msgstr "" +msgstr "Tilin ja kauden pitää kuulua samalle yritykselle." #. module: account #: field:account.invoice.line,discount:0 @@ -3008,7 +3124,7 @@ msgstr "Arvonalennuksen määrä" #: field:account.bank.statement,message_unread:0 #: field:account.invoice,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Lukemattomat viestit" #. module: account #: code:addons/account/wizard/account_invoice_state.py:44 @@ -3017,12 +3133,14 @@ msgid "" "Selected invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-" "Forma' state." msgstr "" +"Valittua laskua/laskuja ei vahvistaa, koska ei/eivät ole \"Ehdotus\" tai " +"\"Proforma\" -tilassa." #. module: account #: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." -msgstr "" +msgstr "Valitse jakso, joka kuuluu samalle yhtiölle." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all @@ -3035,7 +3153,7 @@ msgstr "Myynnit tileittäin" #: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "" +msgstr "Et voi poistaa kirjattua päiväkirjavientiä \"%s\"." #. module: account #: view:account.invoice:0 @@ -3045,7 +3163,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_journal_id:0 msgid "Sale journal" -msgstr "" +msgstr "Myyntipäiväkirja" #. module: account #: code:addons/account/account.py:2346 @@ -3062,6 +3180,8 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" +"Tämä päiväkirja sisältää jo kirjauksia, joten et voi enää muuttaa sen " +"yrityskenttää." #. module: account #: code:addons/account/account.py:409 @@ -3075,12 +3195,12 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_tax_code_list #: model:ir.ui.menu,name:account.menu_action_tax_code_list msgid "Tax codes" -msgstr "Varokoodit" +msgstr "Verokoodit" #. module: account #: view:account.account:0 msgid "Unrealized Gains and losses" -msgstr "" +msgstr "Toteutumattomat voitot ja tappiot" #. module: account #: model:ir.ui.menu,name:account.menu_account_customer @@ -3107,7 +3227,7 @@ msgstr "Elokuu" #. module: account #: field:accounting.report,debit_credit:0 msgid "Display Debit/Credit Columns" -msgstr "" +msgstr "Näytä Debet/Kredit-sarakkeet" #. module: account #: selection:account.entries.report,month:0 @@ -3129,12 +3249,12 @@ msgstr "" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Täsmäyttämättömät tapahtumat" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 msgid "Only One Chart Template Available" -msgstr "" +msgstr "Vain yksi tilikarttamalli saatavilla" #. module: account #: view:account.chart.template:0 @@ -3147,7 +3267,7 @@ msgstr "Menotili" #: field:account.bank.statement,message_summary:0 #: field:account.invoice,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Yhteenveto" #. module: account #: help:account.invoice,period_id:0 @@ -3173,7 +3293,7 @@ msgstr "Peruskoodin määrä" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "Oletus myyntivero" +msgstr "Oletusmyyntivero" #. module: account #: help:account.model.line,date_maturity:0 @@ -3191,7 +3311,7 @@ msgstr "Taloudellinen kirjanpito" #. module: account #: model:ir.ui.menu,name:account.menu_account_report_pl msgid "Profit And Loss" -msgstr "Voitto ja tappio" +msgstr "Tulos" #. module: account #: view:account.fiscal.position:0 @@ -3205,7 +3325,7 @@ msgstr "Voitto ja tappio" #: model:ir.model,name:account.model_account_fiscal_position #: field:res.partner,property_account_position:0 msgid "Fiscal Position" -msgstr "Talouskanta" +msgstr "Verokanta" #. module: account #: code:addons/account/account_invoice.py:823 @@ -3232,13 +3352,13 @@ msgstr "Alatilit" #: model:ir.actions.report.xml,name:account.account_account_balance #: model:ir.ui.menu,name:account.menu_general_Balance_report msgid "Trial Balance" -msgstr "" +msgstr "Koetase" #. module: account #: code:addons/account/account.py:431 #, python-format msgid "Unable to adapt the initial balance (negative value)." -msgstr "" +msgstr "Alkusaldot eivät kelpaa (negatiivinen arvo)." #. module: account #: selection:account.invoice,type:0 @@ -3257,7 +3377,7 @@ msgstr "Valitse tilikausi" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "" +msgstr "Päivämääräväli" #. module: account #: view:account.period:0 @@ -3273,12 +3393,12 @@ msgstr "Laskutusvaluutta" #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "Kirjanpitoraportit" #. module: account #: field:account.payment.term,line_ids:0 msgid "Terms" -msgstr "Termit" +msgstr "Ehdot" #. module: account #: field:account.chart.template,tax_template_ids:0 @@ -3288,7 +3408,7 @@ msgstr "Veromallilista" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "" +msgstr "Myynti-/ostopäiväkirja" #. module: account #: help:account.account,currency_mode:0 @@ -3309,7 +3429,7 @@ msgstr "" #: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." -msgstr "" +msgstr "Mallitilillä ei ole ylätilin koodia." #. module: account #: help:account.chart.template,code_digits:0 @@ -3320,12 +3440,12 @@ msgstr "Numeroiden määrä tilikoodissa" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "Toimittajan maksuehdot" #. module: account #: view:account.fiscalyear:0 msgid "Search Fiscalyear" -msgstr "Hae kirjanpitovuosi" +msgstr "Hae tilikausi" #. module: account #: selection:account.tax,applicable_type:0 @@ -3383,7 +3503,7 @@ msgstr "Analyyttiset rivit" #. module: account #: view:account.invoice:0 msgid "Proforma Invoices" -msgstr "" +msgstr "Proforma laskut" #. module: account #: model:process.node,name:account.process_node_electronicfile0 @@ -3393,12 +3513,12 @@ msgstr "Sähköinen tiedosto" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Täsmäytysviite" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 msgid "Company has a chart of accounts" -msgstr "" +msgstr "Yrityksellä on tilikartta" #. module: account #: model:ir.model,name:account.model_account_tax_code_template @@ -3498,7 +3618,7 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Account Period" -msgstr "" +msgstr "Tilikausi" #. module: account #: help:account.account,currency_id:0 @@ -3525,7 +3645,7 @@ msgstr "Tilikarttamallit" #. module: account #: view:account.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Tapahtumat" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile @@ -3545,6 +3665,15 @@ msgid "" " 'Unreconciled' will copy only the journal items that were unreconciled on " "the first day of the new fiscal year." msgstr "" +"Aseta menetelmä, jolla luodaan tilinpäätösviennit kaikille tämän tyyppisille " +"tileille.\n" +"\n" +" \"Ei mitään\" tarkoittaa että tilinpäätöksessä ei tehdä mitään.\n" +" \"Tasapaino\" 'käytetään yleensä käteistileille.\n" +" \"Kaikki\" kopioi jokaisen olemassa olevan päiväkirjaviennin vuodelta, myös " +"täsmäytetyt.\n" +" \"Täsmäyttämätön\" kopioi vain päiväkirjaviennit, joita ei ole täsmäytetty " +"uuden tilikauden ensimmäisenä päivänä." #. module: account #: view:account.tax.template:0 @@ -3612,7 +3741,7 @@ msgstr "Osto" #: view:account.installer:0 #: view:wizard.multi.charts.accounts:0 msgid "Accounting Application Configuration" -msgstr "Kirjanpitoohjelmiston konfiguraatio" +msgstr "Kirjanpitoohjelmiston konfigurointi" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration @@ -3640,7 +3769,7 @@ msgstr "" #: field:account.bank.statement,balance_start:0 #: field:account.treasury.report,starting_balance:0 msgid "Starting Balance" -msgstr "Aloitus balanssi" +msgstr "Alkusaldo" #. module: account #: code:addons/account/account_invoice.py:1465 @@ -3659,7 +3788,7 @@ msgstr "Sulje jakso" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Avaava välisaldo" #. module: account #: constraint:account.move.line:0 @@ -3709,7 +3838,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile #: model:ir.actions.act_window,name:account.action_account_unreconcile_select msgid "Unreconcile Entries" -msgstr "Poista merkintöjen suoritukset" +msgstr "Poista kirjausten täsmäytykset" #. module: account #: field:account.tax.code,notprintable:0 @@ -3760,6 +3889,8 @@ msgid "" "All selected journal entries will be validated and posted. It means you " "won't be able to modify their accounting fields anymore." msgstr "" +"Kaikki valitut päiväkirjaviennit vahvistetaan ja kirjataan. Tämä tarkoittaa " +"sitä, että et voi muuttaa enää niiden kirjanpitokenttiä." #. module: account #: code:addons/account/account_move_line.py:98 @@ -3818,6 +3949,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi asiakaslaskun.\n" +"

\n" +" OpenERP:in sähköinen laskutus mahdollistaa helpon ja nopean\n" +" asiakkaiden maksusuoritusten keruun. Asiakaasi saa laskun \n" +" sähköpostilla ja hän voi maksaa sen verkossa ja/tai lukea " +"sen\n" +" omaan tietojärjestelmäänsä.\n" +"

\n" +" Asiakaskeskustelut näytetään automaattisesti kunkin laskun\n" +" alapuolella.\n" +"

\n" +" " #. module: account #: field:account.tax.code,name:0 @@ -3830,7 +3974,7 @@ msgstr "Verotapauksen nimi" #: view:account.invoice:0 #: model:process.node,name:account.process_node_draftinvoices0 msgid "Draft Invoice" -msgstr "Luonnoslasku" +msgstr "Laskuehdotus" #. module: account #: view:account.config.settings:0 @@ -3849,6 +3993,8 @@ msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" +"Et voi muokata tähän päiväkirjaan kirjattua vientiä.\n" +"Aseta ensin päiväkirja tilaan, jossa hyväksytään kirjausten peruutus." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal @@ -3884,7 +4030,7 @@ msgstr "Luo tili" #: code:addons/account/wizard/account_fiscalyear_close.py:62 #, python-format msgid "The entries to reconcile should belong to the same company." -msgstr "" +msgstr "Täsmäytettävien kirjausten pitää kuulua samalle yritykselle." #. module: account #: field:account.invoice.tax,tax_amount:0 @@ -3894,7 +4040,7 @@ msgstr "Verokoodin määrä" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "" +msgstr "Täsmäyttämättömät päiväkirjaviennit" #. module: account #: selection:account.account.type,close_method:0 @@ -4054,7 +4200,7 @@ msgstr "Ei suotimia" #: view:account.invoice.report:0 #: model:res.groups,name:account.group_proforma_invoices msgid "Pro-forma Invoices" -msgstr "" +msgstr "Proformalaskut" #. module: account #: view:res.partner:0 @@ -4073,7 +4219,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "Tarkista toimittajalaskujen kokonaisarvo" #. module: account #: view:account.tax:0 @@ -4087,6 +4233,8 @@ msgid "" "When monthly periods are created. The status is 'Draft'. At the end of " "monthly period it is in 'Done' status." msgstr "" +"Kun kuukausijaksot on luotu, niin tila on \"Ehdotus\" ja kun kuukauden " +"lopussa sen tila on \"Valmis\"" #. module: account #: view:account.invoice.report:0 @@ -4110,13 +4258,13 @@ msgstr "Hae analyyttisiä rivejä" #. module: account #: field:res.partner,property_account_payable:0 msgid "Account Payable" -msgstr "Tili maksettavat" +msgstr "Ostovelat" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:88 #, python-format msgid "The periods to generate opening entries cannot be found." -msgstr "" +msgstr "Jaksoja joille avausviennit kirjataan, ei löydy." #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 @@ -4128,7 +4276,7 @@ msgstr "Maksumääräys" msgid "" "Check this option if you want the user to reconcile entries in this account." msgstr "" -"Valitse tämä jos haluat käyttäjän tekevän suoritusmerkinnät tällä tilillä." +"Valitse tämä jos haluat käyttäjän täsmäyttävän tämän tilin kirjauksia." #. module: account #: report:account.invoice:0 @@ -4144,7 +4292,7 @@ msgstr "" #. module: account #: field:analytic.entries.report,nbr:0 msgid "#Entries" -msgstr "Vientien määrä" +msgstr "Kirjausten määrä" #. module: account #: view:account.state.open:0 @@ -4187,7 +4335,7 @@ msgstr "" #. module: account #: field:account.move.line,date:0 msgid "Effective date" -msgstr "Tehokas päiväys" +msgstr "Kirjauspäivä" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:100 @@ -4215,7 +4363,7 @@ msgstr "" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "" +msgstr "Päiväkirja analyyttisille kirjauksille" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4287,7 +4435,7 @@ msgstr "" msgid "" "Value of Loss or Gain due to changes in exchange rate when doing multi-" "currency transactions." -msgstr "" +msgstr "Tuloa valuutan vaihteluista johtuen monivaluuttatapahtumissa" #. module: account #: view:account.analytic.line:0 @@ -4312,7 +4460,7 @@ msgstr "otsikko" #: view:account.invoice:0 #: view:account.subscription:0 msgid "Set to Draft" -msgstr "Aseta luonnokseksi" +msgstr "Aseta ehdotukseksi" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form @@ -4359,7 +4507,7 @@ msgstr "Näytä tilit" #. module: account #: view:account.state.open:0 msgid "(Invoice should be unreconciled if you want to open it)" -msgstr "(Laskun suoritusmerkinnät tulisi poistaa jos se halutaan avata)" +msgstr "(Avattavan laskun pitää olla täsmäyttämätön)" #. module: account #: field:account.tax,account_analytic_collected_id:0 @@ -4382,7 +4530,7 @@ msgstr "Veronimi" #: view:account.config.settings:0 #: model:ir.ui.menu,name:account.menu_finance_configuration msgid "Configuration" -msgstr "Konfiguraatio" +msgstr "Konfigurointi" #. module: account #: model:account.payment.term,name:account.account_payment_term @@ -4402,6 +4550,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Tätä maksuehtoa käytetään oletuehdon asemasta myyntitilauksilla ja " +"myyntilaskuilla." #. module: account #: view:account.config.settings:0 @@ -4435,7 +4585,7 @@ msgstr "Hae veropohjia" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation msgid "Draft Entries" -msgstr "Viennit luonnostilassa" +msgstr "Kirjausehdotukset" #. module: account #: help:account.config.settings,decimal_precision:0 @@ -4444,6 +4594,8 @@ msgid "" "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." msgstr "" +"Esim. demsimaalitarkkuus 2 sallii päiväkirjavientien kirjaamisen muodosssa " +"9,99 EUR ja desimaalitarkkuus 3 puolestaan muodossa 0,0231 EUR." #. module: account #: field:account.account,shortcut:0 @@ -4540,7 +4692,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "" +msgstr "Toimitttajalaskujen numerointi" #. module: account #: code:addons/account/account_invoice.py:610 @@ -4581,14 +4733,14 @@ msgstr "Huomautus" #. module: account #: selection:account.financial.report,sign:0 msgid "Reverse balance sign" -msgstr "" +msgstr "Käänteinen saldomerkki" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:191 #, python-format msgid "Balance Sheet (Liability account)" -msgstr "" +msgstr "Tase (Vastattavaa)" #. module: account #: help:account.invoice,date_invoice:0 @@ -4599,7 +4751,7 @@ msgstr "Jätä tyhjäksi käyttääksesi nykyistä päivämäärää" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Sulkeva välisaldo" #. module: account #: field:account.tax,base_code_id:0 @@ -4617,6 +4769,8 @@ msgstr "" #: help:res.company,paypal_account:0 msgid "Paypal username (usually email) for receiving online payments." msgstr "" +"Paypal -käyttäjänimi (yleensä sähköpostiosoite) online-maksujen " +"vastaanottamista varten." #. module: account #: selection:account.aged.trial.balance,target_move:0 @@ -4638,7 +4792,7 @@ msgstr "" #: code:addons/account/report/common_report_header.py:68 #, python-format msgid "All Posted Entries" -msgstr "Kaikki viedyt merkinnät" +msgstr "Kaikki kirjatut viennit." #. module: account #: field:report.aged.receivable,name:0 @@ -4653,7 +4807,7 @@ msgstr "Valitse jos haluat näyttää myös 0 saldolla olevat tilit" #. module: account #: field:account.move.reconcile,opening_reconciliation:0 msgid "Opening Entries Reconciliation" -msgstr "" +msgstr "Avausvientien täsmäytys" #. module: account #. openerp-web @@ -4698,7 +4852,7 @@ msgstr "" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Main Title 1 (bold, underlined)" -msgstr "" +msgstr "Pääotsikko 1 (lihavoitu, alleviivattu)" #. module: account #: report:account.analytic.account.balance:0 @@ -4801,7 +4955,7 @@ msgstr "" #. module: account #: view:account.use.model:0 msgid "Create Entries From Models" -msgstr "Luo merkinnät malleista" +msgstr "Luo viennit malleista" #. module: account #: field:account.account,reconcile:0 @@ -4850,7 +5004,7 @@ msgstr "Toistuvat mallit" #. module: account #: view:account.tax:0 msgid "Children/Sub Taxes" -msgstr "" +msgstr "Alatilit/alaverot" #. module: account #: xsl:account.transfer:0 @@ -4945,7 +5099,7 @@ msgstr "Uusi" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Sale Tax" -msgstr "" +msgstr "Myyntivero" #. module: account #: field:account.tax,ref_tax_code_id:0 @@ -4970,6 +5124,9 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" +"Kun päiväkirjakausi on luotu, till on \"Ehdotus\". Kun raportti tulostetaan, " +"niin tilaksi tulee \"Tulostettu\". Kun kaikki tapahtumat on käsitelty " +"loppuun, niin tilaksi tulee \"Valmis\"." #. module: account #: code:addons/account/account.py:3205 @@ -5054,7 +5211,7 @@ msgstr "Laskutettu" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "" +msgstr "Kirjatut päiväkirjaviennit" #. module: account #: view:account.use.model:0 @@ -5104,7 +5261,7 @@ msgstr "Pankkisuorituksiin käytettävä pankkitiliote" #. module: account #: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 msgid "Draft invoices are validated. " -msgstr "Luonnoslaskut on tarkistettu. " +msgstr "Laskuehdotukset on vahvistettu. " #. module: account #: help:account.tax,account_collected_id:0 @@ -5122,7 +5279,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Journal Entries to Review" -msgstr "" +msgstr "Päiväkirjavientien tarkastus" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 @@ -5340,7 +5497,7 @@ msgstr "Maksut" #. module: account #: field:account.subscription.line,move_id:0 msgid "Entry" -msgstr "Merkintä" +msgstr "Kirjaus" #. module: account #: field:account.tax,python_compute_inv:0 @@ -5429,19 +5586,19 @@ msgstr "Verotili" #: model:ir.actions.act_window,name:account.action_account_report_bs #: model:ir.ui.menu,name:account.menu_account_report_bs msgid "Balance Sheet" -msgstr "Tilinpäätös" +msgstr "Tase" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "" +msgstr "Tulos (Tulotili)" #. module: account #: field:account.journal,allow_date:0 msgid "Check Date in Period" -msgstr "" +msgstr "Tarkista jakson päiväys" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports @@ -5453,7 +5610,7 @@ msgstr "Kirjanpitoraportit" #: view:analytic.entries.report:0 #: model:ir.actions.act_window,name:account.action_move_line_form msgid "Entries" -msgstr "Merkinnät" +msgstr "Kirjaukset" #. module: account #: view:account.entries.report:0 @@ -5512,7 +5669,7 @@ msgstr "Summa" #: code:addons/account/wizard/account_fiscalyear_close.py:41 #, python-format msgid "End of Fiscal Year Entry" -msgstr "Tilikauden päättymisen merkintä" +msgstr "Tilinpäätöskirjaus" #. module: account #: model:process.transition,name:account.process_transition_customerinvoice0 @@ -5536,7 +5693,7 @@ msgstr "" #: field:account.tax,child_depend:0 #: field:account.tax.template,child_depend:0 msgid "Tax on Children" -msgstr "Vero alemmille" +msgstr "Vero alatileille" #. module: account #: help:res.partner,last_reconciliation_date:0 @@ -5552,7 +5709,7 @@ msgstr "" #. module: account #: field:account.journal,update_posted:0 msgid "Allow Cancelling Entries" -msgstr "Salli merkintöjen poisto" +msgstr "Salli peruutusviennit" #. module: account #: code:addons/account/wizard/account_use_model.py:44 @@ -5566,7 +5723,7 @@ msgstr "" #. module: account #: field:account.tax.code,sign:0 msgid "Coefficent for parent" -msgstr "" +msgstr "Kerroin ylätasolle" #. module: account #: report:account.partner.balance:0 @@ -5607,7 +5764,7 @@ msgstr "Sisällytä perusmäärään" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "Toimittajalaskun numero" #. module: account #: help:account.payment.term.line,days:0 @@ -5629,11 +5786,12 @@ msgstr "Määrän laskenta" #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" +"Suljetun jakson %s päiväkirjaan %s ei voi lisätä tai muuttaa kirjauksia." #. module: account #: view:account.journal:0 msgid "Entry Controls" -msgstr "Merkintöjen hallinta" +msgstr "Kirjausten hallinta" #. module: account #: view:account.analytic.chart:0 @@ -5691,7 +5849,7 @@ msgstr "" #: field:account.partner.ledger,initial_balance:0 #: field:account.report.general.ledger,initial_balance:0 msgid "Include Initial Balances" -msgstr "" +msgstr "Sisältäen alkusaldot" #. module: account #: view:account.invoice.tax:0 @@ -5721,12 +5879,12 @@ msgstr "Laskuraportti viimeisimmän 15 päivän ajalta" #. module: account #: field:account.fiscalyear,end_journal_period_id:0 msgid "End of Year Entries Journal" -msgstr "Päätösmerkintöjen päiväkirja" +msgstr "Tilinpäätöskirjausten päiväkirja" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "Hyvitysehdotus " #. module: account #: view:cash.box.in:0 @@ -5764,7 +5922,7 @@ msgstr "Tuotteen määrä" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Unposted" -msgstr "" +msgstr "Kirjaamatta" #. module: account #: view:account.change.currency:0 @@ -5777,7 +5935,7 @@ msgstr "Vaihda valuuttaa" #: model:process.node,note:account.process_node_accountingentries0 #: model:process.node,note:account.process_node_supplieraccountingentries0 msgid "Accounting entries." -msgstr "" +msgstr "Kirjaukset" #. module: account #: view:account.invoice:0 @@ -5800,7 +5958,7 @@ msgstr "Analyyttiset tilit" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "" +msgstr "Asiakaslaskut ja -hyvitykset" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -5851,6 +6009,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Tätä maksuehtoa käytetään oletusarvon asemasta ostotilauksilla ja " +"toimittajalaskuilla." #. module: account #: help:account.automatic.reconcile,power:0 @@ -5869,12 +6029,12 @@ msgstr "" #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 msgid "Fiscal Position Template" -msgstr "Talouskannan malli" +msgstr "Verokannan malli" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Hyvitysehdotus" #. module: account #: view:account.analytic.chart:0 @@ -5901,7 +6061,7 @@ msgstr "Avaa kassakone" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Automatic formatting" -msgstr "" +msgstr "Automaattinen muotoilu" #. module: account #: view:account.move.line.reconcile:0 @@ -5940,7 +6100,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close #: model:ir.ui.menu,name:account.menu_wizard_fy_close msgid "Generate Opening Entries" -msgstr "Luo avausviennit" +msgstr "Luo avauskirjaukset" #. module: account #: help:account.tax,type:0 @@ -5986,7 +6146,7 @@ msgstr "Arvonalennus" #. module: account #: view:account.entries.report:0 msgid "entries" -msgstr "tapahtumat" +msgstr "kirjaukset" #. module: account #: field:res.partner,debit:0 @@ -6039,7 +6199,7 @@ msgstr "Avoin viite" #: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" -msgstr "Saatavat ja maksettavat tilit" +msgstr "Saatavat ja ostovelat -tilit" #. module: account #: field:account.fiscal.position.account.template,position_id:0 @@ -6108,6 +6268,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa lisätäksesi tilin.\n" +"

\n" +" An account is part of a ledger allowing your company\n" +" to register all kinds of debit and credit transactions.\n" +" Companies present their annual accounts in two main parts: " +"the\n" +" balance sheet and the income statement (profit and loss\n" +" account). The annual accounts of a company are required by " +"law\n" +" to disclose a certain amount of information.\n" +"

\n" +" " #. module: account #: view:account.invoice.report:0 @@ -6158,7 +6331,7 @@ msgstr "" #. module: account #: field:account.journal,loss_account_id:0 msgid "Loss Account" -msgstr "" +msgstr "Tappiotili" #. module: account #: field:account.tax,account_collected_id:0 @@ -6203,7 +6376,7 @@ msgstr "Ilmoita" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template msgid "Template Tax Fiscal Position" -msgstr "" +msgstr "Verokannan malli" #. module: account #: help:account.tax,name:0 @@ -6221,7 +6394,7 @@ msgstr "Tulostuspäivä" #: selection:account.tax,type:0 #: selection:account.tax.template,type:0 msgid "None" -msgstr "Ei mikään" +msgstr "Ei mitään" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree3 @@ -6232,7 +6405,7 @@ msgstr "Asiakashyvitykset" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "" +msgstr "Saldo toisessa valuutassa" #. module: account #: field:account.journal.period,name:0 @@ -6262,14 +6435,14 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Fiscal Position Remark :" -msgstr "Tilikausiposition huomautus :" +msgstr "Verokanta, huomautus:" #. module: account #: view:analytic.entries.report:0 #: model:ir.actions.act_window,name:account.action_analytic_entries_report #: model:ir.ui.menu,name:account.menu_action_analytic_entries_report msgid "Analytic Entries Analysis" -msgstr "" +msgstr "Analyyttisten kirjausten analyysi" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 @@ -6286,7 +6459,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Entry" -msgstr "Analyyttinen merkintä" +msgstr "Analyyttinen kirjaus" #. module: account #: view:res.company:0 @@ -6310,6 +6483,8 @@ msgid "" "As soon as the reconciliation is done, the invoice's state turns to “done” " "(i.e. paid) in the system." msgstr "" +"Heti kun täsmäytys on tehty, niin laskun tilaksi tulee \"Valmis\" (esim. " +"maksettu)." #. module: account #: view:account.chart.template:0 @@ -6354,12 +6529,12 @@ msgstr "Tämä on malli toistuvasta kirjanpidon merkinnästä" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 msgid "Sales Tax(%)" -msgstr "" +msgstr "Myyntivero(%)" #. module: account #: view:account.tax.code:0 msgid "Reporting Configuration" -msgstr "Raportoinnin konfiguraatio" +msgstr "Raportoinnin konfigurointi" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree4 @@ -6374,6 +6549,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa rekisteröidäksesi toimittajalta saapuneen " +"hyvityksen.\n" +"

\n" +" Sen sijaan, että loisit toimittajalta saapuneen hyvityksen " +"manuaalisesti, voit\n" +" luoda hyvitykset ja täsmäyttää ne suoraan vastaavilta " +"ostolaskuilta.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -6425,7 +6610,7 @@ msgstr "" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 msgid "Select a fiscal year to close" -msgstr "Valitse suljettava kirjanpitovuosi" +msgstr "Valitse suljettava tilikausi" #. module: account #: help:account.chart.template,tax_template_ids:0 @@ -6498,12 +6683,12 @@ msgstr "Peruuta" #: model:account.account.type,name:account.data_account_type_receivable #: selection:account.entries.report,type:0 msgid "Receivable" -msgstr "Saatavat" +msgstr "Saatava" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on closed account." -msgstr "" +msgstr "Et voi luoda päiväkirjatapahtumia suljetulle tilille." #. module: account #: code:addons/account/account_invoice.py:633 @@ -6617,7 +6802,7 @@ msgstr "Täsmäytys: siirry seuraavaan kumppaniin" #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance #: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance msgid "Inverted Analytic Balance" -msgstr "Vastaava analyyttinen saldo" +msgstr "Käänteinen analyyttinen saldo" #. module: account #: field:account.tax.template,applicable_type:0 @@ -6641,6 +6826,7 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" +"Avaus/Päätösjaksoa ei ole määritelty, luo yksi jakso ja tee avausviennit." #. module: account #: help:account.tax.template,sequence:0 @@ -6746,7 +6932,7 @@ msgstr "Toimittajan hyvitys" #. module: account #: field:account.bank.statement,move_line_ids:0 msgid "Entry lines" -msgstr "Merkintärivit" +msgstr "Kirjausrivit" #. module: account #: field:account.move.line,centralisation:0 @@ -6833,6 +7019,8 @@ msgid "" "Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " "2%." msgstr "" +"Maksuehdon prosentit annetaan desimaalilukuina väliltä 0 - 1. Esim.; 2% " +"kirjataan 0,02." #. module: account #: report:account.invoice:0 @@ -6880,14 +7068,14 @@ msgstr "Muistiinpanot" #. module: account #: model:ir.model,name:account.model_analytic_entries_report msgid "Analytic Entries Statistics" -msgstr "" +msgstr "Analyyttisten kirjausten tilastot" #. module: account #: code:addons/account/account_analytic_line.py:142 #: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " -msgstr "Merkinnät: " +msgstr "Kirjaukset: " #. module: account #: help:res.partner.bank,currency_id:0 @@ -6911,12 +7099,12 @@ msgstr "Tosi" #: code:addons/account/account.py:190 #, python-format msgid "Balance Sheet (Asset account)" -msgstr "" +msgstr "Tase (Vastaavaa)" #. module: account #: model:process.node,note:account.process_node_draftstatement0 msgid "State is draft" -msgstr "Tila on luonnos" +msgstr "Tila on ehdotus" #. module: account #: view:account.move.line:0 @@ -6971,14 +7159,14 @@ msgstr "Luo" #. module: account #: model:process.transition.action,name:account.process_transition_action_createentries0 msgid "Create entry" -msgstr "Luo merkintä" +msgstr "Luo kirjaus" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:189 #, python-format msgid "Profit & Loss (Expense account)" -msgstr "" +msgstr "Tulos (menotili)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 @@ -7006,7 +7194,7 @@ msgstr "" #. module: account #: selection:account.financial.report,sign:0 msgid "Preserve balance sign" -msgstr "" +msgstr "Säilytä saldon merkki" #. module: account #: view:account.vat.declaration:0 @@ -7073,7 +7261,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "Päiväkirjatapahtumat" +msgstr "Päiväkirjatviennit" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 @@ -7119,7 +7307,7 @@ msgstr "Kyllä" #: code:addons/account/report/common_report_header.py:67 #, python-format msgid "All Entries" -msgstr "Kaikki merkinnät" +msgstr "Kaikki kirjaukset" #. module: account #: constraint:account.move.reconcile:0 @@ -7137,7 +7325,7 @@ msgstr "" #: code:addons/account/account.py:434 #, python-format msgid "Opening Balance" -msgstr "Alkusaldo" +msgstr "Avaava tase" #. module: account #: model:ir.model,name:account.model_account_move_reconcile @@ -7147,7 +7335,7 @@ msgstr "Tilien suoritusmerkinnät" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax msgid "Taxes Fiscal Position" -msgstr "" +msgstr "Verokannat" #. module: account #: report:account.general.ledger:0 @@ -7170,6 +7358,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 "" +"Valitse tämä valintalaatikko jos et ole varma tästä päiväkirjakirjauksesta " +"ja haluat lähettää huomautuksen \"tarkastettava\" asiantuntijalle." #. module: account #: field:account.chart.template,complete_tax_set:0 @@ -7183,6 +7373,8 @@ msgstr "" msgid "" "Selected Entry Lines does not have any account move enties in draft state." msgstr "" +"Valituilla riveillä ei ole yhtään kirjanpidon siirtokirjausta tilassa " +"ehdotus." #. module: account #: view:account.chart.template:0 @@ -7235,7 +7427,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "Hallitse asiakkaan maksuja" #. module: account #: help:report.invoice.created,origin:0 @@ -7258,13 +7450,13 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Taxes used in Sales" -msgstr "" +msgstr "Myynnissä käytetyt verot" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 msgid "Customer Invoices" -msgstr "Asiakas Laskutus" +msgstr "Asiakaslaskut" #. module: account #: view:account.tax:0 @@ -7296,7 +7488,7 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 msgid "A statement with manual entries becomes a draft statement." -msgstr "" +msgstr "Manuaalisia kirjauksia sisältävä ote muutetaan tilaan \"Ehdotus\"" #. module: account #: view:account.aged.trial.balance:0 @@ -7319,7 +7511,7 @@ msgstr "Lähdedokumentti" #. module: account #: help:account.config.settings,company_footer:0 msgid "Bank accounts as printed in the footer of each printed document" -msgstr "" +msgstr "Pankkitilit tulostettuna jokaisen tulostetun asiakirjojen alareunaan" #. module: account #: constraint:account.account:0 @@ -7328,6 +7520,8 @@ msgid "" "You cannot define children to an account with internal type different of " "\"View\"." msgstr "" +"Konfigurointivirhe!\n" +"Et voi määritellä alatiliä tilille, jonka sisäinen tyyppi on \"Näkymä\"." #. module: account #: model:ir.model,name:account.model_accounting_report @@ -7387,7 +7581,7 @@ msgstr "Tiliveron malli" #. module: account #: view:account.journal.select:0 msgid "Are you sure you want to open Journal Entries?" -msgstr "" +msgstr "Oletko varma, että haluat avata päiväkirjaan kirjatut viennit?" #. module: account #: view:account.state.open:0 @@ -7397,12 +7591,12 @@ msgstr "Haluatko varmasti avata tämän laskun?" #. module: account #: field:account.chart.template,property_account_expense_opening:0 msgid "Opening Entries Expense Account" -msgstr "" +msgstr "Avausvientien menotili" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Asiakasviite" #. module: account #: field:account.account.template,parent_id:0 @@ -7418,7 +7612,7 @@ msgstr "Hinta" #: view:account.bank.statement:0 #: field:account.bank.statement,closing_details_ids:0 msgid "Closing Cashbox Lines" -msgstr "" +msgstr "Suljetaan kassakoneyhteydet" #. module: account #: view:account.bank.statement:0 @@ -7436,7 +7630,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "" +msgstr "Kirjatut viennit" #. module: account #: help:account.payment.term.line,value_amount:0 @@ -7469,7 +7663,7 @@ msgstr "Asiakkaan kokonaisvelan määrä." #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "" +msgstr "Päiväkirjaviennit" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules @@ -7498,9 +7692,9 @@ msgid "" "new counterpart but will share the same counterpart. This is used in fiscal " "year closing." msgstr "" -"Valitse määrittääksesi että jokainen merkintä tähän päiväkirjaan ei luo " -"uutta vastinetta vaan käyttää jaettua vastinetta. Tätä käytetään tilikauden " -"päätökseen." +"Valitse määrittääksesi, että yksikään kirjaus tähän päiväkirjaan, ei luo " +"uutta vastapuolta vaan käyttävät yhteistä jaettua vastapuolta. Tätä " +"käytetään tilikauden päätökseen." #. module: account #: field:account.bank.statement,closing_date:0 @@ -7520,7 +7714,7 @@ msgstr "Ostojen veron oletusarvo" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "" +msgstr "Avausvientien tulotili" #. module: account #: field:account.config.settings,group_proforma_invoices:0 @@ -7551,12 +7745,12 @@ msgstr "Laskuviite" #. module: account #: field:account.fiscalyear.close,report_name:0 msgid "Name of new entries" -msgstr "Uusien merkintöjen nimi" +msgstr "Uusien kirjausten nimi" #. module: account #: view:account.use.model:0 msgid "Create Entries" -msgstr "Luo merkinnät" +msgstr "Luo kirjaukset" #. module: account #: model:ir.model,name:account.model_cash_box_out @@ -7655,7 +7849,7 @@ msgstr "Laskun rivi" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "Asiakas- ja toimittajahyvitykset" #. module: account #: field:account.financial.report,sign:0 @@ -7705,7 +7899,7 @@ msgstr "Proforma" #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "Epätasapainossa" +msgstr "Saldoero" #. module: account #: selection:account.move.line,centralisation:0 @@ -7791,7 +7985,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "" +msgstr "Kirjaamattomat päiväkirjaviennit" #. module: account #: help:account.invoice.refund,date:0 @@ -7816,7 +8010,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile msgid "Manual Reconciliation" -msgstr "Käsin tehty täsmäytys" +msgstr "Manuaalinen täsmäytys" #. module: account #: report:account.overdue:0 @@ -7852,6 +8046,7 @@ msgstr "Peruuta valitut laskut" msgid "" "This field is used to generate legal reports: profit and loss, balance sheet." msgstr "" +"Tätä kenttää käytetään luomaan viralliset raportit: tuloslaskelma ja tase." #. module: account #: selection:account.entries.report,month:0 @@ -7897,7 +8092,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "" +msgstr "Kirjaa päiväkirjaviennit" #. module: account #: selection:account.bank.statement.line,type:0 @@ -7959,12 +8154,12 @@ msgstr "" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "" +msgstr "Päiväkirjaviennin numero" #. module: account #: view:account.financial.report:0 msgid "Parent Report" -msgstr "" +msgstr "Ylätason raportti" #. module: account #: constraint:account.account:0 @@ -8003,7 +8198,7 @@ msgstr "Varat" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "" +msgstr "Laskettu saldo" #. module: account #. openerp-web @@ -8016,13 +8211,13 @@ msgstr "" #: field:account.account,parent_id:0 #: field:account.financial.report,parent_id:0 msgid "Parent" -msgstr "Ylempi tili" +msgstr "Ylätaso" #. module: account #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Profit" -msgstr "" +msgstr "Voitto" #. module: account #: help:account.payment.term.line,days2:0 @@ -8057,9 +8252,10 @@ msgid "" "to the higher ones. The order is important if you have a tax with several " "tax children. In this case, the evaluation order is important." msgstr "" -"Sekvenssikenttää käytetään verorivien tuomiseen alemmista sekvensseistä " -"ylempiin. Tuominen on tärkeää jos käyttämälläsi verolla on useita alaveroja. " -"Tässä tapauksessa arviointia on tärkeää." +"Sarjanumerokenttää käytetään verorivien järjestämiseen alemmista " +"sarjanumeroista ylempiin. Järjestys on tärkeä, jos on määritelty vero " +"useilla alaveroilla. Järjestys on tärkeä, jos verolla on useita alaveroja, " +"jolloin käsittelyjärjestys on olennaisen tärkeä." #. module: account #: model:ir.model,name:account.model_account_cashbox_line @@ -8187,12 +8383,14 @@ msgid "" "The statement balance is incorrect !\n" "The expected balance (%.2f) is different than the computed one. (%.2f)" msgstr "" +"Otteen saldo on virheellinen!\n" +"Oletettu saldo \"%.2f\" poikkeaa lasketusta saldosta\"%.2f\"." #. module: account #: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." -msgstr "Tilin merkintärivit eivät ole hyväksytyssä tilassa." +msgstr "Tilin vientirivit eivät ole hyväksytyssä tilassa." #. module: account #: field:account.account.type,close_method:0 @@ -8202,7 +8400,7 @@ msgstr "Jaksotusmenetelmä" #. module: account #: model:process.node,note:account.process_node_electronicfile0 msgid "Automatic entry" -msgstr "Automaattinen vienti" +msgstr "Automaattinen kirjaus" #. module: account #: help:account.account,reconcile:0 @@ -8213,7 +8411,7 @@ msgstr "" #. module: account #: report:account.analytic.account.inverted.balance:0 msgid "Inverted Analytic Balance -" -msgstr "Käännetty analyyttinen saldo -" +msgstr "Käänteinen analyyttinen saldo -" #. module: account #: help:account.move.reconcile,opening_reconciliation:0 @@ -8225,7 +8423,7 @@ msgstr "" #: view:account.analytic.line:0 #: model:ir.actions.act_window,name:account.action_account_analytic_line_form msgid "Analytic Entries" -msgstr "Analyyttiset merkinnät" +msgstr "Analyyttiset kirjaukset" #. module: account #: view:account.analytic.account:0 @@ -8292,7 +8490,7 @@ msgstr "Maksu tilikirja" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "" +msgstr "Tälle yritykselle ei ole määritelty tilikautta" #. module: account #: view:account.invoice:0 @@ -8419,13 +8617,13 @@ msgstr "Tulo kategoria tili" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "" +msgstr "Säädetty saldo" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form #: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form_template msgid "Fiscal Position Templates" -msgstr "Talouskantojen mallit" +msgstr "Verokantojen mallit" #. module: account #: view:account.entries.report:0 @@ -8511,7 +8709,7 @@ msgstr "Osittaissuoritus" #. module: account #: model:ir.model,name:account.model_account_analytic_inverted_balance msgid "Account Analytic Inverted Balance" -msgstr "" +msgstr "Analyyttisen tilin käänteinen saldo" #. module: account #: model:ir.model,name:account.model_account_common_report @@ -8627,7 +8825,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state msgid "Fiscalyear Close state" -msgstr "Kirjanpitovuoden sulkemisen tila" +msgstr "Tilikauden sulkemisen tila" #. module: account #: field:account.invoice.refund,journal_id:0 @@ -8650,6 +8848,8 @@ msgstr "Suodata käyttäen" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" +"Sulkeaksesi jakson, sinun pitää ensin kirjata tähän liittyvät " +"päiväkirjaviennit." #. module: account #: view:account.entries.report:0 @@ -8674,7 +8874,7 @@ msgstr "" #: view:account.tax.code.template:0 #: field:account.tax.code.template,parent_id:0 msgid "Parent Code" -msgstr "Ylempi koodi" +msgstr "Ylätason koodi" #. module: account #: model:ir.model,name:account.model_account_payment_term_line @@ -8700,7 +8900,7 @@ msgstr "Tulosta veroilmoitus" #. module: account #: view:account.model.line:0 msgid "Journal Entry Model Line" -msgstr "" +msgstr "Päiväkirjaviennin mallirivi" #. module: account #: view:account.invoice:0 @@ -8751,7 +8951,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close msgid "Fiscalyear Close" -msgstr "Kirjanpitovuoden sulkeminen" +msgstr "Tilikauden sulkeminen" #. module: account #: sql_constraint:account.account:0 @@ -8800,7 +9000,7 @@ msgstr "Tilit Sallittuja (tyhjä tarkoittaa ei kontrollia)" #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "Myyntivero(%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 @@ -8835,7 +9035,7 @@ msgstr "Sekalaiset" #. module: account #: help:res.partner,debit:0 msgid "Total amount you have to pay to this supplier." -msgstr "Kokonaismaksun määrä joka sinun täytyy maksaa toimittajalle" +msgstr "Kokonaisarvo joka pitää maksaa toimittajalle." #. module: account #: model:process.node,name:account.process_node_analytic0 @@ -8854,7 +9054,7 @@ msgstr "Päiväkirjan nimi" #: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" -msgstr "Merkintä \"%s\" ei ole kelvollinen!" +msgstr "Kirjaus \"%s\" ei ole sallittu!" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -8871,7 +9071,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_account_invoice msgid "Invoicing & Payments" -msgstr "" +msgstr "Laskutus ja maksut" #. module: account #: help:account.invoice,internal_number:0 @@ -8889,7 +9089,7 @@ msgstr "Kulut" #. module: account #: help:account.chart,fiscalyear:0 msgid "Keep empty for all open fiscal years" -msgstr "Jätä tyhjäksi niin käytetään kaikkia avoimia kirjanpitovuosia" +msgstr "Jätä tyhjäksi kaikille avoimille tilikausille" #. module: account #: help:account.move.line,amount_currency:0 @@ -8897,7 +9097,7 @@ msgid "" "The amount expressed in an optional other currency if it is a multi-currency " "entry." msgstr "" -"Summa on ilmoitettu valinnaisessa toisessa valuutassa jos tämä on " +"Summa on ilmoitettu valinnaisessa toisessa valuutassa, jos kyseessä on " "monivaluuttainen merkintä." #. module: account @@ -8953,13 +9153,13 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_validentries0 msgid "Accountant validates the accounting entries coming from the invoice." -msgstr "" +msgstr "Kirjanpitäjä vahvistaa laskulta tulevat laskutuskirjaukset." #. module: account #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open msgid "Reconciled entries" -msgstr "Suoritetut merkinnät" +msgstr "Täsmäytetyt kirjaukset" #. module: account #: code:addons/account/account.py:2334 @@ -8981,7 +9181,7 @@ msgstr "Pakota jakso" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "" +msgstr "Tulosta kumppanin tilin saldo" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -9021,12 +9221,12 @@ msgstr "Tuntematon" #: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" -msgstr "Avauspäiväkirja" +msgstr "Avauskirjausten päiväkirja" #. module: account #: model:process.transition,note:account.process_transition_customerinvoice0 msgid "Draft invoices are checked, validated and printed." -msgstr "Luonnoslaskut on tarkistettu, hyväksytty ja tulostettu." +msgstr "Laskuehdotukset on tarkistettu, vahvistettu ja tulostettu." #. module: account #: field:account.bank.statement,message_is_follower:0 @@ -9048,11 +9248,15 @@ msgid "" "You cannot select an account type with a deferral method different of " "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" +"Konfigurointivirhe\n" +"Et voi valita tilityyppiä, jolla on jaksotusmenetelmänä muu kuin \"Ei " +"täsmäytetä\" tileille, jotka ovat sisäiseltä tyypiltään \"Ostovelka\" tai " +"\"Saatava\"." #. module: account #: field:account.config.settings,has_fiscal_year:0 msgid "Company has a fiscal year" -msgstr "" +msgstr "Yhtiöllä on tilikausi" #. module: account #: help:account.tax,child_depend:0 @@ -9089,7 +9293,7 @@ msgstr "" #: field:account.invoice,move_lines:0 #: field:account.move.reconcile,line_id:0 msgid "Entry Lines" -msgstr "Merkitärivit" +msgstr "Kirjausrivit" #. module: account #: model:ir.actions.act_window,name:account.action_open_journal_button @@ -9117,7 +9321,7 @@ msgstr "" #: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" -msgstr "" +msgstr "Myyntihyvitysten päiväkirja" #. module: account #: view:account.move:0 @@ -9143,7 +9347,7 @@ msgstr "Rekisteröiy maksu" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close states of Fiscal year and periods" -msgstr "" +msgstr "Sulje tilikauden ja jaksojen tilat" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 @@ -9196,7 +9400,7 @@ msgstr "" #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "" +msgstr "Näytä tiedot" #. module: account #: code:addons/account/account.py:3203 @@ -9215,7 +9419,7 @@ msgstr "" #: view:account.analytic.line:0 #: view:analytic.entries.report:0 msgid "My Entries" -msgstr "Omat viennit" +msgstr "Omat kirjaukset" #. module: account #: help:account.invoice,state:0 @@ -9230,6 +9434,14 @@ msgid "" "related journal entries may or may not be reconciled. \n" "* The 'Cancelled' status is used when user cancel invoice." msgstr "" +" * Tila \"Ehdotus\" on alussa laskulla, kun käyttäjä on luonut uuden " +"vahvistamattoman laskun.\n" +"* Tila \"Proforma\" laskulla on, jos sille ei ole luotu laskunumeroa.\n" +"* Tila \"Avoin\" on käytössä, kun käyttäjä luo laskun ja sille generoidaan " +"laskunumero. Lasku säilyy avoimena, kunnes se on maksettu. \n" +"* Tila \"Maksettu\" asetetaan automaattisesti, kun lasku on maksettu. " +"Vastaavat päiväkirjaviennit voivat tai eivät olla täsmäytettyjä. \n" +"* Tila \"Peruttu\" asetetaan laskulle, kun käyttäjä peruuttaa sen." #. module: account #: field:account.period,date_stop:0 @@ -9307,7 +9519,7 @@ msgstr "Kokonaisluotto" #. module: account #: model:process.transition,note:account.process_transition_suppliervalidentries0 msgid "Accountant validates the accounting entries coming from the invoice. " -msgstr "" +msgstr "Kirjanpitäjä vahvistaa laskulta tulevat laskutuskirjaukset. " #. module: account #: field:account.subscription,period_total:0 @@ -9327,13 +9539,13 @@ msgstr "Saatavien tilit" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 msgid "Supplier credit note sequence" -msgstr "" +msgstr "Toimittajan hyvityslaskujen numerointi" #. module: account #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "" +msgstr "Lasku on jo täsmäytetty." #. module: account #: help:account.config.settings,module_account_payment:0 @@ -9363,6 +9575,7 @@ msgstr "Saatavat tili" #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" +"Kirjausten täsmäytyksessä yrityksen pitää olla sama kaikissa vienneissä." #. module: account #: field:account.account,balance:0 @@ -9407,7 +9620,7 @@ msgstr "Näytä tili" #: model:account.account.type,name:account.data_account_type_payable #: selection:account.entries.report,type:0 msgid "Payable" -msgstr "Maksettavat" +msgstr "Ostovelka" #. module: account #: view:board.board:0 @@ -9423,12 +9636,12 @@ msgstr "Selitys" #. module: account #: model:process.transition,note:account.process_transition_entriesreconcile0 msgid "Accounting entries are the first input of the reconciliation." -msgstr "" +msgstr "Kirjanpitoviennit ovat ensimmäinen syöte täsmäytyksessä." #. module: account #: view:account.fiscalyear.close:0 msgid "Generate Fiscal Year Opening Entries" -msgstr "Luo merkinnät tilikauden avaukselle" +msgstr "Luo avausviennit tilikaudelle" #. module: account #: report:account.third_party_ledger:0 @@ -9446,7 +9659,7 @@ msgstr "" #: model:process.node,note:account.process_node_manually0 #: model:process.transition,name:account.process_transition_invoicemanually0 msgid "Manual entry" -msgstr "Käsin tehty vienti" +msgstr "Manuaalikirjaus" #. module: account #: report:account.general.ledger:0 @@ -9492,7 +9705,7 @@ msgstr "" #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Tällä asiakkaalle ei ole myöhässä olevia tapahtumia." #. module: account #: help:account.tax,account_paid_id:0 @@ -9548,7 +9761,7 @@ msgstr "Yleisraportti" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "Oletusmyyntivero" #. module: account #: report:account.overdue:0 @@ -9569,14 +9782,14 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "" +msgstr "Asiakas- ja toimittajalaskut" #. module: account #: model:process.node,note:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_paymentorderbank0 #: model:process.transition,name:account.process_transition_paymentreconcile0 msgid "Payment entries" -msgstr "Maksuviennit" +msgstr "Maksukirjaukset" #. module: account #: selection:account.entries.report,month:0 @@ -9600,7 +9813,7 @@ msgstr "Ennakkomaksu" #. module: account #: model:ir.model,name:account.model_account_analytic_balance msgid "Account Analytic Balance" -msgstr "" +msgstr "Analyyttisen tilin saldo" #. module: account #: report:account.account.balance:0 @@ -9661,6 +9874,11 @@ msgid "" "journals. Select 'Opening/Closing Situation' for entries generated for new " "fiscal years." msgstr "" +"Valitse \"Myynti\" asiakaslaskujen päiväkirjaksi, \"Osto\" " +"toimittajalaskujen päiväkirjaksi, \"Käteinen\" tai \"Pankki\" päiväkirjaksi " +"asiakas- tai toimittajasuorituksille. Valitse \"Yleinen\" sekalaisille " +"kirjauksille ja \"Avaus-/Sulkemistilanteet\" uuden tilikauden " +"avauskirjauksille." #. module: account #: view:account.subscription:0 @@ -9676,7 +9894,7 @@ msgstr "Eräpäivä" #. module: account #: view:account.subscription:0 msgid "Entry Subscription" -msgstr "Ennakkomaksun merkintä" +msgstr "Kirjauksen merkintä" #. module: account #: report:account.account.balance:0 @@ -9720,7 +9938,7 @@ msgstr "" #: view:account.invoice.report:0 #: model:process.node,name:account.process_node_supplierdraftinvoices0 msgid "Draft Invoices" -msgstr "Luonnoslaskut" +msgstr "Laskuehdotukset" #. module: account #: view:cash.box.in:0 @@ -9733,7 +9951,7 @@ msgstr "" #: view:account.entries.report:0 #: view:account.move.line:0 msgid "Unreconciled" -msgstr "Suorittamaton" +msgstr "Täsmäyttämätön" #. module: account #: code:addons/account/account_invoice.py:922 @@ -9744,7 +9962,7 @@ msgstr "Epäkelpo loppusumma!" #. module: account #: field:account.journal,sequence_id:0 msgid "Entry Sequence" -msgstr "Merkinnän sarja" +msgstr "Kirjaussarja" #. module: account #: model:ir.actions.act_window,help:account.action_account_period_tree @@ -9778,7 +9996,7 @@ msgstr "Analyyttisiltä tileiltä" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Konfiguroi tilikausi" #. module: account #: field:account.period,name:0 @@ -9850,12 +10068,12 @@ msgid "" "This account will be used instead of the default one as the payable account " "for the current partner" msgstr "" -"Tätä tiliä käytetään oletustilin sijasta tämän kumppanin maksettaville." +"Tätä tiliä käytetään oletustilin sijasta ostovelkoina tälle kumppanille." #. module: account #: field:account.period,special:0 msgid "Opening/Closing Period" -msgstr "Avaava/Sulkeva Jakso" +msgstr "Avaava/päättävä jakso" #. module: account #: field:account.account,currency_id:0 @@ -9896,7 +10114,7 @@ msgstr "Kredit" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "Laskuehdotus " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal @@ -9906,7 +10124,7 @@ msgstr "Yleinen päiväkirja" #. module: account #: view:account.model:0 msgid "Journal Entry Model" -msgstr "" +msgstr "Päiväkirjan kirjauksen malli" #. module: account #: code:addons/account/account.py:1073 @@ -9964,7 +10182,7 @@ msgstr "Summa ilman veroa" #: model:ir.ui.menu,name:account.menu_action_account_period #: model:ir.ui.menu,name:account.next_id_23 msgid "Periods" -msgstr "Jaksot" +msgstr "Kaudet" #. module: account #: field:account.invoice.report,currency_rate:0 @@ -9991,7 +10209,7 @@ msgstr "Huhtikuu" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 msgid "Profit (Loss) to report" -msgstr "" +msgstr "Raportoitava voitto (tappio)" #. module: account #: code:addons/account/account_invoice.py:379 @@ -10007,7 +10225,7 @@ msgstr "Avaa täsmäytettäväksi" #. module: account #: field:account.account,parent_left:0 msgid "Parent Left" -msgstr "Ylävasen" +msgstr "Ylätaso vasen" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -10073,7 +10291,7 @@ msgstr "Sisäinen tyyppi" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Luo kirjaukset ennen" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running @@ -10095,7 +10313,7 @@ msgstr "Valitse kausi" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Posted" -msgstr "Postitettu" +msgstr "Kirjattu" #. module: account #: report:account.account.balance:0 @@ -10147,19 +10365,19 @@ msgstr "Verolähde" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequences" -msgstr "Tilikausien sarjat" +msgstr "Tilikauden numeroinnit" #. module: account #: selection:account.financial.report,display_detail:0 msgid "No detail" -msgstr "" +msgstr "Ei tietoja" #. module: account #: field:account.account,unrealized_gain_loss:0 #: model:ir.actions.act_window,name:account.action_account_gain_loss #: model:ir.ui.menu,name:account.menu_unrealized_gains_losses msgid "Unrealized Gain or Loss" -msgstr "" +msgstr "Toteutumaton voitto tai tappio" #. module: account #: view:account.move:0 @@ -10194,7 +10412,7 @@ msgstr "Yhteensä" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "" +msgstr "Ei voi %s laskuehdotusta/proformalaskua/peruutusta." #. module: account #: field:account.tax,account_analytic_paid_id:0 @@ -10258,7 +10476,7 @@ msgstr "Yritys" #. module: account #: model:ir.ui.menu,name:account.menu_action_subscription_form msgid "Define Recurring Entries" -msgstr "Määrittele toistuvat viennit" +msgstr "Määrittele toistuvat kirjaukset" #. module: account #: field:account.entries.report,date_maturity:0 @@ -10278,7 +10496,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled #, python-format msgid "Unreconciled Entries" -msgstr "Täsmäyttämättömät viennit" +msgstr "Täsmäyttämättömät kirjaukset" #. module: account #: help:account.partner.reconcile.process,today_reconciled:0 @@ -10296,17 +10514,17 @@ msgstr "Luo kuukausijaksot" #. module: account #: field:account.tax.code.template,sign:0 msgid "Sign For Parent" -msgstr "" +msgstr "Ylätason merkki" #. module: account #: model:ir.model,name:account.model_account_balance_report msgid "Trial Balance Report" -msgstr "" +msgstr "Koetaseraportti" #. module: account #: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree msgid "Draft statements" -msgstr "Luonnostiliotteet" +msgstr "Tiliote-ehdotukset" #. module: account #: model:process.transition,note:account.process_transition_statemententries0 @@ -10379,12 +10597,12 @@ msgstr "Laskun tila on valmis" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Hallitse asiakkaan maksuseurantaa" #. module: account #: model:ir.model,name:account.model_report_account_sales msgid "Report of the Sales by Account" -msgstr "" +msgstr "Myyntiraportti tileittäin" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account @@ -10441,12 +10659,12 @@ msgstr "Laskurivit" #. module: account #: help:account.model.line,quantity:0 msgid "The optional quantity on entries." -msgstr "" +msgstr "Valinnainen määrä kirjauksia." #. module: account #: field:account.automatic.reconcile,reconciled:0 msgid "Reconciled transactions" -msgstr "Suoritetut tapahtumat" +msgstr "Täsmäyttämättömät tapahtumat" #. module: account #: model:ir.model,name:account.model_report_account_receivable @@ -10462,7 +10680,7 @@ msgstr "" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Partner Payment Term" -msgstr "Kumppani maksutermi" +msgstr "Kumppanin maksuehto" #. module: account #: field:temp.range,name:0 @@ -10533,7 +10751,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_aged_receivable_graph #: view:report.aged.receivable:0 msgid "Aged Receivable" -msgstr "" +msgstr "Erääntynyt saatava" #. module: account #: field:account.tax,applicable_type:0 @@ -10543,13 +10761,13 @@ msgstr "" #. module: account #: help:account.move.line,currency_id:0 msgid "The optional other currency if it is a multi-currency entry." -msgstr "Valinnainen toinen valuutta jos merkintä on monivaluuttainen." +msgstr "Valinnainen toinen valuutta, jos merkintä on monivaluuttainen." #. module: account #: model:process.transition,note:account.process_transition_invoiceimport0 msgid "" "Import of the statement in the system from a supplier or customer invoice" -msgstr "" +msgstr "Tuo toimittaja- tai asiakaslaskulta ilmoitus/tieto järjestelmään" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing @@ -10560,7 +10778,7 @@ msgstr "Laskutus" #: view:account.account:0 #: view:account.analytic.account:0 msgid "Parent Account" -msgstr "" +msgstr "Ylätason tili" #. module: account #: view:report.account.receivable:0 @@ -10580,7 +10798,7 @@ msgstr "Jäljellä olevan määrän eräpäivä." #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "" +msgstr "Kirjausten esitysjärjestys" #. module: account #: code:addons/account/account_invoice.py:1546 @@ -10697,6 +10915,8 @@ msgid "" "You cannot remove/deactivate an account which is set on a customer or " "supplier." msgstr "" +"Asiakkaalle tai toimittajalle asetettua tiliä ei voi poistaa tai muuttaa " +"sitä ei-aktiiviseksi." #. module: account #: model:ir.model,name:account.model_validate_account_move_lines @@ -10712,12 +10932,12 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 msgid "Invoice's state is Done." -msgstr "Laskun tila on valmis" +msgstr "Laskun tila on valmis." #. module: account #: model:process.transition,note:account.process_transition_reconcilepaid0 msgid "As soon as the reconciliation is done, the invoice can be paid." -msgstr "Kun täsmäytys on tehty, lasku voidaan maksaa" +msgstr "Kun täsmäytys on tehty, lasku voidaan maksaa." #. module: account #: code:addons/account/wizard/account_change_currency.py:59 @@ -10733,18 +10953,18 @@ msgstr "Hae tilipohjia" #. module: account #: view:account.invoice.tax:0 msgid "Manual Invoice Taxes" -msgstr "Laskuta verot manuaalisesti" +msgstr "Manuaaliset laskun verot" #. module: account #: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." -msgstr "" +msgstr "Toimittajan maksuehdossa ei ole maksuehtoriviä." #. module: account #: field:account.account,parent_right:0 msgid "Parent Right" -msgstr "Yläoikea" +msgstr "Ylätaso oikea" #. module: account #. openerp-web @@ -10804,7 +11024,7 @@ msgstr "Tilimalli" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Loss" -msgstr "" +msgstr "Tappio" #. module: account #: selection:account.entries.report,month:0 @@ -10819,7 +11039,7 @@ msgstr "Helmikuu" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_closing:0 msgid "Closing Unit Numbers" -msgstr "" +msgstr "Suljetaan kassakoneen numerot" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -10876,7 +11096,7 @@ msgstr "Tuotemallin kustannustili" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "Asiakkaan maksuehto" #. module: account #: help:accounting.report,label_filter:0 diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po index 62570cda221..1af4c3f3788 100644 --- a/addons/account/i18n/fr.po +++ b/addons/account/i18n/fr.po @@ -13,14 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:25+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: account -#: code:addons/account/wizard/account_fiscalyear_close.py:41 -#, python-format -msgid "End of Fiscal Year Entry" -msgstr "Ecriture de fin d'exercice comptable" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:49 @@ -1273,7 +1267,7 @@ msgid "" " " msgstr "" "

\n" -" Cliquer pour ajouter un compte\n" +" Cliquez pour ajouter un compte.\n" "

\n" " Lors de transactions impliquant plusieurs devises, vous " "pouvez perdre ou gagner\n" @@ -1284,6 +1278,7 @@ msgstr "" " transactions étaient passées aujourd'hui. Concerne seulement " "les comptes\n" " ayant une deuxième devise.\n" +"

\n" " " #. module: account @@ -1380,8 +1375,8 @@ msgid "" "

\n" " " msgstr "" -"< class=\"oe_view_nocontent_create\">\n" -" Cliquer pour créer un nouvel historique de trésorerie\n" +"

\n" +" Cliquez pour créer un nouvel historique de trésorerie.\n" "

\n" " Un registre de trésorerie vous permet de gérer les entrées " "de trésorerie dans votre journal de \n" @@ -1887,7 +1882,7 @@ msgstr "Recherche d'un relevé bancaire" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "Ecritures brouillon" +msgstr "Écritures brouillon" #. module: account #: view:account.chart.template:0 @@ -1947,7 +1942,7 @@ msgid "" " " msgstr "" "

\n" -" Cliquer pour définir un nouveau type de compte.\n" +" Cliquez pour définir un nouveau type de compte.\n" "

\n" " Le type de compte est utilisé pour déterminer comment un " "compte est utilisé dans\n" @@ -2279,7 +2274,7 @@ msgid "" " " msgstr "" "

\n" -" Cliquer pour enregistrer une nouvelle facture fournisseur.\n" +" Cliquez pour enregistrer une nouvelle facture fournisseur.\n" "

\n" " Vous pouvez contrôler la facture de votre fournisseur " "selon\n" @@ -2350,7 +2345,7 @@ msgid "" " " msgstr "" "

\n" -" Cliquer pour enregistrer un relevé de compte.\n" +" Cliquez pour enregistrer un relevé de compte.\n" "

\n" " Un relevé de compte est un résumé de toutes vos " "transactions financières\n" @@ -3025,6 +3020,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliquez pour ajouter une écriture.\n" +"

\n" +"Une écriture contient plusieurs lignes de journal, chacune étant une " +"transaction au débit ou au crédit.\n" +"

\n" +"OpenERP crée automatiquement une écriture pour chaque\n" +"pièce comptable : facture, avoir, paiement fournisseur, relevé de compte, " +"etc.\n" +"Vous ne devriez donc ajouter manuellement des écritures que pour\n" +"les \"opérations diverses\".\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -3529,8 +3537,8 @@ msgid "" "Tax base different!\n" "Click on compute to update the tax base." msgstr "" -"Base de taxe différente!\n" -"Cliquer sur calculer pour mettre à jour la base des taxes." +"Base de taxe différente !\n" +"Cliquez sur calculer pour mettre à jour la base des taxes." #. module: account #: field:account.partner.ledger,page_split:0 @@ -4173,7 +4181,7 @@ msgid "" " " msgstr "" "

\n" -" Cliquer pour créer une facture client.\n" +" Cliquez pour créer une facture client.\n" "

\n" " La gestion électronique des factures d'OpenERP facilite le " "suivi des\n" @@ -4268,7 +4276,7 @@ msgstr "Montant de la taxe" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "Ecritures non léttrées" +msgstr "Écritures non lettrées" #. module: account #: selection:account.account.type,close_method:0 @@ -4560,7 +4568,7 @@ msgstr "Ensemble complet de taxes" #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 msgid "Name" -msgstr "Decription" +msgstr "Description" #. module: account #: code:addons/account/installer.py:115 @@ -4588,7 +4596,7 @@ msgstr "Le journal doit avoir un compte de crédit et crédit par défaut" #: model:ir.actions.act_window,name:account.action_bank_tree #: model:ir.ui.menu,name:account.menu_action_bank_tree msgid "Setup your Bank Accounts" -msgstr "Configurer les compte bancaires" +msgstr "Configurer les comptes bancaires" #. module: account #: xsl:account.transfer:0 @@ -4661,7 +4669,7 @@ msgstr "Comptabilité" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current year" -msgstr "Ecritures avec période dans l'année en cours" +msgstr "Écritures avec période dans l'année en cours" #. module: account #: field:account.account,child_consol_ids:0 @@ -4823,7 +4831,7 @@ msgstr "" #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "Ecritures validées" +msgstr "Écritures validées" #. module: account #: field:account.move.line,blocked:0 @@ -4914,6 +4922,16 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +"Configurez les comptes bancaires de votre entreprise, et sélectionnez\n" +"ceux qui doivent apparaître en pied des rapports.\n" +"

\n" +"Si vous utilisez l'application de comptabilité d'OpenERP, des journaux\n" +"et des comptes seront créés automatiquement à partir de ces données.\n" +"

\n" +" " #. module: account #: constraint:account.tax.code.template:0 @@ -4963,6 +4981,8 @@ msgid "" "Cannot find a chart of account, you should create one from Settings\\" "Configuration\\Accounting menu." msgstr "" +"Aucun plan comptable disponible : vous devriez en créer un dans " +"Configuration\\Modèles\\Comptes" #. module: account #: field:account.entries.report,product_uom_id:0 @@ -5279,7 +5299,7 @@ msgstr "Modèles récurrents" #. module: account #: view:account.tax:0 msgid "Children/Sub Taxes" -msgstr "" +msgstr "Sous taxes" #. module: account #: xsl:account.transfer:0 @@ -5759,7 +5779,7 @@ msgstr "Balance Analytique -" #: field:account.vat.declaration,target_move:0 #: field:accounting.report,target_move:0 msgid "Target Moves" -msgstr "Mouvements Cibles" +msgstr "Mouvements cibles" #. module: account #: code:addons/account/account.py:1454 @@ -5967,6 +5987,12 @@ msgstr "Lettrage automatique" msgid "Amount" msgstr "Montant" +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:41 +#, python-format +msgid "End of Fiscal Year Entry" +msgstr "Écriture de fin d'exercice" + #. module: account #: model:process.transition,name:account.process_transition_customerinvoice0 #: model:process.transition,name:account.process_transition_paymentorderreconcilation0 @@ -6095,7 +6121,7 @@ msgstr "" #. module: account #: view:account.journal:0 msgid "Entry Controls" -msgstr "Contrôle des ecritures" +msgstr "Contrôle des écritures" #. module: account #: view:account.analytic.chart:0 @@ -6674,6 +6700,8 @@ msgid "" "You cannot validate this journal entry because account \"%s\" does not " "belong to chart of accounts \"%s\"." msgstr "" +"Vous ne pouvez pas valider cette écriture comptable car le compte \"%s\" " +"n'appartient pas au plan comptable \"%s\"." #. module: account #: view:account.financial.report:0 @@ -6824,6 +6852,8 @@ msgid "" "You cannot cancel an invoice which is partially paid. You need to " "unreconcile related payment entries first." msgstr "" +"Vous ne pouvez pas annuler une facture qui est partiellement payée. Vous " +"devez d'abord annuler le lettrage des lignes de paiement correspondantes." #. module: account #: field:product.template,taxes_id:0 @@ -6858,6 +6888,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliquez pour enregistrer un remboursement reçu d'un fournisseur.\n" +"

\n" +"Au lieu de créer ce remboursement manuellement, vous pouvez le\n" +"générer et le rapprocher directement depuis la facture fournisseur " +"associée.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -7124,6 +7162,13 @@ msgid "" "due date, make sure that the payment term is not set on the invoice. If you " "keep the payment term and the due date empty, it means direct payment." msgstr "" +"Si vous avez défini des conditions de règlement, la date d'échéance sera " +"calculée automatiquement lors de la génération des écritures comptables. Les " +"conditions de règlement peuvent définir plusieurs échéances : par exemple " +"50% comptant, et 50% à un mois. Si vous voulez forcer une date d'échéance, " +"assurez-vous qu'aucune condition de règlement n'est indiquée sur la facture. " +"Le paiement se fait au comptant si les conditions de règlement et la date " +"d'échéance sont laissées vides." #. module: account #: code:addons/account/account.py:414 @@ -7754,7 +7799,7 @@ msgstr "" #. module: account #: field:account.invoice,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "URL Paypal" #. module: account #: field:account.config.settings,module_account_voucher:0 @@ -7863,6 +7908,9 @@ msgid "" "You cannot define children to an account with internal type different of " "\"View\"." msgstr "" +"Erreur de configuration !\n" +"Vous ne pouvez ajouter un compte fils à un autre compte que si ce dernier a " +"le type interne \"Vue\"." #. module: account #: model:ir.model,name:account.model_accounting_report @@ -8338,7 +8386,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "Ecritures non validées" +msgstr "Écritures non validées" #. module: account #: help:account.invoice.refund,date:0 @@ -8788,7 +8836,7 @@ msgstr "" #: view:account.analytic.line:0 #: model:ir.actions.act_window,name:account.action_account_analytic_line_form msgid "Analytic Entries" -msgstr "Ecritures analytiques" +msgstr "Écritures analytiques" #. module: account #: view:account.analytic.account:0 @@ -9130,7 +9178,7 @@ msgstr "Types de compte" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "" +msgstr "${object.company_id.name} Facture (n°${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1210 @@ -9199,6 +9247,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliquez pour créer un journal.\n" +"

\n" +"Un journal sert à enregistrer les transactions relatives à toute l'activité " +"comptable quotidienne.\n" +"

\n" +"Une entreprise utilise habituellement un journal pour chaque moyen de " +"paiement (espèces, comptes bancaires, chèques), un journal d'achats, un " +"journal de ventes, et un journal pour les autres informations.\n" +"

\n" +" " #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state @@ -9447,6 +9506,8 @@ msgid "" "This allows you to check writing and printing.\n" " This installs the module account_check_writing." msgstr "" +"Permet l'édition et l'impression de chèques.\n" +"Ceci installe le module account_check_writing." #. module: account #: model:res.groups,name:account.group_account_invoice @@ -9525,6 +9586,9 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" +"Vous pouvez choisir ici le journal à utiliser pour la création de l'avoir. " +"Si vous laissez ce champ vide, l'avoir utilisera le même journal que la " +"facture actuelle." #. module: account #: help:account.bank.statement.line,sequence:0 @@ -9543,7 +9607,7 @@ msgstr "" #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open msgid "Reconciled entries" -msgstr "Écritures rapprochées" +msgstr "Écritures lettrées" #. module: account #: code:addons/account/account.py:2334 @@ -9555,7 +9619,7 @@ msgstr "Modèle non cohérent !" #: view:account.tax.code.template:0 #: view:account.tax.template:0 msgid "Tax Template" -msgstr "" +msgstr "Modèle de taxe" #. module: account #: field:account.invoice.refund,period:0 @@ -9575,6 +9639,10 @@ msgid "" "some non legal fields or you must unreconcile first.\n" "%s." msgstr "" +"Vous ne pouvez pas effectuer cette modification sur une écriture lettrée. " +"Vous pouvez uniquement changer certains champs légalement libres, ou bien " +"vous devez d'abord annuler le lettrage l'entrée.\n" +"%s." #. module: account #: help:account.financial.report,sign:0 @@ -9702,7 +9770,7 @@ msgstr "Période du" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Unité monétaire" #. module: account #: code:addons/account/account.py:3195 @@ -9725,6 +9793,9 @@ msgid "" "chart\n" " of accounts." msgstr "" +"Une fois les factures brouillons confirmées, vous ne pourrez plus les " +"modifier. Un numéro unique est attribué à chaque facture, et des écritures " +"comptables sont créées dans votre plan de comptes." #. module: account #: model:process.node,note:account.process_node_bankstatement0 @@ -9763,7 +9834,7 @@ msgstr "Créer facture" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "Configurer les données de comptabilité" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 @@ -9927,7 +9998,7 @@ msgstr "" #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "" +msgstr "La facture est déjà lettrée." #. module: account #: help:account.config.settings,module_account_payment:0 @@ -10156,7 +10227,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "Tâches périodiques" #. module: account #: view:account.invoice.report:0 @@ -10811,7 +10882,7 @@ msgstr "Total" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "Impossible de %s une facture brouillon/proforma/annulée" +msgstr "Impossible de %s une facture brouillon/proforma/annulée." #. module: account #: field:account.tax,account_analytic_paid_id:0 @@ -11004,7 +11075,7 @@ msgstr "L'état de la facture est \"Terminé\"" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Gérer les relances de paiement client" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -11097,7 +11168,7 @@ msgstr "Intervalle" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "Ecritures analytiques relatives au journal des achats." +msgstr "Écritures analytiques relatives à un journal d'achats." #. module: account #: help:account.account,type:0 diff --git a/addons/account/i18n/fr_BE.po b/addons/account/i18n/fr_BE.po index c6c22362a6e..221508f9f48 100644 --- a/addons/account/i18n/fr_BE.po +++ b/addons/account/i18n/fr_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/gl.po b/addons/account/i18n/gl.po index 92c313a1487..6207b03a116 100644 --- a/addons/account/i18n/gl.po +++ b/addons/account/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/gu.po b/addons/account/i18n/gu.po index 42d3c49d929..769f58a6ff0 100644 --- a/addons/account/i18n/gu.po +++ b/addons/account/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/he.po b/addons/account/i18n/he.po index 493fe5bb25b..4097f45c3b7 100644 --- a/addons/account/i18n/he.po +++ b/addons/account/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -459,7 +459,7 @@ msgstr "" #: field:account.tax.template,chart_template_id:0 #: field:wizard.multi.charts.accounts,chart_template_id:0 msgid "Chart Template" -msgstr "" +msgstr "תבנית תרשים" #. module: account #: selection:account.invoice.refund,filter_refund:0 @@ -497,7 +497,7 @@ msgstr "" #. module: account #: field:accounting.report,enable_filter:0 msgid "Enable Comparison" -msgstr "" +msgstr "אפשר השוואה" #. module: account #: view:account.analytic.line:0 @@ -602,7 +602,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state #: model:ir.ui.menu,name:account.menu_wizard_fy_close_state msgid "Close a Fiscal Year" -msgstr "" +msgstr "סגור שנת כספים" #. module: account #: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 @@ -625,7 +625,7 @@ msgstr "" #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "3 Monthly" -msgstr "" +msgstr "3 חודשי" #. module: account #: field:ir.sequence,fiscal_ids:0 @@ -708,7 +708,7 @@ msgstr "" #: view:account.period:0 #: view:account.period.close:0 msgid "Close Period" -msgstr "" +msgstr "סגור תקופה" #. module: account #: model:ir.model,name:account.model_account_common_partner_report @@ -760,7 +760,7 @@ msgstr "" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "צור החזר" #. module: account #: constraint:account.move.line:0 @@ -817,7 +817,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_charts msgid "Charts" -msgstr "" +msgstr "תרשימים" #. module: account #: code:addons/account/project/wizard/project_account_analytic_line.py:47 @@ -917,7 +917,7 @@ msgstr "" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "קוד ושם החשבון" #. module: account #: selection:account.entries.report,month:0 @@ -931,7 +931,7 @@ msgstr "" #. module: account #: selection:account.subscription,period_type:0 msgid "days" -msgstr "" +msgstr "ימים" #. module: account #: help:account.account.template,nocreate:0 @@ -966,7 +966,7 @@ msgstr "" #: view:account.payment.term:0 #: field:account.payment.term.line,value:0 msgid "Computation" -msgstr "" +msgstr "חישוב" #. module: account #: field:account.journal.cashbox.line,pieces:0 @@ -978,7 +978,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_tax_code_tree #: model:ir.ui.menu,name:account.menu_action_tax_code_tree msgid "Chart of Taxes" -msgstr "" +msgstr "תרשים מיסים" #. module: account #: view:account.fiscalyear:0 @@ -1004,7 +1004,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Approve" -msgstr "" +msgstr "אשר" #. module: account #: view:account.invoice:0 @@ -1096,7 +1096,7 @@ msgstr "" #: report:account.partner.balance:0 #: field:account.period,code:0 msgid "Code" -msgstr "" +msgstr "קוד" #. module: account #: view:account.config.settings:0 @@ -1141,7 +1141,7 @@ msgstr "" #. module: account #: field:account.bank.accounts.wizard,acc_name:0 msgid "Account Name." -msgstr "" +msgstr "שם החשבון." #. module: account #: field:account.journal,with_last_closing_balance:0 @@ -1234,7 +1234,7 @@ msgstr "" #: code:addons/account/account.py:3092 #, python-format msgid "Bank" -msgstr "" +msgstr "בנק" #. module: account #: field:account.period,date_start:0 @@ -1290,7 +1290,7 @@ msgstr "" #. module: account #: view:account.invoice.cancel:0 msgid "Cancel Invoices" -msgstr "" +msgstr "בטל חשבוניות" #. module: account #: help:account.journal,code:0 @@ -1335,7 +1335,7 @@ msgstr "" #. module: account #: field:account.move.line.reconcile,trans_nbr:0 msgid "# of Transaction" -msgstr "" +msgstr "# פעולות העברה" #. module: account #: report:account.general.ledger:0 @@ -1355,7 +1355,7 @@ msgstr "" #: view:account.analytic.line:0 #: view:account.journal:0 msgid "Others" -msgstr "" +msgstr "אחרים" #. module: account #: view:account.subscription:0 @@ -1388,7 +1388,7 @@ msgstr "" #: model:ir.model,name:account.model_account_account #: field:report.account.sales,account_id:0 msgid "Account" -msgstr "" +msgstr "חשבון" #. module: account #: field:account.tax,include_base_amount:0 @@ -1400,7 +1400,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_entries_report_all #: model:ir.ui.menu,name:account.menu_action_account_entries_report_all msgid "Entries Analysis" -msgstr "" +msgstr "ניתוח רשומות" #. module: account #: field:account.account,level:0 @@ -1533,7 +1533,7 @@ msgstr "" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (העתק)" #. module: account #: report:account.account.balance:0 @@ -1566,12 +1566,12 @@ msgstr "" #. module: account #: view:account.model:0 msgid "Create entries" -msgstr "" +msgstr "צור רשומות" #. module: account #: field:account.entries.report,nbr:0 msgid "# of Items" -msgstr "" +msgstr "# פריטים" #. module: account #: field:account.automatic.reconcile,max_amount:0 @@ -1592,7 +1592,7 @@ msgstr "" #: field:account.config.settings,code_digits:0 #: field:wizard.multi.charts.accounts,code_digits:0 msgid "# of Digits" -msgstr "" +msgstr "# ספרות" #. module: account #: field:account.journal,entry_posted:0 @@ -1609,7 +1609,7 @@ msgstr "" #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "" +msgstr "הערת אשראי" #. module: account #: view:account.config.settings:0 @@ -1624,7 +1624,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "# of Entries " -msgstr "" +msgstr "# רשומות " #. module: account #: help:account.fiscal.position,active:0 @@ -1664,7 +1664,7 @@ msgstr "" #: selection:account.fiscalyear,state:0 #: selection:account.period,state:0 msgid "Closed" -msgstr "" +msgstr "סגור" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries @@ -1694,7 +1694,7 @@ msgstr "" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "הגדרות מתקדמות" #. module: account #: view:account.bank.statement:0 @@ -1732,7 +1732,7 @@ msgstr "" #. module: account #: report:account.analytic.account.cost_ledger:0 msgid "Date/Code" -msgstr "" +msgstr "תאריך/קוד" #. module: account #: field:account.analytic.line,general_account_id:0 @@ -1825,7 +1825,7 @@ msgstr "" #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 ימים" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing @@ -1910,7 +1910,7 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "משך" #. module: account #: view:account.bank.statement:0 @@ -1926,7 +1926,7 @@ msgstr "" #. module: account #: selection:account.partner.balance,display_partner:0 msgid "All Partners" -msgstr "" +msgstr "כל השותפים" #. module: account #: view:account.analytic.chart:0 @@ -1936,7 +1936,7 @@ msgstr "" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "" +msgstr "הפניית לקוח" #. module: account #: help:account.tax,base_code_id:0 @@ -1973,7 +1973,7 @@ msgstr "" #. module: account #: field:account.move.line.reconcile,credit:0 msgid "Credit amount" -msgstr "" +msgstr "סכום האשראי" #. module: account #: field:account.bank.statement,message_ids:0 @@ -2095,12 +2095,12 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form msgid "Entries By Line" -msgstr "" +msgstr "רשומות לפי שורה" #. module: account #: field:account.vat.declaration,based_on:0 msgid "Based on" -msgstr "" +msgstr "מבוסס על" #. module: account #: model:ir.actions.act_window,help:account.action_bank_statement_tree @@ -2171,7 +2171,7 @@ msgstr "" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "עוקבים" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal @@ -2200,7 +2200,7 @@ msgstr "" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close Fiscal Year" -msgstr "" +msgstr "סגור שנת כספים" #. module: account #. openerp-web @@ -2248,7 +2248,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "ניהול נכסים" #. module: account #: view:account.account:0 @@ -2313,7 +2313,7 @@ msgstr "" #: selection:account.subscription,state:0 #: selection:report.invoice.created,state:0 msgid "Draft" -msgstr "" +msgstr "טיוטה" #. module: account #: field:account.move.reconcile,line_partial_ids:0 @@ -2421,7 +2421,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Customer Code" -msgstr "" +msgstr "קוד לקוח" #. module: account #: view:account.account.type:0 @@ -2474,12 +2474,12 @@ msgstr "" #. module: account #: field:account.change.currency,currency_id:0 msgid "Change to" -msgstr "" +msgstr "שנה ל" #. module: account #: view:account.entries.report:0 msgid "# of Products Qty " -msgstr "" +msgstr "# כמות מוצרים " #. module: account #: model:ir.model,name:account.model_product_template @@ -2556,7 +2556,7 @@ msgstr "" #. module: account #: field:account.invoice.report,account_line_id:0 msgid "Account Line" -msgstr "" +msgstr "שורה בחשבון" #. module: account #: view:account.addtmpl.wizard:0 @@ -2577,7 +2577,7 @@ msgstr "" #: view:account.move:0 #: model:ir.model,name:account.model_account_move msgid "Account Entry" -msgstr "" +msgstr "רשומת החשבון" #. module: account #: field:account.sequence.fiscalyear,sequence_main_id:0 @@ -2622,7 +2622,7 @@ msgstr "" #. module: account #: view:account.common.report:0 msgid "Filters" -msgstr "" +msgstr "מסננים" #. module: account #: model:process.node,note:account.process_node_draftinvoices0 @@ -2660,7 +2660,7 @@ msgstr "" #: model:account.payment.term,name:account.account_payment_term_advance #: model:account.payment.term,note:account.account_payment_term_advance msgid "30% Advance End 30 Days" -msgstr "" +msgstr "מקדמה 30% לאחר 30 ימים" #. module: account #: view:account.entries.report:0 @@ -2671,7 +2671,7 @@ msgstr "" #: field:account.invoice.tax,base_code_id:0 #: field:account.tax.template,base_code_id:0 msgid "Base Code" -msgstr "" +msgstr "קוד בסיס" #. module: account #: help:account.invoice.tax,sequence:0 @@ -2695,7 +2695,7 @@ msgstr "" #: view:account.invoice.confirm:0 #: model:ir.actions.act_window,name:account.action_account_invoice_confirm msgid "Confirm Draft Invoices" -msgstr "" +msgstr "אשר חשבוניות טיוטה" #. module: account #: field:account.entries.report,day:0 @@ -2704,7 +2704,7 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,day:0 msgid "Day" -msgstr "" +msgstr "יום" #. module: account #: model:ir.actions.act_window,name:account.act_account_renew_view @@ -2730,7 +2730,7 @@ msgstr "" #. module: account #: view:res.partner:0 msgid "Bank Details" -msgstr "" +msgstr "פרטי בנק" #. module: account #: model:ir.actions.act_window,help:account.action_move_journal_line @@ -2826,7 +2826,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_account_form #: model:ir.ui.menu,name:account.menu_analytic msgid "Accounts" -msgstr "" +msgstr "חשבונות" #. module: account #: code:addons/account/account.py:3541 @@ -2851,12 +2851,12 @@ msgstr "" #: field:account.invoice.report,price_average:0 #: field:account.invoice.report,user_currency_price_average:0 msgid "Average Price" -msgstr "" +msgstr "מחיר ממוצע" #. module: account #: report:account.overdue:0 msgid "Date:" -msgstr "" +msgstr "תאריך:" #. module: account #: report:account.journal.period.print:0 @@ -2884,7 +2884,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Disc.(%)" -msgstr "" +msgstr "הנחה (%)" #. module: account #: report:account.general.ledger:0 @@ -2964,7 +2964,7 @@ msgstr "" #: view:account.move.line:0 #: view:accounting.report:0 msgid "Dates" -msgstr "" +msgstr "תאריכים" #. module: account #: field:account.chart.template,parent_id:0 @@ -2998,7 +2998,7 @@ msgstr "" #. module: account #: field:account.invoice.line,discount:0 msgid "Discount (%)" -msgstr "" +msgstr "הנחה (%)" #. module: account #: help:account.journal,entry_posted:0 @@ -3097,7 +3097,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_account_customer #: model:ir.ui.menu,name:account.menu_finance_receivables msgid "Customers" -msgstr "" +msgstr "לקוחות" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -3113,7 +3113,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "August" -msgstr "" +msgstr "אוגוסט" #. module: account #: field:accounting.report,debit_credit:0 @@ -3127,7 +3127,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "October" -msgstr "" +msgstr "אוקטובר" #. module: account #: help:account.move.line,quantity:0 @@ -3152,7 +3152,7 @@ msgstr "" #: field:product.category,property_account_expense_categ:0 #: field:product.template,property_account_expense:0 msgid "Expense Account" -msgstr "" +msgstr "חשבון הוצאות" #. module: account #: field:account.bank.statement,message_summary:0 @@ -3174,7 +3174,7 @@ msgstr "" #. module: account #: field:account.config.settings,date_stop:0 msgid "End date" -msgstr "" +msgstr "תאריך סיום" #. module: account #: field:account.invoice.tax,base_amount:0 @@ -3257,7 +3257,7 @@ msgstr "" #: model:process.process,name:account.process_process_invoiceprocess0 #: selection:report.invoice.created,type:0 msgid "Customer Invoice" -msgstr "" +msgstr "חשבונית לקוח" #. module: account #: model:ir.model,name:account.model_account_open_closed_fiscalyear @@ -3268,7 +3268,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "" +msgstr "טווח תאריכים" #. module: account #: view:account.period:0 @@ -3284,7 +3284,7 @@ msgstr "" #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "דוחות החשבון" #. module: account #: field:account.payment.term,line_ids:0 @@ -3336,7 +3336,7 @@ msgstr "" #. module: account #: selection:account.tax,applicable_type:0 msgid "Always" -msgstr "" +msgstr "תמיד" #. module: account #: field:account.config.settings,module_account_accountant:0 @@ -3394,7 +3394,7 @@ msgstr "" #. module: account #: model:process.node,name:account.process_node_electronicfile0 msgid "Electronic File" -msgstr "" +msgstr "קובץ אלקטרוני" #. module: account #: field:account.move.line,reconcile:0 @@ -3657,7 +3657,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_period_tree #: model:ir.ui.menu,name:account.menu_action_account_period_close_tree msgid "Close a Period" -msgstr "" +msgstr "סגור תקופה" #. module: account #: view:account.bank.statement:0 @@ -3675,7 +3675,7 @@ msgstr "" #. module: account #: field:account.financial.report,display_detail:0 msgid "Display details" -msgstr "" +msgstr "הצג פרטים" #. module: account #: report:account.overdue:0 @@ -3725,7 +3725,7 @@ msgstr "" #: report:account.vat.declaration:0 #: field:account.vat.declaration,chart_tax_id:0 msgid "Chart of Tax" -msgstr "" +msgstr "תרשים מס" #. module: account #: view:account.journal:0 @@ -3786,7 +3786,7 @@ msgstr "" #. module: account #: view:account.chart:0 msgid "Account charts" -msgstr "" +msgstr "תרשימי החשבון" #. module: account #: view:cash.box.out:0 @@ -3834,12 +3834,12 @@ msgstr "" #: view:account.invoice:0 #: model:process.node,name:account.process_node_draftinvoices0 msgid "Draft Invoice" -msgstr "" +msgstr "חשבונית טיוטה" #. module: account #: view:account.config.settings:0 msgid "Options" -msgstr "" +msgstr "אפשרויות" #. module: account #: field:account.aged.trial.balance,period_length:0 @@ -3862,7 +3862,7 @@ msgstr "" #. module: account #: view:account.installer:0 msgid "Continue" -msgstr "" +msgstr "המשך" #. module: account #: view:account.invoice.report:0 @@ -3882,7 +3882,7 @@ msgstr "" #: view:account.addtmpl.wizard:0 #: model:ir.actions.act_window,name:account.action_account_addtmpl_wizard_form msgid "Create Account" -msgstr "" +msgstr "צור חשבון" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:62 @@ -3992,7 +3992,7 @@ msgstr "" #: selection:accounting.report,filter_cmp:0 #: field:analytic.entries.report,date:0 msgid "Date" -msgstr "" +msgstr "תאריך" #. module: account #: view:account.move:0 @@ -4028,12 +4028,12 @@ msgstr "" #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 msgid "All" -msgstr "" +msgstr "הכל" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reporting_budgets msgid "Budgets" -msgstr "" +msgstr "תקציבים" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -4052,7 +4052,7 @@ msgstr "" #: selection:accounting.report,filter:0 #: selection:accounting.report,filter_cmp:0 msgid "No Filters" -msgstr "" +msgstr "אין מסננים" #. module: account #: view:account.invoice.report:0 @@ -4146,7 +4146,7 @@ msgstr "" #. module: account #: field:analytic.entries.report,nbr:0 msgid "#Entries" -msgstr "" +msgstr "#רשומות" #. module: account #: view:account.state.open:0 @@ -4173,7 +4173,7 @@ msgstr "" #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 msgid "Name" -msgstr "" +msgstr "שם" #. module: account #: code:addons/account/installer.py:115 @@ -4324,7 +4324,7 @@ msgstr "" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "" +msgstr "הצג שותפים" #. module: account #: view:account.invoice:0 @@ -4334,7 +4334,7 @@ msgstr "" #. module: account #: model:account.financial.report,name:account.account_financial_report_assets0 msgid "Assets" -msgstr "" +msgstr "נכסים" #. module: account #: view:account.config.settings:0 @@ -4344,19 +4344,19 @@ msgstr "" #. module: account #: view:account.invoice.confirm:0 msgid "Confirm Invoices" -msgstr "" +msgstr "אשר חשבוניות" #. module: account #: selection:account.account,currency_mode:0 msgid "Average Rate" -msgstr "" +msgstr "שער ממוצע" #. module: account #: field:account.balance.report,display_account:0 #: field:account.common.account.report,display_account:0 #: field:account.report.general.ledger,display_account:0 msgid "Display Accounts" -msgstr "" +msgstr "הצג חשבונות" #. module: account #: view:account.state.open:0 @@ -4384,13 +4384,13 @@ msgstr "" #: view:account.config.settings:0 #: model:ir.ui.menu,name:account.menu_finance_configuration msgid "Configuration" -msgstr "" +msgstr "הגדרות" #. module: account #: model:account.payment.term,name:account.account_payment_term #: model:account.payment.term,note:account.account_payment_term msgid "30 Days End of Month" -msgstr "" +msgstr "30 ימים מסוף החודש" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_balance @@ -4437,7 +4437,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation msgid "Draft Entries" -msgstr "" +msgstr "רשומות טיוטה" #. module: account #: help:account.config.settings,decimal_precision:0 @@ -4472,7 +4472,7 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Close CashBox" -msgstr "" +msgstr "סגור קופה" #. module: account #: model:ir.model,name:account.model_account_invoice_cancel @@ -4531,7 +4531,7 @@ msgstr "" #: field:report.account.sales,month:0 #: field:report.account_type.sales,month:0 msgid "Month" -msgstr "" +msgstr "חודש" #. module: account #: code:addons/account/account.py:668 @@ -4568,7 +4568,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Acc.Type" -msgstr "" +msgstr "סוג חשבון" #. module: account #: selection:account.journal,type:0 @@ -4578,7 +4578,7 @@ msgstr "" #. module: account #: field:account.account.template,note:0 msgid "Note" -msgstr "" +msgstr "פתק" #. module: account #: selection:account.financial.report,sign:0 @@ -4645,7 +4645,7 @@ msgstr "" #. module: account #: field:report.aged.receivable,name:0 msgid "Month Range" -msgstr "" +msgstr "טווח חודשים" #. module: account #: help:account.analytic.balance,empty_acc:0 @@ -4690,7 +4690,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_chart msgid "Account chart" -msgstr "" +msgstr "תרשים של החשבון" #. module: account #: field:account.invoice,reference_type:0 @@ -4706,7 +4706,7 @@ msgstr "" #: report:account.analytic.account.balance:0 #: report:account.central.journal:0 msgid "Account Name" -msgstr "" +msgstr "שם החשבון" #. module: account #: help:account.fiscalyear.close,report_name:0 @@ -4721,7 +4721,7 @@ msgstr "" #. module: account #: field:account.account,exchange_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "שער חליפין" #. module: account #: model:process.transition,note:account.process_transition_paymentorderreconcilation0 @@ -4831,7 +4831,7 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Based On" -msgstr "" +msgstr "מבוסס על" #. module: account #: code:addons/account/account.py:3204 @@ -4857,7 +4857,7 @@ msgstr "" #. module: account #: xsl:account.transfer:0 msgid "Change" -msgstr "" +msgstr "שנה" #. module: account #: field:account.journal,type_control_ids:0 @@ -4879,7 +4879,7 @@ msgstr "" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Cancelled" -msgstr "" +msgstr "בוטל" #. module: account #: help:account.config.settings,group_proforma_invoices:0 @@ -4927,12 +4927,12 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Confirmed" -msgstr "" +msgstr "מאושר" #. module: account #: report:account.invoice:0 msgid "Cancelled Invoice" -msgstr "" +msgstr "חשבונית שבוטלה" #. module: account #: view:account.invoice:0 @@ -4942,7 +4942,7 @@ msgstr "" #. module: account #: selection:account.bank.statement,state:0 msgid "New" -msgstr "" +msgstr "חדש" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -5046,7 +5046,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "או" #. module: account #: view:account.invoice.report:0 @@ -5084,7 +5084,7 @@ msgstr "" #. module: account #: view:account.addtmpl.wizard:0 msgid "Add" -msgstr "" +msgstr "הוסף" #. module: account #: selection:account.invoice,state:0 @@ -5135,7 +5135,7 @@ msgstr "" #: view:account.bank.statement:0 #: view:account.subscription:0 msgid "Compute" -msgstr "" +msgstr "חשב" #. module: account #: field:account.tax,type_tax_use:0 @@ -5158,7 +5158,7 @@ msgstr "" #: field:account.payment.term,active:0 #: field:account.tax,active:0 msgid "Active" -msgstr "" +msgstr "פעיל" #. module: account #: view:account.bank.statement:0 @@ -5173,7 +5173,7 @@ msgstr "" #: field:account.analytic.inverted.balance,date2:0 #: field:account.analytic.journal.report,date2:0 msgid "End of period" -msgstr "" +msgstr "סוף תקופה" #. module: account #: model:process.node,note:account.process_node_supplierpaymentorder0 @@ -5221,7 +5221,7 @@ msgstr "" #. module: account #: view:account.automatic.reconcile:0 msgid "Close" -msgstr "" +msgstr "סגור" #. module: account #: field:account.bank.statement.line,move_ids:0 @@ -5342,7 +5342,7 @@ msgstr "" #. module: account #: field:account.subscription.line,move_id:0 msgid "Entry" -msgstr "" +msgstr "רשומה" #. module: account #: field:account.tax,python_compute_inv:0 @@ -5370,7 +5370,7 @@ msgstr "" #: field:account.financial.report,children_ids:0 #: model:ir.model,name:account.model_account_financial_report msgid "Account Report" -msgstr "" +msgstr "דוח החשבון" #. module: account #: field:account.entries.report,year:0 @@ -5412,7 +5412,7 @@ msgstr "" #. module: account #: selection:account.subscription,period_type:0 msgid "month" -msgstr "" +msgstr "חודש" #. module: account #: view:account.move.line:0 @@ -5455,7 +5455,7 @@ msgstr "" #: view:analytic.entries.report:0 #: model:ir.actions.act_window,name:account.action_move_line_form msgid "Entries" -msgstr "" +msgstr "רשומות" #. module: account #: view:account.entries.report:0 @@ -5508,7 +5508,7 @@ msgstr "" #: field:cash.box.in,amount:0 #: field:cash.box.out,amount:0 msgid "Amount" -msgstr "" +msgstr "סכום" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:41 @@ -5670,7 +5670,7 @@ msgstr "" #: selection:account.period,state:0 #: selection:report.invoice.created,state:0 msgid "Open" -msgstr "" +msgstr "פתח" #. module: account #: view:account.config.settings:0 @@ -5702,7 +5702,7 @@ msgstr "" #: selection:account.invoice.report,type:0 #: selection:report.invoice.created,type:0 msgid "Customer Refund" -msgstr "" +msgstr "החזר לקוח" #. module: account #: field:account.tax,ref_tax_sign:0 @@ -5725,7 +5725,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "החזר טיוטה " #. module: account #: view:cash.box.in:0 @@ -5736,7 +5736,7 @@ msgstr "" #: view:account.payment.term.line:0 #: field:account.payment.term.line,value_amount:0 msgid "Amount To Pay" -msgstr "" +msgstr "סכום לתשלום" #. module: account #: help:account.partner.reconcile.process,to_reconcile:0 @@ -5770,7 +5770,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_change_currency #: model:ir.model,name:account.model_account_change_currency msgid "Change Currency" -msgstr "" +msgstr "שנה מטבע" #. module: account #: model:process.node,note:account.process_node_accountingentries0 @@ -5799,7 +5799,7 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "" +msgstr "חשבוניות לקוח והחזרים" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -5837,7 +5837,7 @@ msgstr "" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Normal Text" -msgstr "" +msgstr "טקסט רגיל" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 @@ -5873,7 +5873,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "החזר טיוטה" #. module: account #: view:account.analytic.chart:0 @@ -5985,7 +5985,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "entries" -msgstr "" +msgstr "רשומות" #. module: account #: field:res.partner,debit:0 @@ -6112,12 +6112,12 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,nbr:0 msgid "# of Lines" -msgstr "" +msgstr "# שורות" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "" +msgstr "(עדכן)" #. module: account #: field:account.aged.trial.balance,filter:0 @@ -6136,7 +6136,7 @@ msgstr "" #: field:accounting.report,filter:0 #: field:accounting.report,filter_cmp:0 msgid "Filter by" -msgstr "" +msgstr "סנן לפי" #. module: account #: code:addons/account/account.py:2334 @@ -6226,7 +6226,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree3 #: model:ir.ui.menu,name:account.menu_action_invoice_tree3 msgid "Customer Refunds" -msgstr "" +msgstr "החזרי לקוח" #. module: account #: field:account.account,foreign_balance:0 @@ -6296,7 +6296,7 @@ msgstr "" #. module: account #: field:account.entries.report,date_created:0 msgid "Date Created" -msgstr "" +msgstr "תאריך יצירה" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form @@ -6343,7 +6343,7 @@ msgstr "" #. module: account #: field:product.template,taxes_id:0 msgid "Customer Taxes" -msgstr "" +msgstr "מיסי לקוח" #. module: account #: help:account.model,name:0 @@ -6404,7 +6404,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_res_company msgid "Companies" -msgstr "" +msgstr "חברות" #. module: account #: view:account.invoice.report:0 @@ -6489,7 +6489,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Cancel" -msgstr "" +msgstr "ביטול" #. module: account #: selection:account.account,type:0 @@ -6669,7 +6669,7 @@ msgstr "" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "בטל" #. module: account #: selection:account.account,type:0 @@ -6832,7 +6832,7 @@ msgstr "" #: report:account.invoice:0 #: field:account.invoice.tax,base:0 msgid "Base" -msgstr "" +msgstr "בסיס" #. module: account #: field:account.model,name:0 @@ -6869,7 +6869,7 @@ msgstr "" #: field:account.fiscal.position,note:0 #: field:account.fiscal.position.template,note:0 msgid "Notes" -msgstr "" +msgstr "פתקים" #. module: account #: model:ir.model,name:account.model_analytic_entries_report @@ -6881,7 +6881,7 @@ msgstr "" #: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " -msgstr "" +msgstr "רשומות: " #. module: account #: help:res.partner.bank,currency_id:0 @@ -6925,7 +6925,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Fax :" -msgstr "" +msgstr "פקס :" #. module: account #: help:res.partner,property_account_receivable:0 @@ -6960,12 +6960,12 @@ msgstr "" #. module: account #: view:account.fiscalyear.close:0 msgid "Create" -msgstr "" +msgstr "צור" #. module: account #: model:process.transition.action,name:account.process_transition_action_createentries0 msgid "Create entry" -msgstr "" +msgstr "צור רשומה" #. module: account #: selection:account.account.type,report_type:0 @@ -7113,7 +7113,7 @@ msgstr "" #: code:addons/account/report/common_report_header.py:67 #, python-format msgid "All Entries" -msgstr "" +msgstr "כל הרשומות" #. module: account #: constraint:account.move.reconcile:0 @@ -7258,7 +7258,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 msgid "Customer Invoices" -msgstr "" +msgstr "חשבוניות לקוח" #. module: account #: view:account.tax:0 @@ -7276,7 +7276,7 @@ msgstr "" #: selection:account.subscription,state:0 #: selection:report.invoice.created,state:0 msgid "Done" -msgstr "" +msgstr "בוצע" #. module: account #: code:addons/account/account.py:1319 @@ -7331,7 +7331,7 @@ msgstr "" #. module: account #: field:account.analytic.line,currency_id:0 msgid "Account Currency" -msgstr "" +msgstr "מטבע החשבון" #. module: account #: report:account.invoice:0 @@ -7359,7 +7359,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation msgid "Monthly Turnover" -msgstr "" +msgstr "מחזור חודשי" #. module: account #: view:account.move:0 @@ -7396,7 +7396,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "הפניית לקוח" #. module: account #: field:account.account.template,parent_id:0 @@ -7468,7 +7468,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules msgid "Chart Templates" -msgstr "" +msgstr "תבניות תרשימים" #. module: account #: field:account.journal.period,icon:0 @@ -7478,7 +7478,7 @@ msgstr "" #. module: account #: view:account.use.model:0 msgid "Ok" -msgstr "" +msgstr "אישור" #. module: account #: field:account.chart.template,tax_code_root_id:0 @@ -7496,7 +7496,7 @@ msgstr "" #. module: account #: field:account.bank.statement,closing_date:0 msgid "Closed On" -msgstr "" +msgstr "נסגר ב" #. module: account #: model:ir.model,name:account.model_account_bank_statement_line @@ -7521,7 +7521,7 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Confirm" -msgstr "" +msgstr "אשר" #. module: account #: help:account.tax,domain:0 @@ -7540,12 +7540,12 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,report_name:0 msgid "Name of new entries" -msgstr "" +msgstr "שם הרשומות החדשות" #. module: account #: view:account.use.model:0 msgid "Create Entries" -msgstr "" +msgstr "צור רשומות" #. module: account #: model:ir.model,name:account.model_cash_box_out @@ -7555,12 +7555,12 @@ msgstr "" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "" +msgstr "מטבע עיקרי של החברה" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports msgid "Reporting" -msgstr "" +msgstr "דוחות" #. module: account #. openerp-web @@ -7568,7 +7568,7 @@ msgstr "" #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" -msgstr "" +msgstr "אזהרה" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open @@ -7579,7 +7579,7 @@ msgstr "" #: view:account.journal:0 #: field:res.partner.bank,journal_id:0 msgid "Account Journal" -msgstr "" +msgstr "יומן החשבון" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 @@ -7590,7 +7590,7 @@ msgstr "" #: model:process.node,name:account.process_node_paidinvoice0 #: model:process.node,name:account.process_node_supplierpaidinvoice0 msgid "Paid invoice" -msgstr "" +msgstr "חשבונית ששולמה" #. module: account #: view:account.invoice.refund:0 @@ -7613,7 +7613,7 @@ msgstr "" #. module: account #: field:account.move.line.reconcile.writeoff,comment:0 msgid "Comment" -msgstr "" +msgstr "הערה" #. module: account #: field:account.tax,domain:0 @@ -7639,17 +7639,17 @@ msgstr "" #: field:account.invoice.tax,invoice_id:0 #: model:ir.model,name:account.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "שורה בחשבונית" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "החזרים ללקוחות וספקים" #. module: account #: field:account.financial.report,sign:0 msgid "Sign on Reports" -msgstr "" +msgstr "חתום על דוחות" #. module: account #: model:ir.actions.act_window,help:account.action_account_analytic_account_tree2 @@ -7699,18 +7699,18 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 msgid "Normal" -msgstr "" +msgstr "רגילה" #. module: account #: model:ir.actions.act_window,name:account.action_email_templates #: model:ir.ui.menu,name:account.menu_email_templates msgid "Email Templates" -msgstr "" +msgstr "תבניות דואר אלקטרוני" #. module: account #: view:account.move.line:0 msgid "Optional Information" -msgstr "" +msgstr "מידע אופציונלי" #. module: account #: view:account.analytic.line:0 @@ -7720,12 +7720,12 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,user_id:0 msgid "User" -msgstr "" +msgstr "משתמש" #. module: account #: selection:account.account,currency_mode:0 msgid "At Date" -msgstr "" +msgstr "בתאריך" #. module: account #: help:account.move.line,date_maturity:0 @@ -7737,7 +7737,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_multi_currency msgid "Multi-Currencies" -msgstr "" +msgstr "מטבעות מרובים" #. module: account #: field:account.model.line,date_maturity:0 @@ -7748,7 +7748,7 @@ msgstr "" #: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" -msgstr "" +msgstr "יומן מכירות" #. module: account #: model:ir.model,name:account.model_account_invoice_tax @@ -7792,7 +7792,7 @@ msgstr "" #. module: account #: view:product.template:0 msgid "Sales Properties" -msgstr "" +msgstr "מאפייני מכירה" #. module: account #: code:addons/account/account.py:3541 @@ -7823,7 +7823,7 @@ msgstr "" #: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" -msgstr "" +msgstr "התאמת מטבע" #. module: account #: field:account.fiscalyear.close,fy_id:0 @@ -7834,7 +7834,7 @@ msgstr "" #: view:account.invoice.cancel:0 #: model:ir.actions.act_window,name:account.action_account_invoice_cancel msgid "Cancel Selected Invoices" -msgstr "" +msgstr "בטל חשבוניות שנבחרו" #. module: account #: help:account.account.type,report_type:0 @@ -7849,7 +7849,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "May" -msgstr "" +msgstr "מאי" #. module: account #: code:addons/account/account_invoice.py:820 @@ -7896,7 +7896,7 @@ msgstr "" #: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" -msgstr "" +msgstr "לקוח" #. module: account #: field:account.financial.report,name:0 @@ -7912,13 +7912,13 @@ msgstr "" #: code:addons/account/account.py:3092 #, python-format msgid "Cash" -msgstr "" +msgstr "מזומן" #. module: account #: field:account.fiscal.position.account,account_dest_id:0 #: field:account.fiscal.position.account.template,account_dest_id:0 msgid "Account Destination" -msgstr "" +msgstr "יעד החשבון" #. module: account #: help:account.invoice.refund,filter_refund:0 @@ -7982,12 +7982,12 @@ msgstr "" #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "Monthly" -msgstr "" +msgstr "חודשי" #. module: account #: model:account.account.type,name:account.data_account_type_asset msgid "Asset" -msgstr "" +msgstr "נכס" #. module: account #: field:account.bank.statement,balance_end:0 @@ -8185,7 +8185,7 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_electronicfile0 msgid "Automatic entry" -msgstr "" +msgstr "רשומה אוטומטית" #. module: account #: help:account.account,reconcile:0 @@ -8224,7 +8224,7 @@ msgstr "" #. module: account #: field:account.invoice,comment:0 msgid "Additional Information" -msgstr "" +msgstr "מידע נוסף" #. module: account #: field:account.invoice.report,residual:0 @@ -8433,7 +8433,7 @@ msgstr "" #. module: account #: field:account.account,company_currency_id:0 msgid "Company Currency" -msgstr "" +msgstr "מטבע חברה" #. module: account #: field:account.aged.trial.balance,chart_account_id:0 @@ -8529,7 +8529,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "החל" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -8623,7 +8623,7 @@ msgstr "" #: report:account.general.ledger_landscape:0 #: report:account.partner.balance:0 msgid "Filter By" -msgstr "" +msgstr "סנן לפי" #. module: account #: code:addons/account/wizard/account_period_close.py:51 @@ -8637,7 +8637,7 @@ msgstr "" #: view:board.board:0 #: model:ir.actions.act_window,name:account.action_company_analysis_tree msgid "Company Analysis" -msgstr "" +msgstr "ניתוח חברה" #. module: account #: help:account.invoice,account_id:0 @@ -8771,7 +8771,7 @@ msgstr "" #. module: account #: view:account.period.close:0 msgid "Are you sure?" -msgstr "" +msgstr "האם אתה בטוח?" #. module: account #: view:account.journal:0 @@ -8865,7 +8865,7 @@ msgstr "" #: model:account.account.type,name:account.data_account_type_expense #: model:account.financial.report,name:account.account_financial_report_expense0 msgid "Expense" -msgstr "" +msgstr "הוצאות" #. module: account #: help:account.chart,fiscalyear:0 @@ -8913,7 +8913,7 @@ msgstr "" #: field:res.partner.bank,currency_id:0 #: field:wizard.multi.charts.accounts,currency_id:0 msgid "Currency" -msgstr "" +msgstr "מטבע" #. module: account #: help:account.invoice.refund,journal_id:0 @@ -8984,7 +8984,7 @@ msgstr "" #. module: account #: field:res.partner,contract_ids:0 msgid "Contracts" -msgstr "" +msgstr "חוזים" #. module: account #: field:account.cashbox.line,bank_statement_id:0 @@ -9145,7 +9145,7 @@ msgstr "" #: model:process.node,name:account.process_node_invoiceinvoice0 #: model:process.node,name:account.process_node_supplierinvoiceinvoice0 msgid "Create Invoice" -msgstr "" +msgstr "צור חשבונית" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer @@ -9174,7 +9174,7 @@ msgstr "" #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "" +msgstr "הצג פרטים" #. module: account #: code:addons/account/account.py:3203 @@ -9213,7 +9213,7 @@ msgstr "" #: field:account.period,date_stop:0 #: model:ir.ui.menu,name:account.menu_account_end_year_treatments msgid "End of Period" -msgstr "" +msgstr "סוף תקופה" #. module: account #: field:account.account,financial_report_ids:0 @@ -9275,7 +9275,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "בקש החזר" #. module: account #: view:account.move.line:0 @@ -9327,7 +9327,7 @@ msgstr "" #. module: account #: xsl:account.transfer:0 msgid "Document" -msgstr "" +msgstr "מסמך" #. module: account #: view:account.chart.template:0 @@ -9377,7 +9377,7 @@ msgstr "" #: report:account.account.balance:0 #: report:account.general.ledger_landscape:0 msgid "Display Account" -msgstr "" +msgstr "הצג חשבון" #. module: account #: selection:account.account,type:0 @@ -9390,7 +9390,7 @@ msgstr "" #. module: account #: view:board.board:0 msgid "Account Board" -msgstr "" +msgstr "לוח החשבון" #. module: account #: view:account.model:0 @@ -9412,7 +9412,7 @@ msgstr "" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Filters By" -msgstr "" +msgstr "מסננים לפי" #. module: account #: field:account.cashbox.line,number_closing:0 @@ -9435,7 +9435,7 @@ msgstr "" #: view:account.move.line:0 #: field:analytic.entries.report,move_id:0 msgid "Move" -msgstr "" +msgstr "העבר" #. module: account #: code:addons/account/account_bank_statement.py:478 @@ -9447,7 +9447,7 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "תאריך / תקופה" #. module: account #: report:account.central.journal:0 @@ -9493,7 +9493,7 @@ msgstr "" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Date of the day" -msgstr "" +msgstr "תאריך של יום" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:49 @@ -9518,7 +9518,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu msgid "Common Report" -msgstr "" +msgstr "דוח משותף" #. module: account #: field:account.config.settings,default_sale_tax:0 @@ -9604,7 +9604,7 @@ msgstr "" #: field:accounting.report,period_to:0 #: field:accounting.report,period_to_cmp:0 msgid "End Period" -msgstr "" +msgstr "סיים תקופה" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 @@ -9696,7 +9696,7 @@ msgstr "" #: view:account.invoice.report:0 #: model:process.node,name:account.process_node_supplierdraftinvoices0 msgid "Draft Invoices" -msgstr "" +msgstr "חשבוניות טיוטה" #. module: account #: view:cash.box.in:0 @@ -9772,7 +9772,7 @@ msgstr "" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Code/Date" -msgstr "" +msgstr "קוד/תאריך" #. module: account #: view:account.bank.statement:0 @@ -9794,7 +9794,7 @@ msgstr "" #. module: account #: view:accounting.report:0 msgid "Comparison" -msgstr "" +msgstr "השוואה" #. module: account #: code:addons/account/account_move_line.py:1119 @@ -9866,12 +9866,12 @@ msgstr "" #: report:account.vat.declaration:0 #: field:report.account.receivable,credit:0 msgid "Credit" -msgstr "" +msgstr "אשראי" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "חשבונית טיוטה " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal @@ -9901,7 +9901,7 @@ msgstr "" #: selection:account.bank.statement.line,type:0 #: selection:account.journal,type:0 msgid "General" -msgstr "" +msgstr "כללי" #. module: account #: view:account.invoice.report:0 @@ -9944,7 +9944,7 @@ msgstr "" #. module: account #: field:account.invoice.report,currency_rate:0 msgid "Currency Rate" -msgstr "" +msgstr "שער מטבע" #. module: account #: field:account.account,tax_ids:0 @@ -9961,7 +9961,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "April" -msgstr "" +msgstr "אפריל" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 @@ -10099,7 +10099,7 @@ msgstr "" #: field:accounting.report,date_to:0 #: field:accounting.report,date_to_cmp:0 msgid "End Date" -msgstr "" +msgstr "תאריך סיום" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -10111,7 +10111,7 @@ msgstr "" #. module: account #: field:account.payment.term.line,days2:0 msgid "Day of the Month" -msgstr "" +msgstr "יום בחודש" #. module: account #: field:account.fiscal.position.tax,tax_src_id:0 @@ -10127,7 +10127,7 @@ msgstr "" #. module: account #: selection:account.financial.report,display_detail:0 msgid "No detail" -msgstr "" +msgstr "אין פרטים" #. module: account #: field:account.account,unrealized_gain_loss:0 @@ -10228,7 +10228,7 @@ msgstr "" #: field:analytic.entries.report,company_id:0 #: field:wizard.multi.charts.accounts,company_id:0 msgid "Company" -msgstr "" +msgstr "חברה" #. module: account #: model:ir.ui.menu,name:account.menu_action_subscription_form @@ -10292,7 +10292,7 @@ msgstr "" #. module: account #: field:account.analytic.balance,empty_acc:0 msgid "Empty Accounts ? " -msgstr "" +msgstr "חשבונות ריקים ? " #. module: account #: view:account.unreconcile.reconcile:0 @@ -10320,7 +10320,7 @@ msgstr "" #. module: account #: field:account.chart,period_to:0 msgid "End period" -msgstr "" +msgstr "סיים תקופה" #. module: account #: sql_constraint:account.journal:0 @@ -10491,7 +10491,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "December" -msgstr "" +msgstr "דצמבר" #. module: account #: view:account.invoice.report:0 @@ -10529,7 +10529,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing msgid "Billing" -msgstr "" +msgstr "חיוב" #. module: account #: view:account.account:0 @@ -10595,7 +10595,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "November" -msgstr "" +msgstr "נובמבר" #. module: account #: model:ir.actions.act_window,help:account.action_account_moves_all_a @@ -10647,7 +10647,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_res_partner_bank msgid "Bank Accounts" -msgstr "" +msgstr "חשבונות בנק" #. module: account #: field:res.partner,credit:0 @@ -10727,7 +10727,7 @@ msgstr "" #: code:addons/account/static/src/js/account_move_reconciliation.js:80 #, python-format msgid "Never" -msgstr "" +msgstr "לעולם לא" #. module: account #: model:ir.model,name:account.model_account_addtmpl_wizard @@ -10779,7 +10779,7 @@ msgstr "" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Loss" -msgstr "" +msgstr "הספד" #. module: account #: selection:account.entries.report,month:0 @@ -10788,7 +10788,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "February" -msgstr "" +msgstr "פברואר" #. module: account #: view:account.bank.statement:0 @@ -10803,13 +10803,13 @@ msgstr "" #: field:account.invoice,partner_bank_id:0 #: field:account.invoice.report,partner_bank_id:0 msgid "Bank Account" -msgstr "" +msgstr "חשבון בנק" #. module: account #: model:ir.actions.act_window,name:account.action_account_central_journal #: model:ir.model,name:account.model_account_central_journal msgid "Account Central Journal" -msgstr "" +msgstr "יומן מרכזי של החשבון" #. module: account #: report:account.overdue:0 @@ -10851,7 +10851,7 @@ msgstr "" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "תנאי תשלום לקוח" #. module: account #: help:accounting.report,label_filter:0 diff --git a/addons/account/i18n/hi.po b/addons/account/i18n/hi.po index 5e67267a6ee..23a3155c61b 100644 --- a/addons/account/i18n/hi.po +++ b/addons/account/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hr.po b/addons/account/i18n/hr.po index 73ad99b26b0..c5c7e3a0b18 100644 --- a/addons/account/i18n/hr.po +++ b/addons/account/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:59+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -166,6 +166,8 @@ msgid "" "which is set after generating opening entries from 'Generate Opening " "Entries'." msgstr "" +"Morate postaviti 'Dnevnik završnog stanja' za ovu fiskalnu godinu koje se " +"postavlja nakon generiranja početnih stavaka iz 'Stvori početno stanje'." #. module: account #: field:account.fiscal.position.account,account_src_id:0 @@ -243,17 +245,17 @@ msgstr "Odabir stavke zatvaranja" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries are an input of the reconciliation." -msgstr "" +msgstr "Stavke su proizvod zatvaranja." #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports msgid "Belgian Reports" -msgstr "Belgian Reports" +msgstr "Belgijski izvještaji" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "Provjereno" +msgstr "Potvrđeno" #. module: account #: model:account.account.type,name:account.account_type_income_view1 @@ -274,7 +276,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "Sljedeći broj odobrenja" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -317,17 +319,17 @@ msgid "" " " msgstr "" "

\n" -" Kliknite za stvaranje povratnice " +" Kliknite za stvaranje povrata " "kupcu.\n" "

\n" -" Povratnica je dokument koji " +" Povrat kupcu je dokument koji " "razdužuje račun kompletno ili \n" " djelomično\n" "

\n" -" Umjesto ručnog uređivanja " -"povratnica, možete ih napraviti \n" -" direktno iz povezanih računa " -"partnera\n" +" Umjesto ručnog kreiranja povrata, " +"možete ih napraviti \n" +" direktno iz povezanih izlaznih " +"računa\n" "

\n" " " @@ -337,12 +339,13 @@ msgid "" "Installs localized accounting charts to match as closely as possible the " "accounting needs of your company based on your country." msgstr "" -"Instalira lokalizirani kontni plan prema potrebama vaše organizacije." +"Instalira lokalizirani kontni plan prema potrebama vaše organizacije " +"bazirano na vašoj državi." #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "Account Unreconcile" +msgstr "Razveži račun" #. module: account #: field:account.config.settings,module_account_budget:0 @@ -468,7 +471,7 @@ msgstr "" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Informacije o pokretaču i korisniku" #. module: account #. openerp-web @@ -488,7 +491,9 @@ msgstr "Predložak kontnog plana" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" -msgstr "Uredi: napravi povrat, zatvori ili kreiraj novi nacrt računa" +msgstr "" +"Ispravi: kreiraj storno dokument, zatvori ga te kreiraj novi račun u statusu " +"'Nacrt'" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -578,7 +583,7 @@ msgstr "Nadređeni cilj" #. module: account #: help:account.invoice.line,sequence:0 msgid "Gives the sequence of this line when displaying the invoice." -msgstr "" +msgstr "Daje sekvencu ove linije kada se prikazuje račun" #. module: account #: field:account.bank.statement,account_id:0 @@ -658,7 +663,7 @@ msgstr "Decimalna preciznost na stavkama dnevnika" #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "3 Monthly" -msgstr "tromjesečno" +msgstr "Tromjesečno" #. module: account #: field:ir.sequence,fiscal_ids:0 @@ -688,7 +693,7 @@ msgstr "Mapiranje poreza" #. module: account #: report:account.central.journal:0 msgid "Centralized Journal" -msgstr "Centralized Journal" +msgstr "Centralizirani dnevnik" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 @@ -712,7 +717,7 @@ msgstr "Konto dobiti" #, python-format msgid "No period found or more than one period found for the given date." msgstr "" -"Nije nađen perio za zadani datum, ili je nađeno nekoliko perioda za zadani " +"Nije nađen period za zadani datum ili je nađeno nekoliko perioda za zadani " "datum" #. module: account @@ -738,17 +743,19 @@ msgid "" "Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " "and 'draft' or ''}" msgstr "" +"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " +"and 'draft' or ''}" #. module: account #: view:account.period:0 #: view:account.period.close:0 msgid "Close Period" -msgstr "Zatvori razdoblje" +msgstr "Zatvori period" #. module: account #: model:ir.model,name:account.model_account_common_partner_report msgid "Account Common Partner Report" -msgstr "Račun Zajednički Partner Izvješće" +msgstr "Zajedničko izvješće konta partnera" #. module: account #: field:account.fiscalyear.close,period_id:0 @@ -765,6 +772,7 @@ msgstr "Period dnevnika" msgid "" "You cannot create more than one move per period on a centralized journal." msgstr "" +"Ne možete raditi više od jedne stavke po periodu na centraliziranom dnevniku." #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -797,7 +805,7 @@ msgstr "Podesite vaše bankovne račune" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "Napravi povratnicu" +msgstr "Storniraj dokument" #. module: account #: constraint:account.move.line:0 @@ -806,7 +814,7 @@ msgid "" "change the date or remove this constraint from the journal." msgstr "" "Datum vašeg unosa u dnevnik nije u definiranom periodu! Trebali bi " -"promijeniti datum ili izbaciti ovaj unos iz dnevnika." +"promijeniti datum ili ukloniti to ograničenje iz dnevnika." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger @@ -870,7 +878,7 @@ msgstr "Analitičke stavke" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "Način povrata" +msgstr "Način storniranja" #. module: account #: model:ir.ui.menu,name:account.menu_account_report @@ -982,7 +990,7 @@ msgstr "dana" #: help:account.account.template,nocreate:0 msgid "" "If checked, the new chart of accounts will not contain this by default." -msgstr "Ako je označeno, novi računski plan neće sadržavati ove po defaultu." +msgstr "Ako je označeno, novi kontni plan neće sadržavati ovo po defaultu." #. module: account #: model:ir.actions.act_window,help:account.action_account_manual_reconcile @@ -1130,7 +1138,7 @@ msgstr "Nabava" #. module: account #: field:account.model,lines_id:0 msgid "Model Entries" -msgstr "Stavke modela" +msgstr "Temeljnice modela" #. module: account #: field:account.account,code:0 @@ -1152,7 +1160,7 @@ msgstr "Šifra" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "Mogućnosti" +msgstr "Značajke" #. module: account #: code:addons/account/account.py:2346 @@ -1162,7 +1170,7 @@ msgstr "Mogućnosti" #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" -msgstr "Nema analitičkog dnevnika" +msgstr "Nema analitičkog dnevnika !" #. module: account #: report:account.partner.balance:0 @@ -1197,7 +1205,7 @@ msgstr "" " određeni iznos " "zbog tečajnih razlika. Ovaj izbornik pruža Vam\n" " predviđanje " -"dobiti i gubitka ostvarenoog ukoliko bi se te\n" +"dobiti i gubitka ostvarenog ukoliko bi se te\n" " transakcije " "završile danas. Samo za račune koji imaju postavljenu sekundarnu valutu.\n" "

\n" @@ -1211,7 +1219,7 @@ msgstr "Naziv konta" #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "Otvaranje sa saldom zadnje zatvaranja" +msgstr "Otvaranje sa saldom zadnjeg zatvaranja" #. module: account #: help:account.tax.code,notprintable:0 @@ -1230,7 +1238,7 @@ msgstr "Tjedan" #. module: account #: field:account.report.general.ledger,landscape:0 msgid "Landscape Mode" -msgstr "Položeno (Landscape)" +msgstr "Pejzaž" #. module: account #: help:account.fiscalyear.close,fy_id:0 @@ -1243,8 +1251,8 @@ msgid "" "These types are defined according to your country. The type contains more " "information about the account and its specificities." msgstr "" -"These types are defined according to your country. The type contains more " -"information about the account and its specificities." +"Ovi su tipovi definirani prema vašoj zemlji. Tip sadržava više informacija o " +"kontu i njegovim specifičnostima." #. module: account #: view:account.invoice:0 @@ -1296,6 +1304,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog unosa u blagajnu.\n" +"

\n" +" Pomoću blagajne moguće je na jednostavan način upravljati " +"dnevnicima\n" +" blagajne. Na jednostavan način možete pratiti uplate " +"gotovine\n" +" na dnevnoj bazi. Moguće je evidentirati novac u blagajni, a " +"zatim\n" +" pratiti sve ulaze i izlaze novca iz nje.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_bank @@ -1505,7 +1525,7 @@ msgstr "Porezi" #: code:addons/account/wizard/account_financial_report.py:70 #, python-format msgid "Select a starting and an ending period" -msgstr "Odaberite početni i zavšni period" +msgstr "Odaberite početni i završni period" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitandloss0 @@ -1580,6 +1600,8 @@ msgid "" "And after getting confirmation from the bank it will be in 'Confirmed' " "status." msgstr "" +"Kada je novi izvod kreiran status je 'Nacrt'.\n" +"Nakon dobivanja potvrde od banke biti će u 'Potvrđeno' statusu." #. module: account #: field:account.invoice.report,state:0 @@ -1636,7 +1658,7 @@ msgstr "Traži poreze" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger msgid "Account Analytic Cost Ledger" -msgstr "Account Analytic Cost Ledger" +msgstr "Analitički troškovnik" #. module: account #: view:account.model:0 @@ -1661,9 +1683,9 @@ msgid "" "There is nothing to reconcile. All invoices and payments\n" " have been reconciled, your partner balance is clean." msgstr "" -"Nema stavaka za zatvaranje. Svi računi iplaćanja \n" +"Nema stavaka za zatvaranje. Svi računi i plaćanja \n" " su već zatvoreni, saldo vašeg partnera " -"je uredan i zatvoren." +"je uredan." #. module: account #: field:account.chart.template,code_digits:0 @@ -1710,6 +1732,8 @@ msgid "" "By unchecking the active field, you may hide a fiscal position without " "deleting it." msgstr "" +"Isključivanjem polja aktivno, možete sakriti fiskalnu poziciju bez da je " +"brišete." #. module: account #: model:ir.model,name:account.model_temp_range @@ -1799,7 +1823,7 @@ msgstr "Konto poreza za odobrenja" #. module: account #: model:ir.model,name:account.model_ir_sequence msgid "ir.sequence" -msgstr "ir.slijed" +msgstr "ir.sequence" #. module: account #: view:account.bank.statement:0 @@ -1841,6 +1865,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove vrste konta.\n" +"

\n" +" Vrsta konta se koristi za određivanje načina korištenja " +"konta u\n" +" dnevniku. \n" +"

\n" +" " #. module: account #: report:account.invoice:0 @@ -1931,8 +1963,8 @@ msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." msgstr "" -"Dnevnik mora imati jedinsvenu protustavku bez označene opcije Preskoči " -"stanje Nacrt" +"Dnevnik mora imati jedinstvenu protustavku bez označene opcije 'preskoči " +"nacrt'." #. module: account #: code:addons/account/account_move_line.py:854 @@ -1963,7 +1995,7 @@ msgstr "" #. module: account #: view:account.analytic.account:0 msgid "Pending Accounts" -msgstr "" +msgstr "Konta na čekanju" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -1982,8 +2014,7 @@ msgid "" "If the active field is set to False, it will allow you to hide the journal " "period without removing it." msgstr "" -"If the active field is set to False, it will allow you to hide the journal " -"period without removing it." +"Period dnevnika možete sakriti umjesto brisanja ako isključite polje aktivan." #. module: account #: field:account.report.general.ledger,sortby:0 @@ -2159,11 +2190,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za unos novog ulaznog računa .\n" +"

\n" +" Možete kontrolirati račun vašeg dobavljača prema tome\n" +" što ste kupili ili primili. OpenERP može također generirati\n" +" nacrte računa automatski iz naloga za nabavu ili primki.\n" +"

\n" +" " #. module: account #: sql_constraint:account.move.line:0 msgid "Wrong credit or debit value in accounting entry !" -msgstr "Pogrešno kreditna ili debitnom vrijednost unešene stavke!" +msgstr "Pogrešna dugovna ili potražna vrijednost upisane stavke!" #. module: account #: view:account.invoice.report:0 @@ -2189,6 +2228,8 @@ msgid "" "This journal already contains items for this period, therefore you cannot " "modify its company field." msgstr "" +"Ovaj dnevnik već sadrži stavke za ovaj period, stoga ne možete mijenjati " +"njegovo polje tvrtke." #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form @@ -2217,6 +2258,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog bankovnog izvoda.\n" +"

\n" +" Bankovni izvod sadrži pregled svih financijskih transakcija\n" +" koje su nastale u danom razdoblju po bankovnom računu. " +"Bankovne \n" +" izvode šalje banka periodično.\n" +"

\n" +" OpenERP dozvoljava izravno zatvaranje stavaka sa povezanim\n" +" ulaznim ili izlaznim računima.\n" +"

\n" +" " #. module: account #: field:account.config.settings,currency_id:0 @@ -2246,7 +2299,7 @@ msgstr "Analiza blagajne" #. module: account #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase msgid "Sale/Purchase Journal" -msgstr "Dnevnik Prodaje/Nabave" +msgstr "Dnevnik prodaje/nabave" #. module: account #: view:account.analytic.account:0 @@ -2294,7 +2347,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance msgid "Account Aged Trial balance Report" -msgstr "Bruto bilanca (Aged Trial balance)" +msgstr "Bruto bilanca" #. module: account #: view:account.fiscalyear.close.state:0 @@ -2306,7 +2359,7 @@ msgstr "Zatvaranje fiskalne godine" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "Dokument :" +msgstr "Dnevnik :" #. module: account #: sql_constraint:account.fiscal.position.tax:0 @@ -2343,7 +2396,7 @@ msgstr "Ne dozvoljava knjiženja izvan fiskalnog perioda" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 #, python-format msgid "Good job!" -msgstr "Odličan uradak!" +msgstr "Dobar posao!" #. module: account #: field:account.config.settings,module_account_asset:0 @@ -2371,6 +2424,8 @@ msgid "" "currency. You should remove the secondary currency on the account or select " "a multi-currency view on the journal." msgstr "" +"Odabrani konto vaše temeljnice traži sekundarnu valutu. Trebale ukloniti " +"sekundarnu valutu sa konta ili odabrati multivalutni pogled na dnevniku." #. module: account #: view:account.invoice:0 @@ -2431,7 +2486,7 @@ msgstr "Fiskalna godina" #: code:addons/account/wizard/account_move_bank_reconcile.py:53 #, python-format msgid "Standard Encoding" -msgstr "Standardno kodiranje" +msgstr "Standardni unos" #. module: account #: view:account.journal.select:0 @@ -2442,7 +2497,7 @@ msgstr "Prikaži stavke" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "" +msgstr "Sljedeći broj odobrenja dobavljaču" #. module: account #: field:account.automatic.reconcile,account_ids:0 @@ -2471,7 +2526,7 @@ msgstr "Siječanj" #. module: account #: view:account.entries.report:0 msgid "This F.Year" -msgstr "Ova F. godina" +msgstr "Ova f. godina" #. module: account #: view:account.tax.chart:0 @@ -2493,7 +2548,7 @@ msgstr "Nemate ovlasti otvoriti %s dnevnik!" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "Provjeri Ukupni iznos na ulaznim računima" +msgstr "Provjeri ukupni iznos na ulaznim računima" #. module: account #: selection:account.invoice,state:0 @@ -2501,7 +2556,7 @@ msgstr "Provjeri Ukupni iznos na ulaznim računima" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Pro-forma" -msgstr "Pro-forma" +msgstr "Predračun" #. module: account #: help:account.account.template,type:0 @@ -2513,11 +2568,10 @@ msgid "" "partners accounts (for debit/credit computations), closed for depreciated " "accounts." msgstr "" -"This type is used to differentiate types with special effects in OpenERP: " -"view can not have entries, consolidation are accounts that can have children " -"accounts for multi-company consolidations, payable/receivable are for " -"partners accounts (for debit/credit computations), closed for depreciated " -"accounts." +"Ovaj tip se koristi za razlikovanje tipova s posebnim efektima u OpenERPu: " +"pogled ne može imati unose, konsolidacija su konta koja imaju podređena " +"konta za konsolidaciju više kompanija, obveze/potraživanja su za saldakonti " +"(za duguje/potražuje izračune), zatvoreni za konta koja se više ne koriste." #. module: account #: view:account.chart.template:0 @@ -2575,7 +2629,7 @@ msgstr "Ovaj porez prodaje će biti primjenjen na svim novim proizvodima" #: report:account.journal.period.print:0 #: report:account.journal.period.print.sale.purchase:0 msgid "Entries Sorted By" -msgstr "Entries Sorted By" +msgstr "Stavke poredane po" #. module: account #: field:account.change.currency,currency_id:0 @@ -2658,11 +2712,13 @@ msgid "" "You cannot change the type of account from 'Closed' to any other type as it " "contains journal items!" msgstr "" +"Ne možete mijenjati tip konta iz 'zatvoren' u neki drugi tip jer sadržava " +"stavke dnevnika!" #. module: account #: field:account.invoice.report,account_line_id:0 msgid "Account Line" -msgstr "" +msgstr "Stavka" #. module: account #: view:account.addtmpl.wizard:0 @@ -2692,7 +2748,7 @@ msgstr "Temeljnica" #. module: account #: field:account.sequence.fiscalyear,sequence_main_id:0 msgid "Main Sequence" -msgstr "Glavna br. serija" +msgstr "Glavna sekvenca" #. module: account #: code:addons/account/account_bank_statement.py:478 @@ -2701,8 +2757,8 @@ msgid "" "In order to delete a bank statement, you must first cancel it to delete " "related journal items." msgstr "" -"kako bi izbrisali bankovni nalog, morate ga prvo otkazati da se obrišu sve " -"stavke dnevnika povezane sa njim." +"Kako bi izbrisali bankovni izvod, morate ga prvo otkazati kako bi se " +"obrisale sve stavke dnevnika povezane s njim." #. module: account #: field:account.invoice.report,payment_term:0 @@ -2740,12 +2796,12 @@ msgstr "Filtri" #: model:process.node,note:account.process_node_draftinvoices0 #: model:process.node,note:account.process_node_supplierdraftinvoices0 msgid "Draft state of an invoice" -msgstr "Stanje računa 'Nacrt'" +msgstr "Stanje računa 'nacrt'" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Karakteristike konta" #. module: account #: selection:account.invoice.refund,filter_refund:0 @@ -2777,7 +2833,7 @@ msgstr "30% avans, ostatak kroz 30 dana" #. module: account #: view:account.entries.report:0 msgid "Unreconciled entries" -msgstr "Unreconciled entries" +msgstr "Nezatvorene stavke" #. module: account #: field:account.invoice.tax,base_code_id:0 @@ -2863,6 +2919,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za kreiranje temeljnice.\n" +"

\n" +" Temeljnica se sastoji od nekoliko stavaka dnevnika, svaki\n" +" od kojih je ili dugovna ili potražna transakcija.\n" +"

\n" +" OpenERP automatski kreira temeljnicu po računovodstvenom\n" +" dokumentu: račun, povrat, plaćanje dobavljaču, izvod,\n" +" itd. Prema tome, ručno unositi temeljnice bi trebali " +"samo/uglavnom\n" +" za ostale razne operacije.\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -2900,7 +2969,7 @@ msgstr "Opis knjiženja" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_writeoff msgid "Account move line reconcile (writeoff)" -msgstr "" +msgstr "Zatvaranje stavke glavne knjige (otpis)" #. module: account #: model:account.account.type,name:account.conf_account_type_tax @@ -3000,7 +3069,7 @@ msgstr "Zatvaranje izvoda banke" #. module: account #: report:account.invoice:0 msgid "Disc.(%)" -msgstr "Pop.(%)" +msgstr "Popust (%)" #. module: account #: report:account.general.ledger:0 @@ -3014,7 +3083,7 @@ msgstr "Vezna oznaka" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "Porez Nabave" +msgstr "Pretporez" #. module: account #: help:account.move.line,tax_code_id:0 @@ -3041,7 +3110,7 @@ msgstr "Automatsko zatvaranje IOS-a" #. module: account #: field:account.invoice,reconciled:0 msgid "Paid/Reconciled" -msgstr "Plaćeno/Usklađeno" +msgstr "Plaćeno/usklađeno" #. module: account #: field:account.tax,ref_base_code_id:0 @@ -3074,6 +3143,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za otvaranje nove fiskalne godine..\n" +"

\n" +" Definirajte fiskalnu godinu vaše kompanije prema vašim " +"potrebama. \n" +" Fiskalna godina je period na kraju kojeg zaključujemo " +"poslovnu\n" +" godinu (obično 12 mjeseci). U Hrvatskoj fiskalna godina " +"prati kalendarsku.\n" +"

\n" +" " #. module: account #: view:account.common.report:0 @@ -3126,11 +3206,10 @@ msgid "" "Note that journal entries that are automatically created by the system are " "always skipping that state." msgstr "" -"Check this box if you don't want new journal entries to pass through the " -"'draft' state and instead goes directly to the 'posted state' without any " -"manual validation. \n" -"Note that journal entries that are automatically created by the system are " -"always skipping that state." +"Označite ovu kućicu ako ne želite da nove stavke dnevnika prolaze kroz " +"status 'nacrta' već da direktno postaju 'knjižene' bez ručne ovjere. Imajte " +"na umu da stavke dnevnika koje se kreiraju automatski uvjek preskaču taj " +"status." #. module: account #: field:account.move.line.reconcile,writeoff:0 @@ -3157,7 +3236,7 @@ msgstr "" #: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." -msgstr "Trebali bi odabrati periode koji pripadaju istoj Tvrtci" +msgstr "Trebali bi odabrati periode koji pripadaju istoj kompaniji." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all @@ -3170,7 +3249,7 @@ msgstr "Prodaje po kontu" #: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "" +msgstr "Ne možete obrisati knjiženu temeljnicu \"%s\"." #. module: account #: view:account.invoice:0 @@ -3197,6 +3276,8 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" +"Ovaj dnevnik već sadrava stavke i prema tome ne možete mijenjati polje " +"kompanije" #. module: account #: code:addons/account/account.py:409 @@ -3205,6 +3286,8 @@ msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." msgstr "" +"Treba vam dnevnik početnog stanja sa upaljenom centralizacijom za " +"postavljanje donosa." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -3215,7 +3298,7 @@ msgstr "Porezne grupe" #. module: account #: view:account.account:0 msgid "Unrealized Gains and losses" -msgstr "" +msgstr "Nerealizirani dobici i i gubici" #. module: account #: model:ir.ui.menu,name:account.menu_account_customer @@ -3259,14 +3342,14 @@ msgid "" "The optional quantity expressed by this line, eg: number of product sold. " "The quantity is not a legal requirement but is very useful for some reports." msgstr "" -"The optional quantity expressed by this line, eg: number of product sold. " -"The quantity is not a legal requirement but is very useful for some reports." +"Opcionalna količina izražena ovom linijom, npr.: broj prodanih komada " +"artikla. Količina je vrlo korisna za neke izvještaje." #. module: account #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Transakcije koje nisu zatvorene" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 @@ -3289,14 +3372,15 @@ msgstr "Sažetak" #. module: account #: help:account.invoice,period_id:0 msgid "Keep empty to use the period of the validation(invoice) date." -msgstr "Prazno za datum potvrde." +msgstr "Ostavite prazno za koirištenje perioda prema datumu računa." #. module: account #: help:account.bank.statement,account_id:0 msgid "" "used in statement reconciliation domain, but shouldn't be used elswhere." msgstr "" -"used in statement reconciliation domain, but shouldn't be used elswhere." +"korišteno u domeni zatvaranja izvoda, ali ne bi se trebalo koristiti na " +"drugim mjestima." #. module: account #: field:account.config.settings,date_stop:0 @@ -3380,7 +3464,7 @@ msgstr "Bilanca" #: code:addons/account/account.py:431 #, python-format msgid "Unable to adapt the initial balance (negative value)." -msgstr "" +msgstr "Nije moguće postaviti početno stanje (negativne vrijednosti)." #. module: account #: selection:account.invoice,type:0 @@ -3415,7 +3499,7 @@ msgstr "Valuta računa" #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "Računovodstveni izvještaj" #. module: account #: field:account.payment.term,line_ids:0 @@ -3430,7 +3514,7 @@ msgstr "Lista predloška poreza" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "Dnevnici Prodaje/Nabave" +msgstr "Dnevnici prodaje/nabave" #. module: account #: help:account.account,currency_mode:0 @@ -3441,17 +3525,17 @@ msgid "" "software system you may have to use the rate at date. Incoming transactions " "always use the rate at date." msgstr "" -"This will select how the current currency rate for outgoing transactions is " -"computed. In most countries the legal method is \"average\" but only a few " -"software systems are able to manage this. So if you import from another " -"software system you may have to use the rate at date. Incoming transactions " -"always use the rate at date." +"Ovo će odabrati kako se računa postojeći tečaj za izlazne transakcije.U " +"većini zemalja zakonska metoda je \"prosjek\" ali samo je par softverskih " +"sustava koji mogu upravljati ovim. Tado da ako uvozite iz drugog softvera " +"možda ćete morati koristiti tečaj na dan. Ulazne transakcije uvijek koriste " +"tečaj na dan." #. module: account #: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." -msgstr "" +msgstr "Nema nadređene šifre za predložak konta." #. module: account #: help:account.chart.template,code_digits:0 @@ -3462,7 +3546,7 @@ msgstr "Broj znamenki za upotrebu u šifri konta" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "Uvjeti plaćanja kod Dobavljača" +msgstr "Uvjeti plaćanja kod dobavljača" #. module: account #: view:account.fiscalyear:0 @@ -3479,6 +3563,8 @@ msgstr "Uvijek" msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." msgstr "" +"Puna računovodstvena funkcionalnost: dnevnici, zakonska izvješća, kontni " +"plan itd." #. module: account #: view:account.analytic.line:0 @@ -3525,7 +3611,7 @@ msgstr "Retci analitike" #. module: account #: view:account.invoice:0 msgid "Proforma Invoices" -msgstr "Proforma računi" +msgstr "Predračuni" #. module: account #: model:process.node,name:account.process_node_electronicfile0 @@ -3535,7 +3621,7 @@ msgstr "Elektronska datoteka" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Oznaka zatvaranja" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 @@ -3636,6 +3722,86 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Pozdrav ${object.partner_id.name},

\n" +"\n" +"

Obavještavamo vam o novom računu:

\n" +" \n" +"

\n" +"   REFERENCA
\n" +"   Broj računa: ${object.number}
\n" +"   Ukupni iznos računa: ${object.amount_total} " +"${object.currency_id.name}
\n" +"   Datum računa: ${object.date_invoice}
\n" +" % if object.origin:\n" +"   Broj narudžbe: ${object.origin}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Vaš kontakt: ${object.user_id.name}\n" +" % endif\n" +"

\n" +" \n" +" % if object.paypal_url:\n" +"
\n" +"

Ovaj račun je moguće platiti i direktno Paypal-om:

\n" +" \n" +" \n" +" \n" +" % endif\n" +" \n" +"
\n" +"

Stojimo na raspolaganju za sva dodatna pitanja.

\n" +"

Hvala vam što ste odabrali ${object.company_id.name or 'us'}!

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

\n" +" ${object.company_id.name}

\n" +"
\n" +"
\n" +" \n" +" % if object.company_id.street:\n" +" ${object.company_id.street}
\n" +" % endif\n" +" % if object.company_id.street2:\n" +" ${object.company_id.street2}
\n" +" % endif\n" +" % if object.company_id.city or object.company_id.zip:\n" +" ${object.company_id.zip} ${object.company_id.city}
\n" +" % endif\n" +" % if object.company_id.country_id:\n" +" ${object.company_id.state_id and ('%s, ' % " +"object.company_id.state_id.name) or ''} ${object.company_id.country_id.name " +"or ''}
\n" +" % endif\n" +"
\n" +" % if object.company_id.phone:\n" +"
\n" +" Phone:  ${object.company_id.phone}\n" +"
\n" +" % endif\n" +" % if object.company_id.website:\n" +"
\n" +" Web : ${object.company_id.website}\n" +"
\n" +" %endif\n" +"

\n" +"
\n" +"
\n" +" " #. module: account #: view:account.period:0 @@ -3647,7 +3813,7 @@ msgstr "Obračunski period" #: help:account.account.template,currency_id:0 #: help:account.bank.accounts.wizard,currency_id:0 msgid "Forces all moves for this account to have this secondary currency." -msgstr "Forces all moves for this account to have this secondary currency." +msgstr "Forsira da sva knjiženja ovog konta moraju imati sekundarnu valutu." #. module: account #: model:ir.actions.act_window,help:account.action_validate_account_move_line @@ -3672,7 +3838,7 @@ msgstr "Transakcije" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile msgid "Account Unreconcile Reconcile" -msgstr "Račun Neusklađen Usklađen" +msgstr "Zatvaranje neztvorenih konta" #. module: account #: help:account.account.type,close_method:0 @@ -3732,7 +3898,7 @@ msgstr "Ostavite prazno za korištenje konta troška" #: model:ir.ui.menu,name:account.menu_journals #: model:ir.ui.menu,name:account.menu_journals_report msgid "Journals" -msgstr "Vrste dokumenta" +msgstr "Dnevnici" #. module: account #: field:account.partner.reconcile.process,to_reconcile:0 @@ -3761,7 +3927,7 @@ msgstr "Nabava" #: view:account.installer:0 #: view:wizard.multi.charts.accounts:0 msgid "Accounting Application Configuration" -msgstr "Accounting Application Configuration" +msgstr "Konfiguracija računovodstvene aplikacije" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration @@ -3775,9 +3941,8 @@ msgid "" "be with same name as statement name. This allows the statement entries to " "have the same references than the statement itself" msgstr "" -"if you give the Name other then /, its created Accounting Entries Move will " -"be with same name as statement name. This allows the statement entries to " -"have the same references than the statement itself" +"Ako date ime drugačije od /, njegove kreirane stavke će imati isto ime kao i " +"izvod. Ovo omogućava stavkama izvoda da imaju istu oznaku kao i glava." #. module: account #: code:addons/account/account_invoice.py:1016 @@ -3787,6 +3952,9 @@ msgid "" "centralized counterpart box in the related journal from the configuration " "menu." msgstr "" +"Ne možete kreirati račun na centraiziranom dnevniku. Odznačite " +"centralizirana protustavka kvadratić u povezanom dnevniku iz menija " +"konfiguracije." #. module: account #: field:account.bank.statement,balance_start:0 @@ -3811,7 +3979,7 @@ msgstr "Zatvori razdoblje" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Početni podzbroj" #. module: account #: constraint:account.move.line:0 @@ -3819,6 +3987,8 @@ msgid "" "You cannot create journal items with a secondary currency without recording " "both 'currency' and 'amount currency' field." msgstr "" +"Ne možete kreirati stavke dnevnika sa sekundarnom valutom bez unosa polja " +"'valuta' i 'devizni iznos'." #. module: account #: field:account.financial.report,display_detail:0 @@ -3835,9 +4005,7 @@ msgstr "PDV:" msgid "" "The amount expressed in the related account currency if not equal to the " "company one." -msgstr "" -"The amount expressed in the related account currency if not equal to the " -"company one." +msgstr "Iznos iskazan u valuti konta ako nije isti valuti kompanije." #. module: account #: help:account.config.settings,paypal_account:0 @@ -3860,13 +4028,17 @@ msgid "" "You can create one in the menu: \n" "Configuration/Journals/Journals." msgstr "" +"Nema niti jednog dnevnika %s tipa za ovu kompaniju.\n" +"\n" +"Možete kreirati jednog u meniju: \n" +"Konfiguracija/Dnevnici/Dnevnici." #. module: account #: model:ir.actions.act_window,name:account.action_account_unreconcile #: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile #: model:ir.actions.act_window,name:account.action_account_unreconcile_select msgid "Unreconcile Entries" -msgstr "Otvori stavke" +msgstr "Razveži stavke" #. module: account #: field:account.tax.code,notprintable:0 @@ -3883,18 +4055,18 @@ msgstr "Stablo poreza" #. module: account #: view:account.journal:0 msgid "Search Account Journal" -msgstr "Traži vrstu dokumenta" +msgstr "Traži dnevnik" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice msgid "Pending Invoice" -msgstr "Pending Invoice" +msgstr "Račun na čekanju" #. module: account #: view:account.invoice.report:0 #: selection:account.subscription,period_type:0 msgid "year" -msgstr "year" +msgstr "godina" #. module: account #: field:account.config.settings,date_start:0 @@ -3910,6 +4082,11 @@ msgid "" "by\n" " your supplier/customer." msgstr "" +"Moći ćete uređivati i potvrditi ovo\n" +" odobrenje direktno ili ostaviti u " +"nacrtu,\n" +" čekajući dokument koji će biti izdan\n" +" od strane dobavljača/kupca." #. module: account #: view:validate.account.move.lines:0 @@ -3917,8 +4094,8 @@ msgid "" "All selected journal entries will be validated and posted. It means you " "won't be able to modify their accounting fields anymore." msgstr "" -"Sve odabrane stavke dnevnika će biti potvrđena i objavljena. To znači da " -"nećete moći modificirati svoje računovodstvene polja više." +"Sve odabrane stavke dnevnika će biti potvrđene i objavljene. To znači da " +"nećete više moći modificirati njihova polja." #. module: account #: code:addons/account/account_move_line.py:98 @@ -3927,6 +4104,8 @@ msgid "" "You have not supplied enough arguments to compute the initial balance, " "please select a period and a journal in the context." msgstr "" +"Niste osigurali dovoljno uvjeta za izračun početnog stanja, molimo odaberite " +"period i dnevnik u kontekstu." #. module: account #: model:ir.actions.report.xml,name:account.account_transfers @@ -3977,6 +4156,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za izradu novog izlaznog računa.\n" +"

\n" +" Elektronsko fakturiranje OpenERPa omogućava jednostavniju \n" +" i bržu naplatu računa. Vaš kupac prima račun emailom i može\n" +" plaćati online i/ili uvesti račun u svoj sustav.\n" +"

\n" +" Razgovori s vašim kupcem su automatski prikazani\n" +" na dnu svakog računa.\n" +"

\n" +" " #. module: account #: field:account.tax.code,name:0 @@ -4008,11 +4198,13 @@ msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" +"Ne možete mijenjati knjižene stavke ovog dnevnika.\n" +"Prvo je potrebno u dnevniku omogućiti otkazivanje stavaka." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal msgid "Print Sale/Purchase Journal" -msgstr "Ispiši dnevnik Prodaje/Nabave" +msgstr "Ispiši dnevnik prodaje/nabave" #. module: account #: view:account.installer:0 @@ -4088,7 +4280,7 @@ msgstr "PDV :" #: model:ir.actions.act_window,name:account.action_account_tree #: model:ir.ui.menu,name:account.menu_action_account_tree2 msgid "Chart of Accounts" -msgstr "Chart of Accounts" +msgstr "Kontni plan" #. module: account #: view:account.tax.chart:0 @@ -4098,12 +4290,12 @@ msgstr "(prazno - sva otvorena razdoblja)" #. module: account #: model:ir.model,name:account.model_account_journal_cashbox_line msgid "account.journal.cashbox.line" -msgstr "" +msgstr "account.journal.cashbox.line" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process msgid "Reconcilation Process partner by partner" -msgstr "Reconcilation Process partner by partner" +msgstr "Proces zatvaranja, partner po partner" #. module: account #: view:account.chart:0 @@ -4155,7 +4347,7 @@ msgstr "Datum" #. module: account #: view:account.move:0 msgid "Post" -msgstr "Objava" +msgstr "Knjiženje" #. module: account #: view:account.unreconcile:0 @@ -4176,9 +4368,9 @@ msgid "" "based on partner payment term!\n" "Please define partner on it!" msgstr "" -"Maturity date of entry line generated by model line '%s' of model '%s' is " -"based on partner payment term!\n" -"Please define partner on it!" +"Datum dospijeća stavke generiran stavkom modela '%s' od modela '%s' se " +"bazira na načinu plaćanja partnera!\n" +"Molimo odredite partnera na njemu!" #. module: account #: report:account.account.balance:0 @@ -4260,7 +4452,7 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,product_qty:0 msgid "Qty" -msgstr "Kol." +msgstr "Količina" #. module: account #: help:account.tax.code,sign:0 @@ -4544,7 +4736,7 @@ msgstr "(Treba poništiti zatvaranja računa da biste ga otvorili)" #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "Analitički konto poreza" #. module: account #: field:account.chart,period_from:0 @@ -4591,6 +4783,7 @@ msgid "" "If you put \"%(year)s\" in the prefix, it will be replaced by the current " "year." msgstr "" +"Ako stavite \"%(year)s\" u prefiks, biti će zamijenjeno sa tekućom godinom." #. module: account #: help:account.account,active:0 @@ -4602,7 +4795,7 @@ msgstr "Neaktivna konta se neće prikazivati u listama odabira." #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "" +msgstr "Knjižene temeljnice" #. module: account #: field:account.move.line,blocked:0 @@ -4665,7 +4858,7 @@ msgstr "Otkaži odabrane račune" #: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" -msgstr "" +msgstr "Morate dodijeliti analitički dnevnik na '%s' dnevniku!" #. module: account #: model:process.transition,note:account.process_transition_supplieranalyticcost0 @@ -4691,6 +4884,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za podešavanje novog bankovnog računa. \n" +"

\n" +" Podesite bankovni račun vaše kompanije i odaberite one koji se\n" +" moraju pojaviti u podnožju izvještaja.\n" +"

\n" +" Ako koristite računovodstvo OpenERPa, dnevnici i\n" +" konta će se kreirati automatski na bazi ovih podataka.\n" +"

\n" +" " #. module: account #: constraint:account.tax.code.template:0 @@ -4725,12 +4928,12 @@ msgstr "Mjesec" #: code:addons/account/account.py:668 #, python-format msgid "You cannot change the code of account which contains journal items!" -msgstr "" +msgstr "Ne možete mijenjati šifru konta koji ima stavke dnevnika!" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "Brojevni krug ulaznih računa" +msgstr "Sekvenca ulaznih računa" #. module: account #: code:addons/account/account_invoice.py:610 @@ -4740,6 +4943,8 @@ msgid "" "Cannot find a chart of account, you should create one from Settings\\" "Configuration\\Accounting menu." msgstr "" +"Nije moguće pronaći kontni pan, trebate kreirati jedan iz Postavke\\" +"Konfiguracija\\Računovodstvo izbornika." #. module: account #: field:account.entries.report,product_uom_id:0 @@ -4761,7 +4966,7 @@ msgstr "Tip konta" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Banka i čekovi" #. module: account #: field:account.account.template,note:0 @@ -4771,14 +4976,14 @@ msgstr "Bilješka" #. module: account #: selection:account.financial.report,sign:0 msgid "Reverse balance sign" -msgstr "" +msgstr "Obrnuti predznak" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:191 #, python-format msgid "Balance Sheet (Liability account)" -msgstr "" +msgstr "Bilanca (konta pasive)" #. module: account #: help:account.invoice,date_invoice:0 @@ -4789,7 +4994,7 @@ msgstr "Ostavite prazno za trenutni datum" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Podzbroj zatvaranja" #. module: account #: field:account.tax,base_code_id:0 @@ -4801,7 +5006,7 @@ msgstr "Porezna grupa osnovice" #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." -msgstr "" +msgstr "Morate predvidjeti konto za otpis / tečajnu razliku." #. module: account #: help:res.company,paypal_account:0 @@ -4834,12 +5039,12 @@ msgstr "Sve proknjižene stavke" #. module: account #: field:report.aged.receivable,name:0 msgid "Month Range" -msgstr "Raspon Mjeseci" +msgstr "Mjesečni raspon" #. module: account #: help:account.analytic.balance,empty_acc:0 msgid "Check if you want to display Accounts with 0 balance too." -msgstr "Check if you want to display Accounts with 0 balance too." +msgstr "Označite ako želite prikazivati konta sa saldom 0 također." #. module: account #: field:account.move.reconcile,opening_reconciliation:0 @@ -4870,6 +5075,7 @@ msgid "" "There is currently no company without chart of account. The wizard will " "therefore not be executed." msgstr "" +"Trenutno nema kompanije bez kontnog plana. Čarobnjak se neće pokretati." #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart @@ -4889,7 +5095,7 @@ msgstr "Referenca plaćanja" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Main Title 1 (bold, underlined)" -msgstr "" +msgstr "Glavni naslov 1 (podebljan, podvučeni)" #. module: account #: report:account.analytic.account.balance:0 @@ -4900,7 +5106,7 @@ msgstr "Naziv konta" #. module: account #: help:account.fiscalyear.close,report_name:0 msgid "Give name of the new entries" -msgstr "Give name of the new entries" +msgstr "Nazovi nove stavke" #. module: account #: model:ir.model,name:account.model_account_invoice_report @@ -4915,13 +5121,13 @@ msgstr "Tečaj" #. module: account #: model:process.transition,note:account.process_transition_paymentorderreconcilation0 msgid "Bank statements are entered in the system." -msgstr "Bank statements are entered in the system." +msgstr "Izvodi se unose u sustav." #. module: account #: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" -msgstr "Otpis" +msgstr "Zatvaranje s otpisom." #. module: account #: view:account.account.template:0 @@ -4968,7 +5174,7 @@ msgstr "Naziv perioda mora biti jedinstven unutar tvrtke" #. module: account #: help:wizard.multi.charts.accounts,currency_id:0 msgid "Currency as per company's country." -msgstr "" +msgstr "Valuta prema državi kompanije." #. module: account #: view:account.tax:0 @@ -4988,6 +5194,9 @@ msgid "" "you want to generate accounts of this template only when loading its child " "template." msgstr "" +"Isključite ovo ako ne želite da se ovaj predložak aktivno koristi u " +"čarobnjaku koji generira kontni plan iz predložaka. Ovo je vrlo korisno kada " +"želite generirati konta ovog predloška samo iz podređenog predloška." #. module: account #: view:account.use.model:0 @@ -4998,7 +5207,7 @@ msgstr "Stvori stavke iz modela" #: field:account.account,reconcile:0 #: field:account.account.template,reconcile:0 msgid "Allow Reconciliation" -msgstr "Allow Reconciliation" +msgstr "Dozvoli zatvaranje" #. module: account #: constraint:account.account:0 @@ -5006,6 +5215,8 @@ msgid "" "Error!\n" "You cannot create an account which has parent account of different company." msgstr "" +"Greška!\n" +"Ne možete kreirati konto koji ima nadređeni konto druge komapnije." #. module: account #: code:addons/account/account_invoice.py:658 @@ -5016,6 +5227,10 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" +"Nema dnevnika tipa %s za ovu kompaniju.\n" +"\n" +"Možete kreirati jedan iz izbornika: \n" +"Konfiguracija\\Dnevnici\\Dnevnici." #. module: account #: report:account.vat.declaration:0 @@ -5031,7 +5246,7 @@ msgstr "ECNJ" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger_journal_report msgid "Account Analytic Cost Ledger For Journal Report" -msgstr "Account Analytic Cost Ledger For Journal Report" +msgstr "Analitički troškovnik za izvještaj dnevnika" #. module: account #: model:ir.actions.act_window,name:account.action_model_form @@ -5041,7 +5256,7 @@ msgstr "Ponavljajući modeli" #. module: account #: view:account.tax:0 msgid "Children/Sub Taxes" -msgstr "" +msgstr "Podređeni porezi" #. module: account #: xsl:account.transfer:0 @@ -5068,7 +5283,7 @@ msgstr "Opišite kad uzimate novac iz blagajne :" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Cancelled" -msgstr "Otkazani" +msgstr "Otkazano" #. module: account #: help:account.config.settings,group_proforma_invoices:0 @@ -5163,6 +5378,9 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" +"Kada se kreira razdoblje dnevnika. Status je 'nacrt'. Ako je izvještaj " +"ispisan postaje 'ispisan' status. Kada su sve transakcije završene, prelazi " +"u 'završen' status." #. module: account #: code:addons/account/account.py:3205 @@ -5191,7 +5409,7 @@ msgstr "Računi" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 msgid "Check this box if this company is a legal entity." -msgstr "Označite ovjde ako je ova Tvrtka zasebna pravna osoba" +msgstr "Označite ovdje ako je ova kompanija zasebna pravna osoba" #. module: account #: model:account.account.type,name:account.conf_account_type_chk @@ -5247,7 +5465,7 @@ msgstr "Fakturirano" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "" +msgstr "Knjižene temeljnice" #. module: account #: view:account.use.model:0 @@ -5261,9 +5479,9 @@ msgid "" "account if this is a Customer Invoice or Supplier Refund, otherwise a " "Partner bank account number." msgstr "" -"Broj bankovnog računa na koji račun treba biti uplaćen. Broj računa " -"Organizacije ukoliko je ovo izlazni račun ili povrat od dobavljača, u " -"protivnom broj računa partnera ." +"Broj bankovnog računa na koji račun treba biti uplaćen. Broj računa tvrtke " +"ukoliko je ovo izlazni račun ili povrat od dobavljača, u protivnom broj " +"računa partnera ." #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 @@ -5308,6 +5526,8 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "invoices. Leave empty to use the expense account." msgstr "" +"Postavite predodređeni konto za stavke poreza na računima. Ostavite prazno " +"za konto troškova." #. module: account #: code:addons/account/account.py:890 @@ -5318,7 +5538,7 @@ msgstr "Početni period" #. module: account #: view:account.move:0 msgid "Journal Entries to Review" -msgstr "" +msgstr "Temeljnice za pregledati" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 @@ -5360,7 +5580,7 @@ msgstr "Aktivan" #: view:account.bank.statement:0 #: field:account.journal,cash_control:0 msgid "Cash Control" -msgstr "Kontrola Gotovine" +msgstr "Kontrola gotovine" #. module: account #: field:account.analytic.balance,date2:0 @@ -5390,7 +5610,7 @@ msgstr "Saldo po vrsti konta" #: code:addons/account/account_cash_statement.py:301 #, python-format msgid "There is no %s Account on the journal %s." -msgstr "" +msgstr "Nema %s konta na dnevniku %s." #. module: account #: model:res.groups,name:account.group_account_user @@ -5403,11 +5623,13 @@ msgid "" "From this view, have an analysis of your treasury. It sums the balance of " "every accounting entries made on liquidity accounts per period." msgstr "" +"Iz ovog pogleda imate analizu vaših financija. Zbraja saldo svakog unosa na " +"kontima likvidnosti po periodu." #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "Voditelj Financija" +msgstr "Voditelj financija" #. module: account #: field:account.journal,group_invoice_lines:0 @@ -5428,7 +5650,7 @@ msgstr "Temeljnice" #: field:account.bank.statement,details_ids:0 #: view:account.journal:0 msgid "CashBox Lines" -msgstr "" +msgstr "Stavke blagajne" #. module: account #: model:ir.model,name:account.model_account_vat_declaration @@ -5442,7 +5664,7 @@ msgid "" "but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" "Ukoliko ne označite ovo polje, možete izrađivati račune i vršiti plaćanja, " -"ali bez računovodstva (Dnevnici, Kontni plan, isl)" +"ali bez računovodstva (dnevnici, kontni plan, ...)" #. module: account #: view:account.period:0 @@ -5518,12 +5740,14 @@ msgstr "Ciljna knjiženja" msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" msgstr "" +"Temeljnica ne može biti brisana ako je povezana sa računom. (Račun: %s -" +"Temeljnica br:%s)" #. module: account #: view:account.bank.statement:0 #: help:account.cashbox.line,number_opening:0 msgid "Opening Unit Numbers" -msgstr "" +msgstr "Brojevi otvaranja" #. module: account #: field:account.subscription,period_type:0 @@ -5562,13 +5786,16 @@ msgid "" "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" msgstr "" +"Ovaj izbor vam pomaže odlučiti da li želite korisniku predložiti da unosi " +"stope poreza kod nabave i prodaje ili da odabere iz popisa poreza. Ovo drugo " +"podrazumijeva da je set poreza na ovom predlošku potpun." #. module: account #: view:account.financial.report:0 #: field:account.financial.report,children_ids:0 #: model:ir.model,name:account.model_account_financial_report msgid "Account Report" -msgstr "" +msgstr "Izvještaj konta" #. module: account #: field:account.entries.report,year:0 @@ -5601,11 +5828,14 @@ msgid "" "Put a sequence in the journal definition for automatic numbering or create a " "sequence manually for this piece." msgstr "" +"Nije moguće kreirati automatsku sekvencu za ovaj dio.\n" +"Stavite sekvencu u definiciju dnevnika za automatsku dodjelu broja ili " +"kreirate sekvencu ručno za ovaj dio." #. module: account #: view:account.invoice:0 msgid "Pro Forma Invoice " -msgstr "PredRačun " +msgstr "Predračun " #. module: account #: selection:account.subscription,period_type:0 @@ -5616,7 +5846,7 @@ msgstr "mjesec" #: view:account.move.line:0 #: field:account.partner.reconcile.process,next_partner_id:0 msgid "Next Partner to Reconcile" -msgstr "Slijedeći partner za zatvaranje" +msgstr "Sljedeći partner za zatvaranje" #. module: account #: field:account.invoice.tax,account_id:0 @@ -5636,7 +5866,7 @@ msgstr "Bilanca stanja" #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "Dobit i gubitak (konto prihoda)" +msgstr "RDG (konta prihoda)" #. module: account #: field:account.journal,allow_date:0 @@ -5756,7 +5986,7 @@ msgstr "" #. module: account #: field:account.journal,update_posted:0 msgid "Allow Cancelling Entries" -msgstr "Dozvoli odažuriranje knjiženja" +msgstr "Dozvoli otkazivanje knjiženja" #. module: account #: code:addons/account/wizard/account_use_model.py:44 @@ -5767,7 +5997,8 @@ msgid "" "Please define partner on it!" msgstr "" "Datum dospijeća stavke unosa generira se od strane modela linije '%s', te se " -"temelji se na roku plaćanja partnera! NMolimo definirati partnera!" +"temelji se na roku plaćanja partnera! \n" +"Molimo definirajte partnera!" #. module: account #: field:account.tax.code,sign:0 @@ -5777,7 +6008,7 @@ msgstr "Koeficijent za nadređenog" #. module: account #: report:account.partner.balance:0 msgid "(Account/Partner) Name" -msgstr "Naziv (Konta/Partnera)" +msgstr "Naziv (konta/partnera)" #. module: account #: field:account.partner.reconcile.process,progress:0 @@ -5803,7 +6034,7 @@ msgstr "Ponovo izračunaj poreze i ukupni iznos" #: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." -msgstr "" +msgstr "Ne možete mijenjati/brisati dnevnik sa unosima za ovaj period." #. module: account #: field:account.tax.template,include_base_amount:0 @@ -5834,6 +6065,7 @@ msgstr "Izračun iznosa" #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" +"Ne možete dodavati/mijenjati unose u zatvorenom periodu %s dnevnika %s." #. module: account #: view:account.journal:0 @@ -5844,7 +6076,7 @@ msgstr "Kontrole unosa" #: view:account.analytic.chart:0 #: view:project.account.analytic.line:0 msgid "(Keep empty to open the current situation)" -msgstr "(prazno za trenutno stanje)" +msgstr "(Zadržite prazno da biste otvorili trenutno stanje)" #. module: account #: field:account.analytic.balance,date1:0 @@ -5858,12 +6090,12 @@ msgstr "Početak razdoblja" #. module: account #: model:account.account.type,name:account.account_type_asset_view1 msgid "Asset View" -msgstr "" +msgstr "Pogled aktive" #. module: account #: model:ir.model,name:account.model_account_common_account_report msgid "Account Common Account Report" -msgstr "Account Common Account Report" +msgstr "Izvještaj za uobičajena konta" #. module: account #: view:account.analytic.account:0 @@ -5891,6 +6123,9 @@ msgid "" "that you should have your last line with the type 'Balance' to ensure that " "the whole amount will be treated." msgstr "" +"Odaberite vrstu ovjere povezanu sa ovim načinom plaćanja. Imajte na umu da " +"vaša zadnja stavka mora biti tip 'saldo' kako bi osigurali da će cijeli " +"iznos biti zahvaćen." #. module: account #: field:account.partner.ledger,initial_balance:0 @@ -5951,9 +6186,9 @@ msgid "" "something to reconcile or not. This figure already count the current partner " "as reconciled." msgstr "" -"This is the remaining partners for who you should check if there is " -"something to reconcile or not. This figure already count the current partner " -"as reconciled." +"Ovo su preostali partneri za koje biste trebali provjeriti da li je ostalo " +"nešto za zatvaranje ili ne. Ova brojka već uključuje trenutnog partnera kao " +"zatvorenog." #. module: account #: view:account.subscription.line:0 @@ -5985,7 +6220,7 @@ msgstr "Promjeni valutu" #: model:process.node,note:account.process_node_accountingentries0 #: model:process.node,note:account.process_node_supplieraccountingentries0 msgid "Accounting entries." -msgstr "Accounting entries." +msgstr "Računovodstveni unosi." #. module: account #: view:account.invoice:0 @@ -5996,7 +6231,7 @@ msgstr "Datum plaćanja" #: view:account.bank.statement:0 #: field:account.bank.statement,opening_details_ids:0 msgid "Opening Cashbox Lines" -msgstr "" +msgstr "Stavke početnog stanja blagajne" #. module: account #: view:account.analytic.account:0 @@ -6041,7 +6276,7 @@ msgstr "Količina" #. module: account #: view:account.move.line:0 msgid "Number (Move)" -msgstr "Broj (Temeljnice)" +msgstr "Broj (temeljnice)" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -6051,7 +6286,7 @@ msgstr "Normalni tekst" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 msgid "Payment entries are the second input of the reconciliation." -msgstr "Payment entries are the second input of the reconciliation." +msgstr "Stavke plaćanja su drugi unos zatvaranja." #. module: account #: help:res.partner,property_supplier_payment_term:0 @@ -6059,6 +6294,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Ovaj će se način plaćanja koristiti kao predodređen za naloge za nabavu i " +"ulazne račune." #. module: account #: help:account.automatic.reconcile,power:0 @@ -6121,7 +6358,7 @@ msgstr "Zatvaranje s otpisom nezatvorenog dijela" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on an account of type view." -msgstr "" +msgstr "Ne možete kreirati stavke dnevnika na kontu koji je pogled." #. module: account #: selection:account.payment.term.line,value:0 @@ -6250,7 +6487,7 @@ msgstr "Slobodna vezna oznaka" #: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" -msgstr "Konta potraživanja i dugovanja partnera" +msgstr "Dugovna i potražna konta" #. module: account #: field:account.fiscal.position.account.template,position_id:0 @@ -6260,13 +6497,13 @@ msgstr "Fiskalno mapiranje" #. module: account #: view:account.config.settings:0 msgid "Select Company" -msgstr "Odaberite Tvrtku" +msgstr "Odaberite kompaniju" #. module: account #: model:ir.actions.act_window,name:account.action_account_state_open #: model:ir.model,name:account.model_account_state_open msgid "Account State Open" -msgstr "Stanje konta Otvoren" +msgstr "Stanje konta otvoren" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -6286,9 +6523,9 @@ msgid "" "document shows your debit and credit taking in consideration some criteria " "you can choose by using the search tool." msgstr "" -"From this view, have an analysis of your different financial accounts. The " -"document shows your debit and credit taking in consideration some criteria " -"you can choose by using the search tool." +"Iz ovog pogleda imate analizu vaših različitih financijskih konta. Dokument " +"pokazuje vaše dugove i potražne stavke uzimajući u obzir neke kriterije " +"koristeći alat pretrage." #. module: account #: help:account.partner.reconcile.process,progress:0 @@ -6296,8 +6533,8 @@ msgid "" "Shows you the progress made today on the reconciliation process. Given by \n" "Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)" msgstr "" -"Shows you the progress made today on the reconciliation process. Given by \n" -"Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)" +"Prikazuje vaš današnji napredak u postupku zatvaranja. Daje ih\n" +"partneri zatvoreni danas\\ (preostali partneri + partneri zatvoreni danas)" #. module: account #: field:account.invoice,period_id:0 @@ -6305,7 +6542,7 @@ msgstr "" #: field:report.account.sales,period_id:0 #: field:report.account_type.sales,period_id:0 msgid "Force Period" -msgstr "Forsiraj razdoblje" +msgstr "Obračunski period" #. module: account #: model:ir.actions.act_window,help:account.action_account_form @@ -6324,6 +6561,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikni za dodavanje konta.\n" +"

\n" +" Konto je dio glavne knjige i dozvoljava vašoj kompaniji\n" +" evidenciju svih rsta dugovnih i potražnih transakcija.\n" +" Kompanije podnose svoja godišnje izvješće po kontima u\n" +" dva glavna dijela: bilanca stanja i račun dobiti i gubitka.\n" +" Godišnje izvješće je zakonska obveza.\n" +"

\n" +" " #. module: account #: view:account.invoice.report:0 @@ -6359,7 +6606,7 @@ msgstr "Filtriraj po" #: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" -msgstr "" +msgstr "Imate pogrešan izraz \"%(...)s\" u vašem modelu !" #. module: account #: view:account.tax.template:0 @@ -6369,7 +6616,7 @@ msgstr "Kod za izračun cijena sa uključenim porezima" #. module: account #: help:account.bank.statement,balance_end:0 msgid "Balance as calculated based on Starting Balance and transaction lines" -msgstr "" +msgstr "Saldo se računa na bazi početnog stanja i transakcija." #. module: account #: field:account.journal,loss_account_id:0 @@ -6397,6 +6644,11 @@ msgid "" "created by the system on document validation (invoices, bank statements...) " "and will be created in 'Posted' status." msgstr "" +"Ručno kreirane temeljnice su obično u statusu 'neknjižen', ali možete " +"postaviti opciju da preskače taj status na povezanom dnevniku. U tom " +"slučaju, ponašati će se kao temeljnice koje sistem kreira automatski na " +"potvrdi dokumenata (računi, izvodi ...) i biti će kreirane u statusu " +"'knjiženo'." #. module: account #: field:account.payment.term.line,days:0 @@ -6410,6 +6662,8 @@ msgid "" "You cannot validate this journal entry because account \"%s\" does not " "belong to chart of accounts \"%s\"." msgstr "" +"Ne možete knjižiti ovu temeljnicu jer konto \"%s\" ne pripada kontnom planu " +"\"%s\"." #. module: account #: view:account.financial.report:0 @@ -6448,12 +6702,12 @@ msgstr "Odobrenja kupcima" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "" +msgstr "Inozemni saldo" #. module: account #: field:account.journal.period,name:0 msgid "Journal-Period Name" -msgstr "Naziv dnevnika-razdoblja" +msgstr "Naziv dnevnik-period" #. module: account #: field:account.invoice.tax,factor_base:0 @@ -6473,7 +6727,7 @@ msgstr "Dozvoljava korištenje više valuta" #. module: account #: view:account.subscription:0 msgid "Running Subscription" -msgstr "" +msgstr "Pretplata u toku" #. module: account #: report:account.invoice:0 @@ -6498,6 +6752,8 @@ msgid "" "This journal will be created automatically for this bank account when you " "save the record" msgstr "" +"Ovaj dnevnik će biti kreiran automatski za ovaj bankovni račun kada snimite " +"zapis." #. module: account #: view:account.analytic.line:0 @@ -6532,7 +6788,7 @@ msgstr "" #: view:account.chart.template:0 #: field:account.chart.template,account_root_id:0 msgid "Root Account" -msgstr "Korijensko konto" +msgstr "Osnovni konto" #. module: account #: field:res.partner,last_reconciliation_date:0 @@ -6557,6 +6813,8 @@ msgid "" "You cannot cancel an invoice which is partially paid. You need to " "unreconcile related payment entries first." msgstr "" +"Ne možete otkazati račun koji je djelomićno plaćen. Morate prvo razvezati " +"stavke zatvaranja." #. module: account #: field:product.template,taxes_id:0 @@ -6591,6 +6849,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za unos odobrenja dobavljača.\n" +"

\n" +" Umjesto ručnog kreiranja odobrenja dobavljača, možete " +"generirati \n" +" odobrenja i zatvarati ih direktno iz povezanog ulaznog " +"računa.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -6613,6 +6880,9 @@ msgid "" "choice assumes that the set of tax defined for the chosen template is " "complete" msgstr "" +"Odaberite da li želite predložiti korisniku da unosi prodajni i nabavni " +"porez ili koristi uobičajena više na jedan polja. Zadnji izbor pretpostavlja " +"da je set poreza definiran u odabranom predlošku potpun." #. module: account #: report:account.vat.declaration:0 @@ -6632,12 +6902,12 @@ msgstr "Otvoreni i plaćeni računi" #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children flat" -msgstr "" +msgstr "Prikaži podređene bez grupiranja" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "Banka i Gotovina" +msgstr "Banka i gotovina" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 @@ -6720,13 +6990,14 @@ msgstr "Potraživanja" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on closed account." -msgstr "" +msgstr "Ne možete kreirati stavke dnevnika na zatvorenom kontu." #. module: account #: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" +"Kompanija iz stavke temeljnice i kompanija iz računa se ne poklapaju." #. module: account #: view:account.invoice:0 @@ -6741,7 +7012,7 @@ msgstr "Zadani konto potražuje" #. module: account #: help:account.analytic.line,currency_id:0 msgid "The related account currency if not equal to the company one." -msgstr "The related account currency if not equal to the company one." +msgstr "Povezani konto valute ako nije jednak onom od kompanije." #. module: account #: code:addons/account/installer.py:69 @@ -6774,7 +7045,7 @@ msgstr "Konto internog prijenosa" #: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" -msgstr "" +msgstr "Molimo provjerite da je polje 'dnevnik' postavljeno na izvodu" #. module: account #: selection:account.tax,type:0 @@ -6784,7 +7055,7 @@ msgstr "Postotak" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round globally" -msgstr "Zaokruži Globalno" +msgstr "Zaokruži" #. module: account #: selection:account.report.general.ledger,sortby:0 @@ -6800,7 +7071,7 @@ msgstr "Eksponent" #: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." -msgstr "" +msgstr "Nije moguće generirati nekorištenu šifru dnevnika." #. module: account #: view:project.account.analytic.line:0 @@ -6824,12 +7095,12 @@ msgid "" "Indicates if the amount of tax must be included in the base amount for the " "computation of the next taxes" msgstr "" -"Iznos poreza treba uključiti u osnovicu prilikom izračuna slijedećih poreza." +"Iznos poreza treba uključiti u osnovicu prilikom izračuna sljedećih poreza." #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile msgid "Reconciliation: Go to Next Partner" -msgstr "Zatvaranje: Idi na slijedećeg partnera" +msgstr "Zatvaranje: Idi na sljedećeg partnera" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance @@ -6851,6 +7122,10 @@ msgid "" "due date, make sure that the payment term is not set on the invoice. If you " "keep the payment term and the due date empty, it means direct payment." msgstr "" +"Ako koristiti uvjete plaćanja, datum dospijeća će biti automatski izračunat " +"u trenutku nastanka knjiženja. Uvjeti plaćanja mogu računati nekoliko datuma " +"dospijeća, npr. 50% odmah i 50% za mjesec dana, ali ako želite prisiliti " +"datum dopsijeća, osigurajte da uvjet plaćanja nije postavljen na računu." #. module: account #: code:addons/account/account.py:414 @@ -6859,8 +7134,8 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" -"Nema početnog/završnog stanja definiranog. Molimo napravite jedna za početni " -"saldo." +"Nije definiran period početnog/završnog stanja. Molimo napravite jedan da bi " +"postavili početni saldo." #. module: account #: help:account.tax.template,sequence:0 @@ -6869,10 +7144,9 @@ msgid "" "higher ones. The order is important if you have a tax that has several tax " "children. In this case, the evaluation order is important." msgstr "" -"Sekvenciono polje se koristi da bi se poredjali porezi od najmanjeg do " -"najveceg. Ovaj poredak je vazan, narocito ukoliko imate poreze koji, opet " -"imaju nekoliko podredjenih poreza. U tom slucaju, ovaj evaluacioni poredak " -"je vazan." +"Sekvenciono polje se koristi da bi poredali stavke poreza od najmanjeg do " +"najvećeg. Ovaj poredak je važan ukoliko imate poreze koji, imaju nekoliko " +"podređenih poreza. U tom slučaju, važaj je slijed evaluacije poreza." #. module: account #: code:addons/account/account.py:1448 @@ -6937,10 +7211,10 @@ msgid "" "the tool search to analyse information about analytic entries generated in " "the system." msgstr "" -"From this view, have an analysis of your different analytic entries " -"following the analytic account you defined matching your business need. Use " -"the tool search to analyse information about analytic entries generated in " -"the system." +"Iz ovog pogleda imate analizu vaših različitih analičkih unosa prateći " +"analitički konto koji ste definirali prema vašim poslovnim potrebama. " +"Koristite alat pretraživanja za analizu informacija o analitičkim unosima " +"generiranim u sustavu." #. module: account #: sql_constraint:account.journal:0 @@ -6959,6 +7233,7 @@ msgid "" "You cannot change the owner company of an account that already contains " "journal items." msgstr "" +"Ne možete mijenjati kompaniju vlasnika na kontu koji već sadrži temeljnice." #. module: account #: report:account.invoice:0 @@ -7010,6 +7285,8 @@ msgid "" "There is no period defined for this date: %s.\n" "Please create one." msgstr "" +"Za ovaj datum nije definirano razdoblje: %s.\n" +"Molim Vas da ga kreirate." #. module: account #: field:account.analytic.line,product_uom_id:0 @@ -7030,7 +7307,7 @@ msgstr "" #. module: account #: field:account.installer,has_default_company:0 msgid "Has Default Company" -msgstr "" +msgstr "Ima predefiniranu tvrtku" #. module: account #: model:ir.model,name:account.model_account_sequence_fiscalyear @@ -7060,6 +7337,7 @@ msgid "" "Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " "2%." msgstr "" +"Postoci za stavke uvjeta plaćanja moraju biti između 0 i 1, npr. 0.02 za 2%." #. module: account #: report:account.invoice:0 @@ -7093,6 +7371,8 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disabled" msgstr "" +"Ako razvežete transakcije, morate također verificcirati sve akcije povezane " +"sa tim transakcijama jer one neće biti onemogućene." #. module: account #: view:account.account.template:0 @@ -7114,12 +7394,12 @@ msgstr "Statistike analitike" #: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " -msgstr "Stavke: " +msgstr "Temeljnice: " #. module: account #: help:res.partner.bank,currency_id:0 msgid "Currency of the related account journal." -msgstr "" +msgstr "Valuta povezanog računovodstvenog dnevnika" #. module: account #: constraint:account.move.line:0 @@ -7127,6 +7407,7 @@ msgid "" "You cannot provide a secondary currency if it is the same than the company " "one." msgstr "" +"Ne možete odrediti sekundarnu valutu ako je ista kao i valuta kompanije." #. module: account #: selection:account.tax.template,applicable_type:0 @@ -7138,17 +7419,17 @@ msgstr "Točno" #: code:addons/account/account.py:190 #, python-format msgid "Balance Sheet (Asset account)" -msgstr "" +msgstr "Bilanca stanja (konta aktive)" #. module: account #: model:process.node,note:account.process_node_draftstatement0 msgid "State is draft" -msgstr "Stanje je 'Nacrt'" +msgstr "Stanje je 'nacrt'" #. module: account #: view:account.move.line:0 msgid "Total debit" -msgstr "Total debit" +msgstr "Ukupno duguje" #. module: account #: view:account.move.line:0 @@ -7158,7 +7439,7 @@ msgstr "Sljedeća stavka za zatvaranje" #. module: account #: report:account.invoice:0 msgid "Fax :" -msgstr "Fax:" +msgstr "Faks:" #. module: account #: help:res.partner,property_account_receivable:0 @@ -7183,7 +7464,7 @@ msgstr "Python kod" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current period" -msgstr "" +msgstr "Stavke dnevnika sa razdobljem u trenutnom razdoblju" #. module: account #: help:account.journal,update_posted:0 @@ -7209,7 +7490,7 @@ msgstr "Stvori stavku" #: code:addons/account/account.py:189 #, python-format msgid "Profit & Loss (Expense account)" -msgstr "Dobit i gubitak (konto troška)" +msgstr "RDG (konta troška)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 @@ -7220,7 +7501,7 @@ msgstr "Ukupno transakcija" #: code:addons/account/account.py:636 #, python-format msgid "You cannot remove an account that contains journal items." -msgstr "" +msgstr "Nije moguće pobrisati konto koji ima knjiženja (stavke u dnevniku)." #. module: account #: code:addons/account/account.py:1024 @@ -7237,14 +7518,14 @@ msgstr "Stil financijskog izvješća" #. module: account #: selection:account.financial.report,sign:0 msgid "Preserve balance sign" -msgstr "" +msgstr "Zadrži predznak" #. module: account #: view:account.vat.declaration:0 #: model:ir.actions.report.xml,name:account.account_vat_declaration #: model:ir.ui.menu,name:account.menu_account_vat_declaration msgid "Taxes Report" -msgstr "Porezni Izvestaj" +msgstr "Porezne prijave" #. module: account #: selection:account.journal.period,state:0 @@ -7264,7 +7545,7 @@ msgstr "Ručno" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "Otkaži : kreiraj povrat i zatvori." +msgstr "Otkaži : kreiraj povrat i zatvori" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 @@ -7300,6 +7581,9 @@ msgid "" "row to display the amount of debit/credit/balance that precedes the filter " "you've set." msgstr "" +"Ako ste odabrali filter po datumu ili periodu, ovo polje će vam omogućiti da " +"dodate redak za prikaz iznosa duguje/potražuje/saldo koje prethodi filteru " +"koji ste postavili." #. module: account #: view:account.bank.statement:0 @@ -7308,7 +7592,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "Stavke" +msgstr "Temeljnice" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 @@ -7354,12 +7638,12 @@ msgstr "Da" #: code:addons/account/report/common_report_header.py:67 #, python-format msgid "All Entries" -msgstr "Sve stavke" +msgstr "Sve temeljnice" #. module: account #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." -msgstr "" +msgstr "Moguće je zatvoriti samo stavke istog partnera." #. module: account #: view:account.journal.select:0 @@ -7419,7 +7703,7 @@ msgstr "Kompletan popis poreza" #, python-format msgid "" "Selected Entry Lines does not have any account move enties in draft state." -msgstr "" +msgstr "Odabrane stavke nemaju knjiženja koja su u statusu nacrta." #. module: account #: view:account.chart.template:0 @@ -7449,6 +7733,8 @@ msgid "" "Configuration error!\n" "The currency chosen should be shared by the default accounts too." msgstr "" +"Greška konfiguracije!\n" +"Odabranu valutu je potrebno dijeliti i kod predodređenih konta." #. module: account #: code:addons/account/account.py:2304 @@ -7538,11 +7824,14 @@ msgid "" "Make sure you have configured payment terms properly.\n" "The latest payment term line should be of the \"Balance\" type." msgstr "" +"Ne možete potvrditi unos koji nije u ravnoteži.\n" +"Provjerite da li ste podesili uvjete plaćanja kako treba.\n" +"Zadnja linija načina plaćanja mora biti tip \"saldo\"." #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 msgid "A statement with manual entries becomes a draft statement." -msgstr "A statement with manual entries becomes a draft statement." +msgstr "Stavka sa ručnim unosom postaje stavka u nacrtu." #. module: account #: view:account.aged.trial.balance:0 @@ -7579,6 +7868,8 @@ msgid "" "You cannot define children to an account with internal type different of " "\"View\"." msgstr "" +"Greška prilikom konfiguracije!\n" +"Nije moguće dodijeliti podkonta kontu koji nije 'Pogled'." #. module: account #: model:ir.model,name:account.model_accounting_report @@ -7609,12 +7900,12 @@ msgstr "" msgid "For taxes of type percentage, enter % ratio between 0-1." msgstr "" "Za poreze koji se računaju putem postotka upišite vrijednost između 0 i 1. " -"Npr. 0,23 za 23%." +"Npr. 0,25 za 25%." #. module: account #: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy msgid "Financial Reports Hierarchy" -msgstr "Hijerarhijski Financijski izvještaji" +msgstr "Hijerarhija financijskog izvještaja" #. module: account #: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation @@ -7651,7 +7942,7 @@ msgstr "Sigurno želite otvoriti ovaj račun?" #. module: account #: field:account.chart.template,property_account_expense_opening:0 msgid "Opening Entries Expense Account" -msgstr "" +msgstr "Konto troška početnog stanja" #. module: account #: view:account.invoice:0 @@ -7672,7 +7963,7 @@ msgstr "Cijena" #: view:account.bank.statement:0 #: field:account.bank.statement,closing_details_ids:0 msgid "Closing Cashbox Lines" -msgstr "" +msgstr "Zatvaranje stavaka blagajne" #. module: account #: view:account.bank.statement:0 @@ -7690,7 +7981,7 @@ msgstr "Uobičajeni konto za dugovni iznos" #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "" +msgstr "Knjižene temeljnice" #. module: account #: help:account.payment.term.line,value_amount:0 @@ -7723,7 +8014,7 @@ msgstr "Ukupan iznos dugovanja kupca" #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "" +msgstr "Stavke dnevnika koje nisu u ravnoteži" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules @@ -7743,7 +8034,7 @@ msgstr "U redu" #. module: account #: field:account.chart.template,tax_code_root_id:0 msgid "Root Tax Code" -msgstr "Korijenska porezna grupa" +msgstr "Šifra glavnog konta" #. module: account #: help:account.journal,centralisation:0 @@ -7764,7 +8055,7 @@ msgstr "Zatvoren" #. module: account #: model:ir.model,name:account.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "Redak bankovnog izvoda" +msgstr "Stavka bankovnog izvoda" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 @@ -7774,7 +8065,7 @@ msgstr "Uobičajen porez nabave" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "" +msgstr "Konto prihoda za početno stanje" #. module: account #: field:account.config.settings,group_proforma_invoices:0 @@ -7815,12 +8106,12 @@ msgstr "Stvori stavke" #. module: account #: model:ir.model,name:account.model_cash_box_out msgid "cash.box.out" -msgstr "" +msgstr "cash.box.out" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "Glavna valuta Tvrtke" +msgstr "Glavna valuta kompanije" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports @@ -7866,6 +8157,11 @@ msgid "" " with the invoice. You will not be able " "to modify the credit note." msgstr "" +"Koristite ovu opciju ako želite stornirati račun.\n" +" Kreirati će se novi storno dokument koji " +"će zatvoriti ovaj \n" +" račun. Stornirani dokument ne možete " +"modificirati." #. module: account #: help:account.partner.reconcile.process,next_partner_id:0 @@ -7874,8 +8170,8 @@ msgid "" "the system to go through the reconciliation process, based on the latest day " "it have been reconciled." msgstr "" -"Pokazuje slijedećeg partnera u procesu zatvaranja IOS-a, a prema zadnjem " -"danu zatvaranja IOS-a." +"Pokazuje sljedećeg partnera u procesu zatvaranja IOS-a, a prema zadnjem danu " +"zatvaranja IOS-a." #. module: account #: field:account.move.line.reconcile.writeoff,comment:0 @@ -7900,6 +8196,8 @@ msgid "" "There is no default credit account defined \n" "on journal \"%s\"." msgstr "" +"Ne postoji predefinirani potražni konto \n" +"za dnevnik \"%s\"." #. module: account #: view:account.invoice.line:0 @@ -7938,30 +8236,43 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog analitičkog konta..\n" +"

\n" +" Standardno je struktura kontnog plana definirana zakonima\n" +" propisima svake zemlje. Struktura analitičkih konta\n" +" bi trebala odgovarati potrebama vaše tvrtke.\n" +"

\n" +" Većina poslovnih promjena u OpenERP-u (fakturiranje,\n" +" troškovi, nabava, proizvodnja ...) generiraju analitičke " +"stavke\n" +" na povezanom kontu.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_view msgid "Root/View" -msgstr "" +msgstr "Izvorni/Pogled" #. module: account #: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" -msgstr "" +msgstr "OPEJ" #. module: account #: report:account.invoice:0 #: view:account.invoice:0 msgid "PRO-FORMA" -msgstr "Pro-forma" +msgstr "Predračun" #. module: account #: selection:account.entries.report,move_line_state:0 #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "Neuravnotežen" +msgstr "Nije u ravnoteži" #. module: account #: selection:account.move.line,centralisation:0 @@ -8033,7 +8344,7 @@ msgstr "Ne postoji broj dijela !" #: view:account.financial.report:0 #: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy msgid "Account Reports Hierarchy" -msgstr "" +msgstr "Hijerarhija računovodstvenih izvještaja" #. module: account #: help:account.account.template,chart_template_id:0 @@ -8044,11 +8355,16 @@ msgid "" "few new accounts (You don't need to define the whole structure that is " "common to both several times)." msgstr "" +"Ova opcionalno polje vam omogućava da povežete predložak konta na određeni " +"predložak kontnog plana koji se mogu razlikovati od onog kojem njegov " +"nadređeni pripada. To vam omogućava da definirate predloške koji proširuju " +"druge i upotpunjuju ih sa par novih konta (ne morate definirati cijelu " +"strukturu koja je zajednička za oba nekoliko puta)." #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "" +msgstr "Neknjižene temeljnice" #. module: account #: help:account.invoice.refund,date:0 @@ -8056,6 +8372,8 @@ msgid "" "This date will be used as the invoice date for credit note and period will " "be chosen accordingly!" msgstr "" +"Ovaj će se datum koristiti kao datum računa za odobrenja i razdoblje će biti " +"odabrano sukladno tome." #. module: account #: view:product.template:0 @@ -8069,6 +8387,7 @@ msgid "" "You have to set a code for the bank account defined on the selected chart of " "accounts." msgstr "" +"Morate odrediti šifru za bankovni račun definiran na odabranom kontnom planu." #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile @@ -8108,7 +8427,7 @@ msgstr "Otkaži odabrane račune" #: help:account.account.type,report_type:0 msgid "" "This field is used to generate legal reports: profit and loss, balance sheet." -msgstr "" +msgstr "Ovo se polje koristi za generiranje izvještaja: RDG, bilanca" #. module: account #: selection:account.entries.report,month:0 @@ -8136,16 +8455,17 @@ msgid "" "The sequence field is used to order the resources from lower sequences to " "higher ones." msgstr "" +"Polje sekvenca se koristi za redosljed resursa od niže sekvence prema višima." #. module: account #: field:account.move.line,amount_residual_currency:0 msgid "Residual Amount in Currency" -msgstr "" +msgstr "Ostatak iznosa u valuti" #. module: account #: field:account.config.settings,sale_refund_sequence_prefix:0 msgid "Credit note sequence" -msgstr "" +msgstr "Sekvenca odobrenja" #. module: account #: model:ir.actions.act_window,name:account.action_validate_account_move @@ -8194,6 +8514,8 @@ msgid "" "Refund base on this type. You can not Modify and Cancel if the invoice is " "already reconciled" msgstr "" +"Povrat baziran na ovom tipu. Ne možete mijenjati i otkazati ako je račun već " +"zatvoren." #. module: account #: field:account.bank.statement.line,sequence:0 @@ -8211,12 +8533,12 @@ msgstr "Sekvenca" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "Paypal račun" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "" +msgstr "Broj temeljnice" #. module: account #: view:account.financial.report:0 @@ -8230,11 +8552,13 @@ msgid "" "Error!\n" "You cannot create recursive accounts." msgstr "" +"Greška!\n" +"Ne možete kreirati rekurzivna konta." #. module: account #: model:ir.model,name:account.model_cash_box_in msgid "cash.box.in" -msgstr "" +msgstr "cash.box.in" #. module: account #: help:account.invoice,move_id:0 @@ -8244,7 +8568,7 @@ msgstr "Poveznica na automatski kreirane stavke knjiženja" #. module: account #: model:ir.model,name:account.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account #: selection:account.config.settings,period:0 @@ -8314,9 +8638,9 @@ msgid "" "to the higher ones. The order is important if you have a tax with several " "tax children. In this case, the evaluation order is important." msgstr "" -"The sequence field is used to order the tax lines from the lowest sequences " -"to the higher ones. The order is important if you have a tax with several " -"tax children. In this case, the evaluation order is important." +"Polje sekvenca se koristi za poredak stavaka poreza od najniže sekvence " +"prema većoj. Redosljed je bitan ako imate porez sa nekoliko podređenih " +"poreza. U tom slučaju bitan je redosljed procjene" #. module: account #: model:ir.model,name:account.model_account_cashbox_line @@ -8371,7 +8695,7 @@ msgstr "Stanje stavke" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile msgid "Account move line reconcile" -msgstr "Account move line reconcile" +msgstr "Zatvaranje stavke temeljnice" #. module: account #: view:account.subscription.generate:0 @@ -8431,8 +8755,7 @@ msgid "" "Select Fiscal Year which you want to remove entries for its End of year " "entries journal" msgstr "" -"Select Fiscal Year which you want to remove entries for its End of year " -"entries journal" +"Odaberi fiskalnu godinu za koju želite ukoliniti temeljnice za kraj godine." #. module: account #: field:account.tax.template,type_tax_use:0 @@ -8453,7 +8776,7 @@ msgstr "" #: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." -msgstr "The account entries lines are not in valid state." +msgstr "Stavke ovog računa su neispravne" #. module: account #: field:account.account.type,close_method:0 @@ -8470,6 +8793,7 @@ msgstr "Automatski upis" msgid "" "Check this box if this account allows reconciliation of journal items." msgstr "" +"Označite ovu stavku ako ovaj konto dozvoljava zatvaranje stavaka dnevnika" #. module: account #: report:account.analytic.account.inverted.balance:0 @@ -8480,7 +8804,7 @@ msgstr "Obrnuti saldo analitike -" #: help:account.move.reconcile,opening_reconciliation:0 msgid "" "Is this reconciliation produced by the opening of a new fiscal year ?." -msgstr "" +msgstr "Da li je ovo zatvaranje pooizvod otvaranja nove fiskalne godine ?" #. module: account #: view:account.analytic.line:0 @@ -8513,7 +8837,7 @@ msgstr "Uk. ostatak" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "" +msgstr "Kontrola početnog stanja blagajne" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 @@ -8553,12 +8877,12 @@ msgstr "Knjiga troškova" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "Nema definirane fiskalne godine za ovu Organizaciju" +msgstr "Nema definirane fiskalne godine za ovu kompaniju" #. module: account #: view:account.invoice:0 msgid "Proforma" -msgstr "Proforma" +msgstr "Predračun" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -8576,13 +8900,13 @@ msgstr "Iznos ovog poreza dodati osnovici prije izračuna slijedećeg poreza." #: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" -msgstr "Knjiga odobrenja dobavljača" +msgstr "Dnevnik odobrenja dobavljača" #. module: account #: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Molimo definirajte sekvencu na dnevniku." #. module: account #: help:account.tax.template,amount:0 @@ -8593,7 +8917,7 @@ msgstr "" #. module: account #: view:account.analytic.account:0 msgid "Current Accounts" -msgstr "" +msgstr "Trenutna konta" #. module: account #: view:account.invoice.report:0 @@ -8612,6 +8936,9 @@ msgid "" "recalls.\n" " This installs the module account_followup." msgstr "" +"Ovo omogućuje automatizaciju dopisa za neplaćene račune, sa opozivima na " +"više razina.\n" +" Instalira modul account_followup." #. module: account #: field:account.automatic.reconcile,period_id:0 @@ -8644,7 +8971,7 @@ msgid "" "Total amount (in Company currency) for transactions held in secondary " "currency for this account." msgstr "" -"Ukupni iznos (u valuti Organizacije) za transakcije izvršene u sekundarnoj " +"Ukupni iznos (u valuti kompanije) za transakcije izvršene u sekundarnoj " "valuti za ovaj konto." #. module: account @@ -8705,6 +9032,9 @@ msgid "" "This wizard will remove the end of year journal entries of selected fiscal " "year. Note that you can run this wizard many times for the same fiscal year." msgstr "" +"Ovaj konfigurator pomaže u micanju stavaka zatvaranja odabrane fiskalne " +"godine. Ovaj je konfigurator moguće koristiti više puta za istu fiskalnu " +"godinu." #. module: account #: report:account.invoice:0 @@ -8714,7 +9044,7 @@ msgstr "Tel.:" #. module: account #: field:account.account,company_currency_id:0 msgid "Company Currency" -msgstr "Valuta organizacije" +msgstr "Valuta tvrtke" #. module: account #: field:account.aged.trial.balance,chart_account_id:0 @@ -8750,12 +9080,12 @@ msgstr "Rezultat zatvaranja" #: field:account.bank.statement,balance_end_real:0 #: field:account.treasury.report,ending_balance:0 msgid "Ending Balance" -msgstr "Ending Balance" +msgstr "Završni saldo" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "" +msgstr "Centralizirana protustavka" #. module: account #: help:account.move.line,blocked:0 @@ -8763,7 +9093,7 @@ msgid "" "You can check this box to mark this journal item as a litigation with the " "associated partner" msgstr "" -"Možete provjeriti ovaj okvir kako bi obilježili stavku temeljnice kao " +"Možete označiti ovaj okvir kako bi obilježili stavku temeljnice kao " "poveznicu s pripadajućim partnerom." #. module: account @@ -8775,7 +9105,7 @@ msgstr "Djelomično zatvaranje" #. module: account #: model:ir.model,name:account.model_account_analytic_inverted_balance msgid "Account Analytic Inverted Balance" -msgstr "Account Analytic Inverted Balance" +msgstr "Obrnuti saldo analitičkog konta" #. module: account #: model:ir.model,name:account.model_account_common_report @@ -8792,6 +9122,13 @@ msgid "" "invoice will be created \n" " so that you can edit it." msgstr "" +"Koristite ovu opciju ako želite stornirati račun i kreirati novi u istom " +"koraku.\n" +" Kreirati će se novi storno dokument koji " +"će zatvoriti ovaj \n" +" račun, te novi račun u statusu 'Nacrt' " +"kojega možete \n" +" editirati." #. module: account #: model:process.transition,name:account.process_transition_filestatement0 @@ -8807,7 +9144,7 @@ msgstr "Nepoznata greška!" #. module: account #: model:ir.model,name:account.model_account_move_bank_reconcile msgid "Move bank reconcile" -msgstr "Move bank reconcile" +msgstr "Zatvaranje bankovne temeljnice" #. module: account #: view:account.config.settings:0 @@ -8819,12 +9156,12 @@ msgstr "Primjeni" #: model:ir.actions.act_window,name:account.action_account_type_form #: model:ir.ui.menu,name:account.menu_action_account_type_form msgid "Account Types" -msgstr "Account Types" +msgstr "Vrste konta" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "" +msgstr "${object.company_id.name} Račun (Ref ${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1210 @@ -8833,6 +9170,8 @@ msgid "" "You cannot use this general account in this journal, check the tab 'Entry " "Controls' on the related journal." msgstr "" +"Ne možete koristiti ovaj opći konto u ovom dnevniku. Provjerite tab 'kontola " +"unosa' na povezanom dnevniku." #. module: account #: field:account.account.type,report_type:0 @@ -8868,6 +9207,12 @@ msgid "" "You should press this button to re-open it and let it continue its normal " "process after having resolved the eventual exceptions it may have created." msgstr "" +"Ovaj se gumb pojavljuje samo kada je stanje računa 'plaćeno' (pokazujući da " +"je u potpunosti zatvoreno) i opcija automatskog izračuna 'zatvaranja' je " +"ugašena (opisujući da to više nije slučaj). Drugim riječima, račun je " +"razvezan i ne odgovara više stanju 'plaćen'. Trebali bi pritisnuti ovaj gumb " +"da bi ga ponovo otvorili i pustiti da nastavi sa normalnim procesom nakon " +"što se razriješe eventualne iznimke koje bi mogle nastati." #. module: account #: model:ir.actions.act_window,help:account.action_account_journal_form @@ -8887,16 +9232,29 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje dnevnika.\n" +"

\n" +" Dnevnik je nosioc poslovnih promjena nastalih u \n" +" svakodnevnom računovodstvenom poslovanju.\n" +"

\n" +" U praksi se obično koristi po jedan dnevnik za svaki način " +"plaćanja\n" +" (gotovina, transakcijski račun, čekovi), jedan dnevnik " +"nabave, nekoliko \n" +" dnevnika prodaje te jedan općeniti za razne potrebe.\n" +"

\n" +" " #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state msgid "Fiscalyear Close state" -msgstr "Fiscalyear Close state" +msgstr "Završno knjiženje fiskalne godine" #. module: account #: field:account.invoice.refund,journal_id:0 msgid "Refund Journal" -msgstr "Knjiga odobrenja" +msgstr "Dnevnik povrata" #. module: account #: report:account.account.balance:0 @@ -8914,6 +9272,7 @@ msgstr "Filtriraj po" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" +"Da bi zatvorili period, morate prvo proknjižiti temeljnice iz tog perioda." #. module: account #: view:account.entries.report:0 @@ -8949,7 +9308,7 @@ msgstr "Redak uvjeta plaćanja" #: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" -msgstr "Dnevnik URA" +msgstr "Dnevnik ulaznik računa" #. module: account #: field:account.invoice,amount_untaxed:0 @@ -8959,7 +9318,7 @@ msgstr "Podzbroj" #. module: account #: view:account.vat.declaration:0 msgid "Print Tax Statement" -msgstr "Ispis porezne izjave" +msgstr "Ispis porezne prijave" #. module: account #: view:account.model.line:0 @@ -9011,6 +9370,9 @@ msgid "" "computed. Because it is space consuming, we do not allow to use it while " "doing a comparison." msgstr "" +"Ova vam opcija omogućava da dobijete više detalja o načinu na koji se vaša " +"salda računaju. Pošto zauzima dosta prostora, ne dozvoljavamo njihovo " +"korištenje kod usporedbi." #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close @@ -9027,6 +9389,8 @@ msgstr "Šifra konta mora biti jedinstvena za jednu organizaciju !" #: help:product.template,property_account_expense:0 msgid "This account will be used to value outgoing stock using cost price." msgstr "" +"Ovaj modul će se koristiti za vrednovanje izlaznog skladišnog prometa " +"koristeći nabavnu cijenu." #. module: account #: view:account.invoice:0 @@ -9089,6 +9453,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove ponavljajuće stavke.\n" +"

\n" +" Ponavljajuća stavka je stavka koja već postoji u sustavu ali " +"se ponavlja\n" +" određenog datuma, npr. povezana je uz potpisani ugovor ili " +"dogovor sa\n" +" kupcem ili dobavljaćem. Takve je unose moguće automatizirati " +"u sustavu.\n" +"

\n" +" " #. module: account #: view:account.journal:0 @@ -9123,7 +9498,7 @@ msgstr "Stavka \"%s\" nije ispravna !" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Smallest Text" -msgstr "" +msgstr "Najmanji tekst" #. module: account #: help:account.config.settings,module_account_check_writing:0 @@ -9131,6 +9506,8 @@ msgid "" "This allows you to check writing and printing.\n" " This installs the module account_check_writing." msgstr "" +"Ovo omogućava provjenu pisanja i printanja.\n" +" Instalira modul account_check_writing." #. module: account #: model:res.groups,name:account.group_account_invoice @@ -9167,7 +9544,7 @@ msgstr "Iznos u drugoj valuti ." #: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." -msgstr "" +msgstr "Temeljnica (%s) za centralizaciju je potvrđena." #. module: account #: report:account.analytic.account.journal:0 @@ -9206,13 +9583,14 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" +"Možete odabrati dnevnik za odobrenja koja će se kreirati. Ako ostavite polje " +"praznokoristiti će se isti dnevnik kao i za trenutni račun." #. module: account #: help:account.bank.statement.line,sequence:0 msgid "" "Gives the sequence order when displaying a list of bank statement lines." -msgstr "" -"Gives the sequence order when displaying a list of bank statement lines." +msgstr "Daje redoslijed kod prikaza liste stavaka izvoda." #. module: account #: model:process.transition,note:account.process_transition_validentries0 @@ -9245,7 +9623,7 @@ msgstr "Forsiraj period" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "Print Account Partner Balance" +msgstr "Ispis salda partnera" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -9255,6 +9633,9 @@ msgid "" "some non legal fields or you must unreconcile first.\n" "%s." msgstr "" +"Ne možete vršiti ovu modifikaciju na zatvorenoj stavci. Možete samo " +"mijenjati neka nevažna polja ili morate razvezati stavke.\n" +"%s." #. module: account #: help:account.financial.report,sign:0 @@ -9265,6 +9646,11 @@ msgid "" "accounts that are typically more credited than debited and that you would " "like to print as positive amounts in your reports; e.g.: Income account." msgstr "" +"Za konta koja su tipično više dugovna nego potražna i koja bi željeli " +"ispisati kao negativne iznose u vašim izvještajima, trebate obrnuti predznak " +"salda; npr. konta troška. Isto se odnosi na konta koja su tipično više " +"potražna nego dugovna i koja bi htjeli da ispisuje kao pozitivne iznose u " +"vašim izvještajima; npr. konta prihoda." #. module: account #: field:res.partner,contract_ids:0 @@ -9296,7 +9682,7 @@ msgstr "Nacrti računa se provjeravaju, potvrđuju i ispisuju." #: field:account.bank.statement,message_is_follower:0 #: field:account.invoice,message_is_follower:0 msgid "Is a Follower" -msgstr "Pratitelj" +msgstr "Je pratitelj" #. module: account #: view:account.move:0 @@ -9312,6 +9698,9 @@ msgid "" "You cannot select an account type with a deferral method different of " "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" +"Greška konfiguracije!\n" +"Ne možete odabrati tip konta sa metodom odgode različitom od \"nezatvoreno\" " +"za konta sa internim tipom \"obveze/potraživanja\"." #. module: account #: field:account.config.settings,has_fiscal_year:0 @@ -9332,7 +9721,7 @@ msgstr "" #: code:addons/account/account.py:634 #, python-format msgid "You cannot deactivate an account that contains journal items." -msgstr "" +msgstr "Nije moguće deaktivirati konto koji ima knjiženja." #. module: account #: selection:account.tax,applicable_type:0 @@ -9376,7 +9765,7 @@ msgstr "Od perioda" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "Jedinica Valute" +msgstr "Jedinica valute" #. module: account #: code:addons/account/account.py:3195 @@ -9399,6 +9788,10 @@ msgid "" "chart\n" " of accounts." msgstr "" +"Nakon potvrđivanja računa u statusu 'Nacrt' nećete ih više moći\n" +" editirati. Računi će dobiti jedinstveni broj te će " +"se \n" +" kreirati stavke u knjiženja." #. module: account #: model:process.node,note:account.process_node_bankstatement0 @@ -9408,12 +9801,12 @@ msgstr "Registrirana plaćanja" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close states of Fiscal year and periods" -msgstr "Close states of Fiscal year and periods" +msgstr "Fiskalne godine i periodi u stanju zatvoreno" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "Dnevnik povrata dobavljaču" #. module: account #: view:account.analytic.line:0 @@ -9437,12 +9830,12 @@ msgstr "Kreiraj račun" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "Konfiguracija računovodstvenih podataka" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 msgid "Purchase Tax(%)" -msgstr "Porez nabave(%)" +msgstr "Pretporez(%)" #. module: account #: code:addons/account/account_invoice.py:901 @@ -9457,6 +9850,8 @@ msgid "" "Please check that the field 'Internal Transfers Account' is set on the " "payment method '%s'." msgstr "" +"Molimo provjerite da li je polje 'Konto internih prijenosa' postavljen na " +"načinu plaćanja '%s'." #. module: account #: field:account.vat.declaration,display_detail:0 @@ -9482,7 +9877,7 @@ msgstr "" #: view:account.analytic.line:0 #: view:analytic.entries.report:0 msgid "My Entries" -msgstr "Moje stavke" +msgstr "Moje temeljnice" #. module: account #: help:account.invoice,state:0 @@ -9497,6 +9892,12 @@ msgid "" "related journal entries may or may not be reconciled. \n" "* The 'Cancelled' status is used when user cancel invoice." msgstr "" +" * 'Nacrt' je status za nepotvrđeni račun. \n" +"* 'Pro-forma' je status kada račun još nije dobio broj. \n" +"* 'Otvoreno' je status kada je račun kreiran i dobio je broj. Status " +"'Otvoreno' znači da račun nije plaćen. \n" +"* 'Plaćeno' je status koji račun dobiva kada je plaćen. \n" +"* 'Otkazano' je status kada korisnik otkaže račun." #. module: account #: field:account.period,date_stop:0 @@ -9516,7 +9917,7 @@ msgstr "Financijska izvješća" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 msgid "Liability View" -msgstr "" +msgstr "Pogled obveza" #. module: account #: report:account.account.balance:0 @@ -9569,7 +9970,7 @@ msgstr "Zatraži povrat" #. module: account #: view:account.move.line:0 msgid "Total credit" -msgstr "Total credit" +msgstr "Ukupno potražuje" #. module: account #: model:process.transition,note:account.process_transition_suppliervalidentries0 @@ -9594,7 +9995,7 @@ msgstr "Konta potraživanja" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 msgid "Supplier credit note sequence" -msgstr "" +msgstr "Sekvenca odobrenja dobavljača" #. module: account #: code:addons/account/wizard/account_state_open.py:37 @@ -9612,6 +10013,12 @@ msgid "" "payments.\n" " This installs the module account_payment." msgstr "" +"Omogućuje da kreirate i upravljate vašim nalozima za plaćanje, sa svrhom\n" +" * da služi kao baza ua jednostavno ukopčavanje raznih " +"automatiziranih mehanizama plaćanja\n" +" * i da osigura efikasniji način za upravljanje plaćanjem " +"računa.\n" +" Instalira modul account_payment." #. module: account #: xsl:account.transfer:0 @@ -9629,7 +10036,7 @@ msgstr "Konto potraživanja" #: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." -msgstr "" +msgstr "Kompanija treba biti ista za sve stavke zatvaranja." #. module: account #: field:account.account,balance:0 @@ -9660,7 +10067,7 @@ msgstr "Saldo" #. module: account #: model:process.node,note:account.process_node_supplierbankstatement0 msgid "Manually or automatically entered in the system" -msgstr "Manually or automatically entered in the system" +msgstr "Ručno ili automatski unešeno u sustav" #. module: account #: report:account.account.balance:0 @@ -9690,7 +10097,7 @@ msgstr "Legenda" #. module: account #: model:process.transition,note:account.process_transition_entriesreconcile0 msgid "Accounting entries are the first input of the reconciliation." -msgstr "Accounting entries are the first input of the reconciliation." +msgstr "Temeljnice su prvi unos zatvaranja." #. module: account #: view:account.fiscalyear.close:0 @@ -9741,7 +10148,7 @@ msgstr "Datum / Period" #. module: account #: report:account.central.journal:0 msgid "A/C No." -msgstr "A/C No." +msgstr "A/C Br." #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement @@ -9756,13 +10163,13 @@ msgid "" "dates are not matching the scope of the fiscal year." msgstr "" "Greška!\n" -"Period je neisprqavan. Ili se neki periodi preklapaju, ili datumi perioda ne " +"Period je neispravan. Ili se neki periodi preklapaju, ili datumi perioda ne " "odgovaraju rasponu fiskalne godine." #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Nema dospijelih stavaka kod ovog kupca." #. module: account #: help:account.tax,account_paid_id:0 @@ -9770,13 +10177,15 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." msgstr "" +"Postavite konto koji će se koristiti kao predodređeni na stavkama poreza kod " +"računa za povrat. Ostavite prazno za konto troška." #. module: account #: help:account.addtmpl.wizard,cparent_id:0 msgid "" "Creates an account with the selected template under this existing parent." msgstr "" -"Creates an account with the selected template under this existing parent." +"Kreira konto s odabranim predloškom pod postojećim nadređenim kontom." #. module: account #: report:account.invoice:0 @@ -9786,7 +10195,7 @@ msgstr "Izvor" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Date of the day" -msgstr "Date of the day" +msgstr "Datum dana" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:49 @@ -9804,6 +10213,7 @@ msgid "" "This field contains the information related to the numbering of the journal " "entries of this journal." msgstr "" +"Ovo polje sadržava informacije vezane uz sljednosti temeljnica dnevnika" #. module: account #: field:account.invoice,sent:0 @@ -9824,13 +10234,13 @@ msgstr "Zadani porez prodaje" #. module: account #: report:account.overdue:0 msgid "Balance :" -msgstr "Saldo" +msgstr "Saldo :" #. module: account #: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." -msgstr "" +msgstr "Nije moguće kreirati knjiženja za različite kompanije." #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing @@ -9840,7 +10250,7 @@ msgstr "Periodična obrada" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "Ulazni i izlazni računi Invoices" +msgstr "Ulazni i izlazni računi" #. module: account #: model:process.node,note:account.process_node_paymententries0 @@ -9871,7 +10281,7 @@ msgstr "Pretplata" #. module: account #: model:ir.model,name:account.model_account_analytic_balance msgid "Account Analytic Balance" -msgstr "Saldo Analitike" +msgstr "Saldo analitike" #. module: account #: report:account.account.balance:0 @@ -9915,13 +10325,13 @@ msgstr "Datum dospijeća" #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "Neposredno plaćanje" #. module: account #: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" -msgstr "" +msgstr " Centralizacija" #. module: account #: help:account.journal,type:0 @@ -9932,6 +10342,11 @@ msgid "" "journals. Select 'Opening/Closing Situation' for entries generated for new " "fiscal years." msgstr "" +"Odaberite 'Prodaja' za dnevnike izlaznih računa. Odaberite 'Nabava' za " +"dnevnike ulaznih računa. Odaberite 'Gotovina' ili 'Banka' za dnevnike koji " +"se koriste kod plaćanja izlaznih ili ulaznih računa. Odaberite 'Općenito' za " +"dnevnike raznih drugih operacija. Odaberite 'Početno/završno stanje' za " +"unose generirane s novom fiskalnom godinom." #. module: account #: view:account.subscription:0 @@ -9985,6 +10400,8 @@ msgid "" "It indicates that the invoice has been paid and the journal entry of the " "invoice has been reconciled with one or several journal entries of payment." msgstr "" +"Označava da je račun plaćen i da je temeljnica računa zatvorena sa jednim " +"ili više izvoda." #. module: account #: view:account.invoice:0 @@ -10028,13 +10445,13 @@ msgid "" "open period. Close a period when you do not want to record new entries and " "want to lock this period for tax related calculation." msgstr "" -"A period is a fiscal period of time during which accounting entries should " -"be recorded for accounting related activities. Monthly period is the norm " -"but depending on your countries or company needs, you could also have " -"quarterly periods. Closing a period will make it impossible to record new " -"accounting entries, all new entries should then be made on the following " -"open period. Close a period when you do not want to record new entries and " -"want to lock this period for tax related calculation." +"Period je fiskalno razdoblje tijekom kojeg treba biti zabilježena evidencija " +"svih računovodstvenih aktivnosti. Mjesečni periodu su standard, ali ovisno o " +"vašoj državi ili potrebama kompanije možete također imati i kvartalne " +"periode. Zatvaranje perioda će onemogućiti unos novih knjiženja. Sva nova " +"knjiženja trebaju tada ići na sljedeći otvoreni period. Zatvorite perioda " +"kada ne želite nova knjiženja i kada želite zaključati period za potrebe " +"poreznih evidencija." #. module: account #: view:account.analytic.account:0 @@ -10061,7 +10478,7 @@ msgstr "Postavite fiskalnu godinu" #. module: account #: field:account.period,name:0 msgid "Period Name" -msgstr "Naziv Perioda" +msgstr "Naziv perioda" #. module: account #: code:addons/account/wizard/account_invoice_state.py:68 @@ -10070,11 +10487,13 @@ msgid "" "Selected invoice(s) cannot be cancelled as they are already in 'Cancelled' " "or 'Done' state." msgstr "" +"Odabrani(e) račun(e) nije moguće otkazati jer su već u statusu 'Otkazano' " +"ili 'Potvrđeno'." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Code/Date" -msgstr "Šifra/Datum" +msgstr "Šifra/datum" #. module: account #: view:account.bank.statement:0 @@ -10106,6 +10525,9 @@ msgid "" "some non legal fields or you must unconfirm the journal entry first.\n" "%s." msgstr "" +"Ne možete raditi ovu promjenu na knjiženom unosu. Možete samo mijenjati neka " +"sporedna polja ili morate prvo otknjižiti temeljnicu.\n" +"%s." #. module: account #: help:account.config.settings,module_account_budget:0 @@ -10116,11 +10538,17 @@ msgid "" "analytic account.\n" " This installs the module account_budget." msgstr "" +"Ovo omogućuje računovođama da upravljalju analitičkim i miješanim " +"proračunima.\n" +" Jednom kada je glavni proračun definiran,\n" +" voditelji projekta mogu postaviti planirani iznos na svaki " +"analitički konto.\n" +" Instalira modul account_budget." #. module: account #: field:account.bank.statement.line,name:0 msgid "OBI" -msgstr "" +msgstr "OBI" #. module: account #: help:res.partner,property_account_payable:0 @@ -10146,7 +10574,7 @@ msgstr "Sekundarna valuta" #. module: account #: model:ir.model,name:account.model_validate_account_move msgid "Validate Account Move" -msgstr "Validate Account Move" +msgstr "Potvrdi knjiženje" #. module: account #: field:account.account,credit:0 @@ -10180,7 +10608,7 @@ msgstr "Nacrt računa " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal msgid "General Journals" -msgstr "General Journals" +msgstr "Opći dnevnici" #. module: account #: view:account.model:0 @@ -10191,7 +10619,7 @@ msgstr "Model temeljnice" #: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." -msgstr "" +msgstr "Početno razdoblje bi trebalo prethoditi završnom razdoblju" #. module: account #: field:account.invoice,number:0 @@ -10270,7 +10698,7 @@ msgstr "Travanj" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 msgid "Profit (Loss) to report" -msgstr "" +msgstr "Dobit (gubitak) za prijavu" #. module: account #: code:addons/account/account_invoice.py:379 @@ -10281,7 +10709,7 @@ msgstr "Nema definiranih dnevnika nabave/prodaje" #. module: account #: view:account.move.line.reconcile.select:0 msgid "Open for Reconciliation" -msgstr "Open for Reconciliation" +msgstr "Otvori za saldakonti zatvaranje" #. module: account #: field:account.account,parent_left:0 @@ -10291,7 +10719,7 @@ msgstr "Roditelj lijevo" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Title 2 (bold)" -msgstr "" +msgstr "Naslov 2 (bold)" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree2 @@ -10334,7 +10762,7 @@ msgstr "Fiskalno razdoblje" #. module: account #: view:account.subscription:0 msgid "Remove Lines" -msgstr "Ukloni retke" +msgstr "Ukloni stavke" #. module: account #: selection:account.account,type:0 @@ -10350,12 +10778,12 @@ msgstr "Običan" #: field:account.account.template,type:0 #: field:account.entries.report,type:0 msgid "Internal Type" -msgstr "Vrsta konta" +msgstr "Interni tip" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Generiraj stavke prije" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running @@ -10441,19 +10869,21 @@ msgstr "Bez detalja" #: model:ir.actions.act_window,name:account.action_account_gain_loss #: model:ir.ui.menu,name:account.menu_unrealized_gains_losses msgid "Unrealized Gain or Loss" -msgstr "" +msgstr "Nerealizirana dobit ili gubitak" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "States" -msgstr "Stanja" +msgstr "Statusi" #. module: account #: help:product.category,property_account_income_categ:0 #: help:product.template,property_account_income:0 msgid "This account will be used to value outgoing stock using sale price." msgstr "" +"Ovaj će se konto koristiti za vrednovanje skladišnog izlaza koristeći " +"prodajnu cijenu." #. module: account #: field:account.invoice,check_total:0 @@ -10476,12 +10906,12 @@ msgstr "Ukupno" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "" +msgstr "Ne mogu %s nacrt/predračun/otkaži račun." #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Analitički konto poreza kod povrata" #. module: account #: view:account.move.bank.reconcile:0 @@ -10569,9 +10999,8 @@ msgid "" "reconciliation process today. The current partner is counted as already " "processed." msgstr "" -"This figure depicts the total number of partners that have gone throught the " -"reconciliation process today. The current partner is counted as already " -"processed." +"Ova brojka opisuje ukupni broj partenra koji su prošli proces zatvaranja " +"danas. Trenutni partner se računa." #. module: account #: view:account.fiscalyear:0 @@ -10610,6 +11039,8 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disable" msgstr "" +"Ako razvezujete transakcije, morate također provjeriti akcije koje su " +"povezane sa tim transakcijama jer će one ostati aktivne." #. module: account #: code:addons/account/account_move_line.py:1056 @@ -10620,12 +11051,12 @@ msgstr "Nije moguće izmjeniti porez!" #. module: account #: constraint:account.bank.statement:0 msgid "The journal and period chosen have to belong to the same company." -msgstr "" +msgstr "Dnevnik i odabrano razdoblje moraju pripadati istom poduzeću." #. module: account #: view:account.invoice:0 msgid "Invoice lines" -msgstr "Stavke računa" +msgstr "Stavke temeljnice" #. module: account #: field:account.chart,period_to:0 @@ -10644,6 +11075,9 @@ msgid "" "customer. The tool search can also be used to personalise your Invoices " "reports and so, match this analysis to your needs." msgstr "" +"Iz ovog izvještaja imate pregled iznosa fakturiranog vašem kupcu. Alat " +"pretrage može se također koristiti za personalizaciju vaših ispisa računa i " +"priagođavanje analize vašim potrebama." #. module: account #: view:account.partner.reconcile.process:0 @@ -10664,7 +11098,7 @@ msgstr "Stanje računa je zatvoreno/plaćeno" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Upravljanje naplatom" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -10715,7 +11149,7 @@ msgstr "Duguje" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Title 3 (bold, smaller)" -msgstr "" +msgstr "Naslov 3 (podebljano, manje)" #. module: account #: view:account.invoice:0 @@ -10757,7 +11191,7 @@ msgstr "Raspon" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "" +msgstr "Stavke analitničkog dnevnika povezane sa dnevnikom nabave" #. module: account #: help:account.account,type:0 @@ -10768,6 +11202,10 @@ msgid "" "payable/receivable are for partners accounts (for debit/credit " "computations), closed for depreciated accounts." msgstr "" +"'Interni tip' se koristi za značajke dostupne na različitim tipovima konta: " +"pogled ne može imati stavke dnevnika, konsolidacija su konta koja mogu imati " +"podređena konta za potrebe konsolidacije više kompanija, obveze/potraživanja " +"su za saldakonti, zatvoreno za konta koja se više ne koriste." #. module: account #: report:account.account.balance:0 @@ -10793,6 +11231,8 @@ msgstr "Ručno" msgid "" "This is a field only used for internal purpose and shouldn't be displayed" msgstr "" +"Ovo se polje koristi isključivo za interne potrebe i nebi se trebalo " +"prikazivati" #. module: account #: selection:account.entries.report,month:0 @@ -10828,7 +11268,7 @@ msgstr "Primjenjivost" #. module: account #: help:account.move.line,currency_id:0 msgid "The optional other currency if it is a multi-currency entry." -msgstr "The optional other currency if it is a multi-currency entry." +msgstr "Opcionalna druga valuta ukoliko se radi o više-valutnom unosu." #. module: account #: model:process.transition,note:account.process_transition_invoiceimport0 @@ -10839,7 +11279,7 @@ msgstr "Uvoz naloga u sistem iz ulaznog ili izlaznog računa" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing msgid "Billing" -msgstr "Billing" +msgstr "Fakturiranje" #. module: account #: view:account.account:0 @@ -10874,6 +11314,7 @@ msgid "" "The selected unit of measure is not compatible with the unit of measure of " "the product." msgstr "" +"Odabrana jedinica mjere nije kompatibilna sa jedinicom mjere proizvoda." #. module: account #: view:account.fiscal.position:0 @@ -10897,6 +11338,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove porezne tarife.\n" +"

\n" +" Ovisno o legislativi pojedine zemlje, porezne se tarife " +"koriste za\n" +" poreznu prijavu. OpenERP omogućuje definiranje kompleksne " +"strukture\n" +" porezne prijave.\n" +"

\n" +" " #. module: account #: selection:account.entries.report,month:0 @@ -10923,6 +11374,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Odaberite razdoblje i dokument koji želite kreirati.\n" +"

\n" +" Kroz ovaj modul moguće je jednostavno i efikasno " +"evidentirati\n" +" stavke glavne knjige.\n" +"

\n" +" " #. module: account #: help:account.invoice.line,account_id:0 @@ -10932,7 +11391,7 @@ msgstr "Konto prihoda ili troškova vezan za odabrani proizvod." #. module: account #: view:account.config.settings:0 msgid "Install more chart templates" -msgstr "" +msgstr "Instaliraj dodatne predloške kontog plana" #. module: account #: report:account.general.journal:0 @@ -10981,7 +11440,7 @@ msgstr "Dokumenti računovodstva" msgid "" "You cannot remove/deactivate an account which is set on a customer or " "supplier." -msgstr "" +msgstr "Ne možete ukloniti/deaktivirati konto kupca ili dobavljača" #. module: account #: model:ir.model,name:account.model_validate_account_move_lines @@ -11024,7 +11483,7 @@ msgstr "Ručni porezi računa" #: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." -msgstr "" +msgstr "Uvjet plaćanja dobavljača nema definirane stavke" #. module: account #: field:account.account,parent_right:0 @@ -11106,7 +11565,7 @@ msgstr "Veljača" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_closing:0 msgid "Closing Unit Numbers" -msgstr "" +msgstr "Broj jedinice zatvaranja" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -11121,7 +11580,7 @@ msgstr "Bankovni račun" #: model:ir.actions.act_window,name:account.action_account_central_journal #: model:ir.model,name:account.model_account_central_journal msgid "Account Central Journal" -msgstr "Account Central Journal" +msgstr "Dnevnik glavne knjige" #. module: account #: report:account.overdue:0 @@ -11153,7 +11612,7 @@ msgstr "Obično 1 ili -1." #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account_template msgid "Template Account Fiscal Mapping" -msgstr "Predlozak mapiranja konta" +msgstr "Predložak mapiranja konta" #. module: account #: field:account.chart.template,property_account_expense:0 @@ -11171,6 +11630,8 @@ msgid "" "This label will be displayed on report to show the balance computed for the " "given comparison filter." msgstr "" +"Ova će se oznaka prikazivati na izvještaju koji prikazuje izračunato stanje " +"za odabrani filter usporedbe." #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 @@ -11951,9 +12412,6 @@ msgstr "" #~ msgid "Print Journal" #~ msgstr "Ispis dnevnika" -#~ msgid "Cancel Invoice" -#~ msgstr "Storniraj račun" - #~ msgid "Required" #~ msgstr "Obavezno" @@ -14408,3 +14866,6 @@ msgstr "" #~ "Molimo provjerite iznose na računu!\n" #~ "Ukupan iznos računa se ne slaže sa izračunatom vrijednošću.\n" #~ "Provjerite polje \"Kontrola uk. iznosa\", stavke računa i poreze." + +#~ msgid "Cancel Invoice" +#~ msgstr "Otkaži račun" diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po index 0e17cb39113..b4aeb75bad2 100644 --- a/addons/account/i18n/hu.po +++ b/addons/account/i18n/hu.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-12-27 22:48+0000\n" -"Last-Translator: Balint (eSolve) \n" +"PO-Revision-Date: 2013-12-16 21:04+0000\n" +"Last-Translator: krnkris \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-09-12 05:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -26,6 +26,8 @@ msgstr "Kifizetési rendszer" msgid "" "An account fiscal position could be defined only once time on same accounts." msgstr "" +"Egy könyvelés költségvetési évfordulóját csak egyszer lehet megadni az arra " +"hivatkozó számlákra vonatkozólag." #. module: account #: help:account.tax.code,sequence:0 @@ -33,6 +35,8 @@ msgid "" "Determine the display order in the report 'Accounting \\ Reporting \\ " "Generic Reporting \\ Taxes \\ Taxes Report'" msgstr "" +"Meghatározza a kijelzés sorrendjét a kimutatáson 'Könyvelés \\ " +"Kimutatáskészítés \\ Általános kimutatás \\ Adók \\ Adó kimutatás'" #. module: account #: view:account.move.reconcile:0 @@ -60,7 +64,7 @@ msgstr "Rendezetlen összeg" #: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." -msgstr "" +msgstr "A \"%s\" könyvelési napló tétel nem érvényes." #. module: account #: model:ir.model,name:account.model_report_aged_receivable @@ -78,7 +82,7 @@ msgstr "Importálás számlából vagy pénzügyi rendezésből" #: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "Eltévesztett könyvelési számla!" #. module: account #: view:account.move:0 @@ -92,6 +96,8 @@ msgid "" "Error!\n" "You cannot create recursive account templates." msgstr "" +"Hiba!\n" +"Nem hozhat létre visszatérő számla sablonokat." #. module: account #. openerp-web @@ -102,7 +108,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "Párosítás" +msgstr "Egyeztetés" #. module: account #: field:account.bank.statement,name:0 @@ -114,7 +120,7 @@ msgstr "Párosítás" #: xsl:account.transfer:0 #: field:cash.box.in,ref:0 msgid "Reference" -msgstr "Hivatkozás" +msgstr "Információforrás" #. module: account #: help:account.payment.term,active:0 @@ -122,7 +128,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the payment " "term without removing it." msgstr "" -"Ha az aktív mező nincs bejelölve, nem használható a fizetési feltétel." +"Ha az aktív mező hamisra van állatva, akkor a fizetési feltételt " +"eltüntetheti anélkül, hogy törölné azt." #. module: account #: code:addons/account/account.py:641 @@ -151,7 +158,7 @@ msgstr "Figyelem!" #: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" -msgstr "Vegyes napló" +msgstr "Vegyes könyvelési napló" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -161,12 +168,14 @@ msgid "" "which is set after generating opening entries from 'Generate Opening " "Entries'." msgstr "" +"Be kell állítania az 'Év végi belépő könyvelési naplót' a 'Nyitási bejegyzés " +"létrehozása' menüvel létrehozott üzleti év bejegyzéseihez." #. module: account #: field:account.fiscal.position.account,account_src_id:0 #: field:account.fiscal.position.account.template,account_src_id:0 msgid "Account Source" -msgstr "Eredeti főkönyvi számla" +msgstr "Forrás főkönyvi számla" #. module: account #: model:ir.actions.act_window,help:account.action_account_period @@ -179,6 +188,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson üzleti szakasz hozzáadásához.\n" +"

\n" +" Egy könyvelési szakasz leggyakrabban egy negyedév vagy egy " +"hónap. \n" +" Általában összhangban van az adóbevallás periódusával.\n" +"

\n" +" " #. module: account #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard @@ -188,12 +205,12 @@ msgstr "Az elmúlt 15 napban készített számlák" #. module: account #: field:accounting.report,label_filter:0 msgid "Column Label" -msgstr "" +msgstr "Oszlop elnevezés" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "Könyvelési kódnak használt számlyegyek száma" #. module: account #: help:account.analytic.journal,type:0 @@ -213,6 +230,9 @@ msgid "" "lines for invoices. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Analitikus számla mely alapértelmezésben a számlák adó tételének számlája. " +"Hagyja üresen, ha alap értelmezésben nem szeretne analitikus számát " +"használni a számlák adó tételeire." #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_template_form @@ -223,7 +243,7 @@ msgstr "Adósablonok" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_select msgid "Move line reconcile select" -msgstr "Tételsor párosítás kiválasztása" +msgstr "Bizonylat tételsor párosítás kiválasztása" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 @@ -252,11 +272,14 @@ msgid "" "legal reports, and set the rules to close a fiscal year and generate opening " "entries." msgstr "" +"Számla típus információs célt szolgál, országra jellemző törvényekre sajátos " +"kimutatások létrehozásához, és az induló tételek létrehozásához valamint az " +"üzleti év lezáró szabályainak beállításához." #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "Következő jóváírási értesítés szám" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -265,6 +288,9 @@ msgid "" "sales, purchase, expense, contra, etc.\n" " This installs the module account_voucher." msgstr "" +"Ez magába foglalja az összes alap követelményt a banki, pénztári, vásárlói, " +"beszerzési, kiadási, visszaküldött, stb nyugta bevitelhez.\n" +" Ez a account_voucher (könyvelés_nyugta) modult telepíti.." #. module: account #: model:ir.actions.act_window,name:account.action_account_use_model_create_entry @@ -296,6 +322,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson ügyfél visszatérítés létrehozásához. \n" +"

\n" +" A visszatérítés egy dokumentum a számla teljes összegének " +"vagy részének a \n" +" jóváírásról.\n" +"

\n" +" Kézi ügyfél részére történő jóváírás helyett, megteheti\n" +" azt közvetlenül az ide vonatkozó ügyfél számlából.\n" +"

\n" +" " #. module: account #: help:account.installer,charts:0 @@ -304,12 +341,12 @@ msgid "" "accounting needs of your company based on your country." msgstr "" "Lokalizált számlatükröt állít be, hogy amilyen szorosan csak lehet, " -"illeszkedjen a vállalat szükségletéhez." +"illeszkedjen a vállalat szükségletéhez az országra vonatkozóan." #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "Párosítás visszavonása" +msgstr "Könyvelési számla párosítás visszavonása" #. module: account #: field:account.config.settings,module_account_budget:0 @@ -319,7 +356,7 @@ msgstr "Költségvetés kezelés" #. module: account #: view:product.template:0 msgid "Purchase Properties" -msgstr "Beszerzés könyvelési beállítások" +msgstr "Beszerzési tulajdonságok" #. module: account #: help:account.financial.report,style_overwrite:0 @@ -328,17 +365,20 @@ msgid "" "leave the automatic formatting, it will be computed based on the financial " "reports hierarchy (auto-computed field 'level')." msgstr "" +"Beállíthatja ennek a rekordnak a megjelenítési formáját. Ha automatikus " +"formázást hagyja, akkor az a pénzügyi jelentés rangsora alapján lesz " +"kiszámítva (automatikusan számított mező a 'szint')." #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "" +msgstr "Többféle valuta engedélyezése" #. module: account #: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" -msgstr "" +msgstr "Meg kell határoznia egy analitikus gyüjtőnapló típust '%s'!" #. module: account #: selection:account.entries.report,month:0 @@ -353,12 +393,12 @@ msgstr "Június" #: code:addons/account/wizard/account_automatic_reconcile.py:148 #, python-format msgid "You must select accounts to reconcile." -msgstr "" +msgstr "A párosításhoz könyvelési számlákat kell kiválasztania." #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "Analitikus számla használatának engedélyezése." #. module: account #: view:account.invoice:0 @@ -388,17 +428,17 @@ msgstr "Létrehozás dátuma" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "Bejövő jóváíró számla" +msgstr "Beszerzési visszatérítési számla" #. module: account #: selection:account.journal,type:0 msgid "Opening/Closing Situation" -msgstr "Nyitó/záró" +msgstr "Nyitó/záró állapot" #. module: account #: help:account.journal,currency:0 msgid "The currency used to enter statement" -msgstr "Tételek rögzítésének pénzneme" +msgstr "Számlakivonat tételek rögzítésének pénzneme" #. module: account #: field:account.journal,default_debit_account_id:0 @@ -409,7 +449,7 @@ msgstr "Alapértelmezett tartozik főkönyvi számla" #: view:account.move:0 #: view:account.move.line:0 msgid "Total Credit" -msgstr "Követel összesen" +msgstr "Összes követelés" #. module: account #: help:account.config.settings,module_account_asset:0 @@ -421,11 +461,19 @@ msgid "" "this box, you will be able to do invoicing & payments,\n" " but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"Ez lehetővé teszi a személy vagy vállalat által birtokolt vagyoneszközök " +"nyilvántartását.\n" +" A vagyoneszközök értékcsökkenését követi nyomon, és " +"könyvelési számlák bizonylatát hozza létre az értékcsökkenő\n" +" tételekre.\n" +" Ez a account_asset (számla_eszköz) modult telepíti. Ha nem " +"jelöli be ezt a kockát, akkor tud számlázni & kifizetni,\n" +" de nem tud könyvelni (Napló tételeket, Számlatükröket, ...)" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Kezdeményezőtől a kedvezményezetthez intézett információ" #. module: account #. openerp-web @@ -446,6 +494,7 @@ msgstr "Számlatükör sablon" #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" msgstr "" +"Módosít: visszatérítést, párosítást készít és új számla tervezetet hoz létre" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -459,6 +508,16 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"Ha kiválasztotta a 'Tétel soronkénti kerekítést' : mindegyik adóra, először " +"számítást és kerekítést végez minden egyes Beszerzési megrendelés " +"BM/Vásárlói megrendelés VM/számla tétel sorra és ezek a kerekített tételek " +"lesznek összegezve, így kialakítva a teljes adó értéket. Ha kiválasztotta a " +"'Teljes körű kerekítést': mindegyik adóra, először adó számítást végez " +"minden egyes Beszerzési megrendelés BM/Vásárlói megrendelés VM/számla tétel " +"sorra, melyek összegzésre kerülnek és végül ez a teljes adó összege lesz " +"kerekítve. Ha adóval együtt történik az eladás, akkor a 'Tétel soronkénti " +"kerekítést' válassza, mivel bizonyára azt szeretné, hogy az adóval növelt " +"tételsor összegei egyezzenek a teljes összeg adóval növel értékével." #. module: account #: model:ir.model,name:account.model_wizard_multi_charts_accounts @@ -473,12 +532,12 @@ msgstr "Az összeg egy választható más pénznemben kifejezve." #. module: account #: view:account.journal:0 msgid "Available Coins" -msgstr "" +msgstr "Rendelkezésre álló pénzérmék" #. module: account #: field:accounting.report,enable_filter:0 msgid "Enable Comparison" -msgstr "" +msgstr "Összehasonlítás bekapcsolása" #. module: account #: view:account.analytic.line:0 @@ -521,12 +580,13 @@ msgstr "Kiválasztott számlák jóváhagyása" #. module: account #: field:account.addtmpl.wizard,cparent_id:0 msgid "Parent target" -msgstr "Gyűjtő célszámla" +msgstr "Fölérendelt gyűjtő célszámla" #. module: account #: help:account.invoice.line,sequence:0 msgid "Gives the sequence of this line when displaying the invoice." msgstr "" +"Ennek a tételsornak a sorszámát adja, amikor a számla kijelzésre kerül." #. module: account #: field:account.bank.statement,account_id:0 @@ -554,7 +614,7 @@ msgstr "Számlatükör kiválasztása" #. module: account #: model:ir.model,name:account.model_account_invoice_refund msgid "Invoice Refund" -msgstr "Jóváíró számla" +msgstr "Visszatérítési számla" #. module: account #: report:account.overdue:0 @@ -600,18 +660,18 @@ msgstr "Nincs párosítandó tétel" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "Tizedes pontosság a napló bevitt tételeinél" #. module: account #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "3 Monthly" -msgstr "Negyedéves" +msgstr "3 havonta" #. module: account #: field:ir.sequence,fiscal_ids:0 msgid "Sequences" -msgstr "Sorszámok" +msgstr "Sorba rendezések" #. module: account #: field:account.financial.report,account_report_id:0 @@ -626,6 +686,8 @@ msgid "" "Specified journal does not have any account move entries in draft state for " "this period." msgstr "" +"A kiválasztott napló nem rendelkezik tervezet állapotú számla bizonylatokkal " +" erre az időszakra." #. module: account #: view:account.fiscal.position:0 @@ -648,7 +710,7 @@ msgstr "A fő sorszámnak el kell térnie az aktuálistól!" #: code:addons/account/wizard/account_change_currency.py:70 #, python-format msgid "Current currency is not configured properly." -msgstr "" +msgstr "A jelenlegi pénznem nincs megfelelően konfigurálva." #. module: account #: field:account.journal,profit_account_id:0 @@ -672,13 +734,13 @@ msgstr "Számlatípusonkénti értékesítési kimutatás" #: code:addons/account/account.py:3201 #, python-format msgid "SAJ" -msgstr "SAJ" +msgstr "Számlatípusonkénti értékesítés SZTÉ" #. module: account #: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." -msgstr "" +msgstr "Nem lehet bizonylatolni, ha eltér a pénznem ettől .." #. module: account #: model:email.template,report_name:account.email_template_edi_invoice @@ -686,6 +748,8 @@ msgid "" "Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " "and 'draft' or ''}" msgstr "" +"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " +"and 'draft' or ''}" #. module: account #: view:account.period:0 @@ -712,7 +776,7 @@ msgstr "Könyvelési időszak" #: constraint:account.move:0 msgid "" "You cannot create more than one move per period on a centralized journal." -msgstr "" +msgstr "Egy időszakra csak egy bizonylatot készíthet a központi naplón." #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -721,6 +785,9 @@ msgid "" "lines for refunds. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Állítsa be az analitikus számlát amit alapértelmezetten használ a számlák " +"adó tételsoraira a visszatérítéshez. Hagyja üresen, ha alapértelmezetten nem " +"szeretne analitikus számlát használni a számla adó tételsoraira." #. module: account #: view:account.account:0 @@ -733,17 +800,17 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" -msgstr "Vevő számlák" +msgstr "Követelés számlák" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "A cég bankszámláinak beállítása" +msgstr "A cége bankszámláinak beállítása" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Visszatérítés létrehozása" #. module: account #: constraint:account.move.line:0 @@ -773,7 +840,7 @@ msgstr "Biztos benne, hogy létre akarja hozni a tételeket?" #: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." -msgstr "" +msgstr "Számla részben fizetve: %s%s of %s%s (%s%s még maradt)." #. module: account #: view:account.invoice:0 @@ -787,6 +854,8 @@ msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." msgstr "" +"Nem lehet %s számlázni, mert párosítva van, először szüntesse meg a " +"párosítást. Ezt a számlát csak visszatérítheti." #. module: account #: selection:account.financial.report,display_detail:0 @@ -809,12 +878,12 @@ msgstr "Listák" #: model:ir.model,name:account.model_project_account_analytic_line #, python-format msgid "Analytic Entries by line" -msgstr "Soronkénti gyűjtőkód tételek" +msgstr "Soronkénti analitikus gyűjtőkód tételek" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "Jóváírás módja" +msgstr "Visszatérítés módja" #. module: account #: model:ir.ui.menu,name:account.menu_account_report @@ -846,12 +915,12 @@ msgid "" "Click on compute button." msgstr "" "Hiányzó adósor!\n" -"Kattintson a \"(Frissítés)\"-re az adó újraszámításához." +"Kattintson az \"(Újraszámol)\"-ra az adó újraszámításához." #. module: account #: model:ir.model,name:account.model_account_subscription_line msgid "Account Subscription Line" -msgstr "Előjegyzés sor" +msgstr "Számla előjegyzés tételsor" #. module: account #: help:account.invoice,reference:0 @@ -861,13 +930,13 @@ msgstr "A számla partner hivatkozása." #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "Szállítói számlák és jóváírások" +msgstr "Szállítói számlák és visszatérítések" #. module: account #: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "A bevitt tétel már párosítva." #. module: account #: view:account.move.line.unreconcile.select:0 @@ -879,7 +948,7 @@ msgstr "Párosítás visszavonása" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "Gyűjtőnapló" +msgstr "Gyűjtőnapló számla" #. module: account #: view:account.invoice:0 @@ -895,11 +964,13 @@ msgid "" "Print Report with the currency column if the currency differs from the " "company currency." msgstr "" +"Kimutatás nyomtatása pénznem oszloppal, ha a pénznem eltér a vállalat " +"alapértelmezett pénznemétől." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "J.C./Move name" -msgstr "Naplókód/Megnevezés" +msgstr "Naplókód/Bizonylat megnevezés" #. module: account #: view:account.account:0 @@ -935,6 +1006,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nem talált jelentés tartalmat.\n" +"

\n" +" " #. module: account #: code:addons/account/account.py:1677 @@ -944,6 +1019,9 @@ msgid "" " opening/closing fiscal " "year process." msgstr "" +"Nem tudja a jelentés tételének párosítását megszüntetni, ha az automatikusan " +"lett létrehozva a költségvetési üzleti év " +" nyitási/zárási műveleteikor." #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_new @@ -959,7 +1037,7 @@ msgstr "Számítás" #. module: account #: field:account.journal.cashbox.line,pieces:0 msgid "Values" -msgstr "Címlet" +msgstr "Értékek" #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_chart @@ -971,7 +1049,7 @@ msgstr "Adókivonat" #. module: account #: view:account.fiscalyear:0 msgid "Create 3 Months Periods" -msgstr "Negyedéves időszakok létrehozása" +msgstr "Három havi időszakok létrehozása" #. module: account #: report:account.overdue:0 @@ -1004,14 +1082,14 @@ msgstr "Bruttó érték" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "" +msgstr "A beszállító által közölt számla hivatkozás." #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 #: selection:account.entries.report,type:0 msgid "Consolidation" -msgstr "Konszolidáció" +msgstr "Egyeztetettet mutat" #. module: account #: model:account.account.type,name:account.data_account_type_liability @@ -1024,12 +1102,12 @@ msgstr "Kötelezettség" #: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." -msgstr "" +msgstr "Képezzen sorrendet a naplón ehhez a számlához." #. module: account #: view:account.entries.report:0 msgid "Extended Filters..." -msgstr "Kiterjesztett szűrők…" +msgstr "Kiterjesztett szűrők" #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal @@ -1039,7 +1117,7 @@ msgstr "Központi napló" #. module: account #: selection:account.journal,type:0 msgid "Sale Refund" -msgstr "Kimenő jóváíró számla" +msgstr "Kimenő visszatérítés számla" #. module: account #: model:process.node,note:account.process_node_accountingstatemententries0 @@ -1049,7 +1127,7 @@ msgstr "Bankkivonat" #. module: account #: field:account.analytic.line,move_id:0 msgid "Move Line" -msgstr "Tételsor" +msgstr "Bizonylat tételsor" #. module: account #: help:account.move.line,tax_amount:0 @@ -1059,12 +1137,12 @@ msgid "" "basic amount(without tax)." msgstr "" "Ha az adószámla egy adógyűjtő, akkor ez a mező az adó összegét tartalmazza, " -"ha adóalapgyűjtő, akkor az adóalap összegét." +"ha adóalapgyűjtő, akkor az adóalap összegét(adó nélkül)." #. module: account #: view:account.analytic.line:0 msgid "Purchases" -msgstr "Beszerzés" +msgstr "Beszerzések" #. module: account #: field:account.model,lines_id:0 @@ -1091,7 +1169,7 @@ msgstr "Kód" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Jellemzők" #. module: account #: code:addons/account/account.py:2346 @@ -1109,7 +1187,7 @@ msgstr "Nincs gyűjtőnapló!" #: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance #: model:ir.ui.menu,name:account.menu_account_partner_balance_report msgid "Partner Balance" -msgstr "Folyószámla kivonat" +msgstr "Partner folyószámla kivonat" #. module: account #: model:ir.actions.act_window,help:account.action_account_gain_loss @@ -1127,6 +1205,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson könyvelési számla fiók hozzáadásához.\n" +"

\n" +" Ha többféle pénznem végez műveleteket, akkor veszíthet vagy " +"nyerhet\n" +" bizonyos összegeket az árfolyamváltozás miatt. Ez a menü " +"egy\n" +" előrejelzést ad a nyereségről vagy veszteségről az aznap\n" +" végrehajtott folyamatokról. Csak olyan számlákon, ahol van\n" +" másodlagos pénznem.\n" +"

\n" +" " #. module: account #: field:account.bank.accounts.wizard,acc_name:0 @@ -1144,11 +1234,13 @@ msgid "" "Check this box if you don't want any tax related to this tax code to appear " "on invoices" msgstr "" +"Jelölje be ezt a négyzetet, ha nem akarja ehhez az adógyűjtőhöz kapcsolatos " +"bármely adót feltüntetni ezen a számlán." #. module: account #: field:report.account.receivable,name:0 msgid "Week of Year" -msgstr "Hét" +msgstr "Az év hete" #. module: account #: field:account.report.general.ledger,landscape:0 @@ -1166,19 +1258,19 @@ msgid "" "These types are defined according to your country. The type contains more " "information about the account and its specificities." msgstr "" -"A számlatípus több információt tartalmaz a főkönyvi számláról és a " -"sajátosságairól." +"Ezek a típusok az országa szerint vannak meghatározva. A számlatípus több " +"információt tartalmaz a főkönyvi számláról és a sajátosságairól." #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "Visszatérítés " #. module: account #: code:addons/account/account_analytic_line.py:90 #, python-format msgid "There is no expense account defined for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Nincs kiadási számla meghatározva ehhez a termékhez: \"%s\" (id:%d)." #. module: account #: view:account.tax:0 @@ -1195,12 +1287,12 @@ msgstr "Vitatott" #: model:ir.actions.act_window,name:account.action_view_bank_statement_tree #: model:ir.ui.menu,name:account.journal_cash_move_lines msgid "Cash Registers" -msgstr "Pénztár" +msgstr "Pénztár rögzítők" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Visszatérítési napló" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1219,6 +1311,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új készpénz napló rögzítéshez.\n" +"

\n" +" A pénztár rögzítők lehetővé teszik a beérkezett készpénzek " +"készpénz naplóban\n" +" való rögzítését.. Ez a tulajdonság elérhetővé teszi a " +"készpénzek napi szintű\n" +" nyomon követését. Rögzítheti a kazettában lévő " +"aprópénzeket,\n" +" és a kivét illetve betét után is feltöltheti a " +"pénzmozgásokat.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_bank @@ -1236,7 +1341,7 @@ msgstr "Időszak kezdete" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Visszatérítés" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 @@ -1246,7 +1351,7 @@ msgstr "Kivonat jóváhagyása" #. module: account #: view:account.tax:0 msgid "Account Tax" -msgstr "Adó" +msgstr "Adó számla" #. module: account #: help:account.account,foreign_balance:0 @@ -1254,6 +1359,8 @@ msgid "" "Total amount (in Secondary currency) for transactions held in secondary " "currency for this account." msgstr "" +"Teljes összeg (a másodlagos pénznemben) erre a számlára a másodlagos " +"pénznemben történt tranzakciókra." #. module: account #: field:account.fiscal.position.tax,tax_dest_id:0 @@ -1278,6 +1385,8 @@ msgid "" "The amount expressed in the secondary currency must be positif when journal " "item are debit and negatif when journal item are credit." msgstr "" +"A másodlagos pénznemben kifejezett mennyiségnek pozitívnak kell lennie, ha a " +"napló tétel tartozás és negatív, ha a napló tétel követelés." #. module: account #: view:account.invoice.cancel:0 @@ -1287,12 +1396,12 @@ msgstr "Számlák érvénytelenítése" #. module: account #: help:account.journal,code:0 msgid "The code will be displayed on reports." -msgstr "" +msgstr "A kód meg lesz jelenítve a kimutatásokon." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "" +msgstr "A beszerzéseknél felhasznált adók" #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1306,7 +1415,7 @@ msgstr "Adókód" #. module: account #: field:account.account,currency_mode:0 msgid "Outgoing Currencies Rate" -msgstr "Csökkenéseknél használt árfolyam" +msgstr "Kimenő csökkenéseknél használt árfolyam" #. module: account #: view:account.analytic.account:0 @@ -1327,7 +1436,7 @@ msgstr "A tételsor bizonylatszáma." #. module: account #: field:account.move.line.reconcile,trans_nbr:0 msgid "# of Transaction" -msgstr "Tranzakció száma" +msgstr "# Tranzakció száma" #. module: account #: report:account.general.ledger:0 @@ -1335,7 +1444,7 @@ msgstr "Tranzakció száma" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Entry Label" -msgstr "Megjegyzés" +msgstr "Belépési megnevezés" #. module: account #: help:account.invoice,origin:0 @@ -1347,12 +1456,12 @@ msgstr "Bizonylat, amely előállította ezt a számlát." #: view:account.analytic.line:0 #: view:account.journal:0 msgid "Others" -msgstr "Egyéb" +msgstr "Egyebek" #. module: account #: view:account.subscription:0 msgid "Draft Subscription" -msgstr "" +msgstr "Feliratkozási tervezet" #. module: account #: view:account.account:0 @@ -1404,7 +1513,7 @@ msgstr "Szint" #: code:addons/account/wizard/account_change_currency.py:38 #, python-format msgid "You can only change currency for Draft Invoice." -msgstr "" +msgstr "Csak a tervezet számlának tudja megváltoztatni a pénznemét." #. module: account #: report:account.invoice:0 @@ -1430,7 +1539,7 @@ msgstr "Válassza ki a kezdő és a záró időszakot" #: model:account.financial.report,name:account.account_financial_report_profitandloss0 #: model:ir.actions.act_window,name:account.action_account_report_pl msgid "Profit and Loss" -msgstr "Eredménykimutatás" +msgstr "Eredménykimutatás (Nyereség/Veszteség)" #. module: account #: model:ir.model,name:account.model_account_account_template @@ -1475,7 +1584,7 @@ msgstr "Listázási beállítások" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "Bezárni kívánt üzleti év" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 @@ -1499,6 +1608,9 @@ msgid "" "And after getting confirmation from the bank it will be in 'Confirmed' " "status." msgstr "" +"Ha új bizonylat lett létrehozva akkor annak állapota 'Tervezet' lesz.\n" +"Miután a banktól megkaptuk a visszaigazolást, az állapot 'Visszaigazolt' " +"lesz." #. module: account #: field:account.invoice.report,state:0 @@ -1512,12 +1624,12 @@ msgstr "Számla állapota" #: model:process.node,name:account.process_node_bankstatement0 #: model:process.node,name:account.process_node_supplierbankstatement0 msgid "Bank Statement" -msgstr "Bankkivonat" +msgstr "Bankszámlakivonat" #. module: account #: field:res.partner,property_account_receivable:0 msgid "Account Receivable" -msgstr "Vevő számla" +msgstr "Vevői, követelés számla" #. module: account #: code:addons/account/account.py:612 @@ -1544,6 +1656,8 @@ msgid "" "There is no default debit account defined \n" "on journal \"%s\"." msgstr "" +"Nincs alapértelmezett tartozás számla meghatározva \n" +"a könyvelési naplón \"%s\"." #. module: account #: view:account.tax:0 @@ -1553,7 +1667,7 @@ msgstr "Adók keresése" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger msgid "Account Analytic Cost Ledger" -msgstr "Gyűjtőkód karton" +msgstr "Analitikus költség könyvitel számla" #. module: account #: view:account.model:0 @@ -1563,7 +1677,7 @@ msgstr "Tételek létrehozása" #. module: account #: field:account.entries.report,nbr:0 msgid "# of Items" -msgstr "Tételek száma" +msgstr "# tételekből" #. module: account #: field:account.automatic.reconcile,max_amount:0 @@ -1578,35 +1692,37 @@ msgid "" "There is nothing to reconcile. All invoices and payments\n" " have been reconciled, your partner balance is clean." msgstr "" +"Nincs mit párosítani. Minden számla és fizetés\n" +" párosítva lett, az üzleti partner egyenlege tiszta." #. module: account #: field:account.chart.template,code_digits:0 #: field:account.config.settings,code_digits:0 #: field:wizard.multi.charts.accounts,code_digits:0 msgid "# of Digits" -msgstr "Számjegyek száma" +msgstr "# számlyegyek száma" #. module: account #: field:account.journal,entry_posted:0 msgid "Skip 'Draft' State for Manual Entries" -msgstr "Azonnali könyvelés" +msgstr "'Tervezet' átugrása azonnali könyveléshez" #. module: account #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_report_common.py:164 #, python-format msgid "Not implemented." -msgstr "" +msgstr "Nincs végrehajtva." #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "Jóváírás" +msgstr "Jóváírás, visszatérítés jegyzék" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "Számlázás & Kifizetések" +msgstr "eSzámlázás & Kifizetések" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -1616,7 +1732,7 @@ msgstr "Gyűjtőkód karton az alábbi időszakra" #. module: account #: view:account.entries.report:0 msgid "# of Entries " -msgstr "Tételek száma " +msgstr "# Tételek számából " #. module: account #: help:account.fiscal.position,active:0 @@ -1624,6 +1740,8 @@ msgid "" "By unchecking the active field, you may hide a fiscal position without " "deleting it." msgstr "" +"Az aktív mező üresen hagyásával, eltüntetheti az ÁFA helyét, annak törlése " +"nélkül." #. module: account #: model:ir.model,name:account.model_temp_range @@ -1634,7 +1752,7 @@ msgstr "Vezérlőpult nézet ideiglenes táblázata" #: model:ir.actions.act_window,name:account.action_invoice_tree4 #: model:ir.ui.menu,name:account.menu_action_invoice_tree4 msgid "Supplier Refunds" -msgstr "Bejövő jóváíró számlák" +msgstr "Beszállítói, bejövő jóváíró számlák" #. module: account #: field:account.tax.code,code:0 @@ -1645,7 +1763,7 @@ msgstr "Adógyűjtő kód" #. module: account #: field:account.config.settings,company_footer:0 msgid "Bank accounts footer preview" -msgstr "" +msgstr "Bankszámlaszámok a lápjegyzet előnézethez" #. module: account #: selection:account.account,type:0 @@ -1681,7 +1799,7 @@ msgstr "Csoportok" #. module: account #: field:report.invoice.created,amount_untaxed:0 msgid "Untaxed" -msgstr "Nettó érték" +msgstr "Nem adózott, nettó érték" #. module: account #: view:account.journal:0 @@ -1696,19 +1814,19 @@ msgstr "Bankkivonatok keresése" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "" +msgstr "Feladatlan napló tételek" #. module: account #: view:account.chart.template:0 #: field:account.chart.template,property_account_payable:0 msgid "Payable Account" -msgstr "Szállító főkönyvi számla" +msgstr "Fizethető számla" #. module: account #: field:account.tax,account_paid_id:0 #: field:account.tax.template,account_paid_id:0 msgid "Refund Tax Account" -msgstr "Adó főkönyvi számla (jóváíró szlák)" +msgstr "Adó főkönyvi számla (jóváíró visszetérítések szlák)" #. module: account #: model:ir.model,name:account.model_ir_sequence @@ -1719,12 +1837,12 @@ msgstr "ir.sequence" #: view:account.bank.statement:0 #: field:account.bank.statement,line_ids:0 msgid "Statement lines" -msgstr "Kivonatsorok" +msgstr "Kivonat sorok" #. module: account #: report:account.analytic.account.cost_ledger:0 msgid "Date/Code" -msgstr "Dátum/Kód" +msgstr "Dátum/kód" #. module: account #: field:account.analytic.line,general_account_id:0 @@ -1755,6 +1873,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új számla típus létrehozásához.\n" +"

\n" +" Egy számla típus azt határozza meg, hogy azt hogyan " +"használják\n" +" a naplókban. A számla típus alkalmazás módszer határozza meg " +"az\n" +" éves elszámolás számítási módszerét. Az egyenleg kimutatások " +"\n" +" és a nyereség és veszteség kimutatás használja a " +"kategóriákat\n" +" (nyereség/veszteség vagy egyenleg kimuttás).\n" +"

\n" +" " #. module: account #: report:account.invoice:0 @@ -1777,7 +1909,7 @@ msgstr "egyenleg" #: model:process.node,note:account.process_node_analytic0 #: model:process.node,note:account.process_node_analyticcost0 msgid "Analytic costs to invoice" -msgstr "Kiszámlázandó költségek" +msgstr "Kiszámlázandó analitikus költségek" #. module: account #: view:ir.sequence:0 @@ -1787,7 +1919,7 @@ msgstr "Üzleti év sorszám" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Analitikus számla" #. module: account #: report:account.overdue:0 @@ -1806,6 +1938,16 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"Ha kiválasztotta a 'Tétel soronkénti kerekítést' : mindegyik adóra, először " +"számítást és kerekítést végez minden egyes Beszerzési megrendelés " +"BM/Vásárlói megrendelés VM/számla tétel sorra és ezek a kerekített tételek " +"lesznek összegezve, így kialakítva a teljes adó értéket. Ha kiválasztotta a " +"'Teljes körű kerekítést': mindegyik adóra, először adó számítást végez " +"minden egyes Beszerzési megrendelés BM/Vásárlói megrendelés VM/számla tétel " +"sorra, melyek összegzésre kerülnek és végül ez a teljes adó összege lesz " +"kerekítve. Ha adóval együtt történik az eladás, akkor a 'Tétel soronkénti " +"kerekítést' válassza, mivel bizonyára azt szeretné, hogy az adóval növelt " +"tételsor összegei egyezzenek a teljes összeg adóval növel értékével." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all @@ -1837,12 +1979,14 @@ msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." msgstr "" +"A naplónak, a vázlat állapot átugrás lehetőség beállítása nélküli, központi " +"ellenszámlával kell rendelkeznie." #. module: account #: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." -msgstr "" +msgstr "Egyes tételek már párosítva lettek." #. module: account #: field:account.tax.code,sum:0 @@ -1860,16 +2004,18 @@ msgid "" "Select a configuration package to setup automatically your\n" " taxes and chart of accounts." msgstr "" +"Beállítási csomagot válasszon az automatikus adó és számlatükör\n" +" beállításokhoz." #. module: account #: view:account.analytic.account:0 msgid "Pending Accounts" -msgstr "" +msgstr "Függőben lévő számlák" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Cancel Fiscal Year Opening Entries" -msgstr "" +msgstr "Üzleti év nyitó tételeinek eldobása" #. module: account #: report:account.journal.period.print.sale.purchase:0 @@ -1883,7 +2029,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the journal " "period without removing it." msgstr "" -"Ha az aktív mező nincs bejelölve, nem használható a könyvelési időszak." +"Ha az aktív mező hamisra van állítva, lehetősége van a napló időszak " +"eltüntetésére annak törlése nélkül." #. module: account #: field:account.report.general.ledger,sortby:0 @@ -1893,12 +2040,12 @@ msgstr "Rendezés" #. module: account #: model:ir.actions.act_window,name:account.act_account_partner_account_move_all msgid "Receivables & Payables" -msgstr "Vevőkövetelések és szállítói tartozások" +msgstr "Vevőkövetelések (Bevételek) és szállítói tartozások (kiadások)" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "" +msgstr "Átutalási megbízások kezelése" #. module: account #: view:account.period:0 @@ -1919,12 +2066,12 @@ msgstr "Általános naplókimutatás" #. module: account #: selection:account.partner.balance,display_partner:0 msgid "All Partners" -msgstr "Minden partner" +msgstr "Összes partner" #. module: account #: view:account.analytic.chart:0 msgid "Analytic Account Charts" -msgstr "Gyűjtőkód lista" +msgstr "Analitikus számla gyűjtőkód lista" #. module: account #: report:account.overdue:0 @@ -1941,7 +2088,7 @@ msgstr "Vevő hiv.:" #: help:account.tax.template,ref_tax_code_id:0 #: help:account.tax.template,tax_code_id:0 msgid "Use this code for the tax declaration." -msgstr "" +msgstr "Adóbevallásnál használja ezt a kódot." #. module: account #: help:account.period,special:0 @@ -1956,12 +2103,12 @@ msgstr "Tervezet állapotú kivonat" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "" +msgstr "Számla jóváhagyva" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "Fizesse a beszállítóit csekkel" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -1984,6 +2131,12 @@ msgid "" "useful because it enables you to preview at any time the tax that you owe at " "the start and end of the month or quarter." msgstr "" +"Ez a menü az adó bevallást nyomtatja a számlák és kifizetések alapján. Egy " +"vagy több időintervallumot válasszon egy üzleti évből. Az adó bevalláshoz az " +"információkat az OpenERP automatikusan létrehozza a számlákból (vagy " +"kifizetésekből, egyes országokban). Ezek az adatok valós időben frissülnek. " +"Ez nagyon hasznos, mivel lehetővé teszi az adók lekérdezését egy havi vagy " +"negyedéves időszak elejénél és végénél." #. module: account #: code:addons/account/account.py:409 @@ -2039,7 +2192,7 @@ msgstr "" #: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" -msgstr "" +msgstr "Hiba!" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree2 @@ -2054,6 +2207,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson egy új beszállítói számla felviteléhez.\n" +"

\n" +" Figyelemmel kísérheti a beszállítótól érkezett számlákat\n" +" attól függően, hogy mit vásárolt vagy mi érkezett be. \n" +" A rendszer létre tud hozni számla tervezetet automatikusan\n" +" a beszerzési megrendelésből vagy vásárlási nyugtákból.\n" +"

\n" +" " #. module: account #: sql_constraint:account.move.line:0 @@ -2070,7 +2232,7 @@ msgstr "Számlák elemzése" #. module: account #: model:ir.model,name:account.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Email összeállító varázsló" #. module: account #: model:ir.model,name:account.model_account_period_close @@ -2084,6 +2246,8 @@ msgid "" "This journal already contains items for this period, therefore you cannot " "modify its company field." msgstr "" +"Ez a napló már tartalmaz tételt erre a időszakaszra, ezért nem tudja " +"módosítani a vállalat mezőt." #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form @@ -2093,7 +2257,7 @@ msgstr "Soronkénti tételek" #. module: account #: field:account.vat.declaration,based_on:0 msgid "Based on" -msgstr "" +msgstr "Alapján" #. module: account #: model:ir.actions.act_window,help:account.action_bank_statement_tree @@ -2112,11 +2276,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson egy banki kivonat iktatásához.\n" +"

\n" +" Egy banki kivonat a pénzügyi tranzakciók összegzése\n" +" egy a banki számlán megadott időintervallumra. Ezt\n" +" időszakosan küldi a bank.\n" +"

\n" +" OpenERP allows you to reconcile a statement line directly " +"with\n" +" the related sale or puchase invoices.\n" +"

\n" +" " #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "A Vállalkozás alapértelmezett pénzneme" #. module: account #: field:account.invoice,move_id:0 @@ -2141,13 +2317,13 @@ msgstr "Pénzeszközök elemzése" #. module: account #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase msgid "Sale/Purchase Journal" -msgstr "" +msgstr "Értékesítés/Beszerzés napló" #. module: account #: view:account.analytic.account:0 #: field:account.invoice.tax,account_analytic_id:0 msgid "Analytic account" -msgstr "Gyűjtőkód" +msgstr "Analitikus könyvelési számla" #. module: account #: code:addons/account/account_bank_statement.py:406 @@ -2165,18 +2341,18 @@ msgstr "Érvényes" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Követők" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal #: model:ir.model,name:account.model_account_print_journal msgid "Account Print Journal" -msgstr "Naplók nyomtatása" +msgstr "Főkönyvi naplók nyomtatása" #. module: account #: model:ir.model,name:account.model_product_category msgid "Product Category" -msgstr "Termék kategória" +msgstr "Termékkategória" #. module: account #: code:addons/account/account.py:656 @@ -2185,6 +2361,8 @@ msgid "" "You cannot change the type of account to '%s' type as it contains journal " "items!" msgstr "" +"Nem változtathatja meg a főkönyvi számla típusát erre '%s' típusra, mivel " +"napló tételeket tartalmaz!" #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance @@ -2194,19 +2372,20 @@ msgstr "Korosított folyószámla kivonat" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close Fiscal Year" -msgstr "" +msgstr "Üzleti év lezárása" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "" +msgstr "Napló :" #. module: account #: sql_constraint:account.fiscal.position.tax:0 msgid "A tax fiscal position could be defined only once time on same taxes." msgstr "" +"Az adó adóügyi pozíciója csak egyszer határozható meg ugyanarra az adóra." #. module: account #: view:account.tax:0 @@ -2218,12 +2397,12 @@ msgstr "Adó meghatározása" #: view:account.config.settings:0 #: model:ir.actions.act_window,name:account.action_account_config msgid "Configure Accounting" -msgstr "" +msgstr "Könyvelés kialakítása" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference Unit of Measure" -msgstr "" +msgstr "Referencia mértékegység" #. module: account #: help:account.journal,allow_date:0 @@ -2239,12 +2418,12 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 #, python-format msgid "Good job!" -msgstr "" +msgstr "Szép munka!" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "Eszközök adatkezelése" #. module: account #: view:account.account:0 @@ -2258,7 +2437,7 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" -msgstr "Szállító számlák" +msgstr "Kötelezettség számlák" #. module: account #: constraint:account.move.line:0 @@ -2267,6 +2446,9 @@ msgid "" "currency. You should remove the secondary currency on the account or select " "a multi-currency view on the journal." msgstr "" +"A napló tétel kiválasztott könyvelési tételei másik pénznem használatát " +"kényszerítik. El kell távolítania a másodlagos pénznemet a tétel számláról " +"vagy válasszon több-pénznemes nézetet a naplón." #. module: account #: view:account.invoice:0 @@ -2279,17 +2461,19 @@ msgstr "Nettó érték" msgid "" "If the active field is set to False, it will allow you to hide the tax " "without removing it." -msgstr "Ha az aktív mező nincs bejelölve, nem használható az adó." +msgstr "" +"Ha az aktív mező nincs bejelölve, eltüntetheti az adó értéket annak törlése " +"nélkül." #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "" +msgstr "Értékesítési naplóval kapcsolatban álló analitikai napló tételek." #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Italic Text (smaller)" -msgstr "" +msgstr "Italic szövegméret (kisebb)" #. module: account #: help:account.journal,cash_control:0 @@ -2297,6 +2481,7 @@ msgid "" "If you want the journal should be control at opening/closing, check this " "option" msgstr "" +"Ha a napló vezérlést a nyitásnál/zárásnál szeretné, jelölje ezt a lehetőséget" #. module: account #: view:account.bank.statement:0 @@ -2347,7 +2532,7 @@ msgstr "Párosítandó számlák" #. module: account #: model:process.transition,note:account.process_transition_filestatement0 msgid "Import of the statement in the system from an electronic file" -msgstr "File-ból kivonat importálása a rendszerbe" +msgstr "Fájlból banki kivonat importálása a rendszerbe" #. module: account #: model:process.node,name:account.process_node_importinvoice0 @@ -2366,7 +2551,7 @@ msgstr "Január" #. module: account #: view:account.entries.report:0 msgid "This F.Year" -msgstr "Tárgyév" +msgstr "Ez az Üzleti év" #. module: account #: view:account.tax.chart:0 @@ -2377,18 +2562,18 @@ msgstr "Adókivonatok" #: model:account.payment.term,name:account.account_payment_term_net #: model:account.payment.term,note:account.account_payment_term_net msgid "30 Net Days" -msgstr "30 nap" +msgstr "30 nap nettó" #. module: account #: code:addons/account/account_cash_statement.py:256 #, python-format msgid "You do not have rights to open this %s journal !" -msgstr "" +msgstr "Nincs hozááférési joge ehez a %s naplóhoz !" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "" +msgstr "Ellenőrizze a végösszeget ezeken a beszállítói számlákon" #. module: account #: selection:account.invoice,state:0 @@ -2396,7 +2581,7 @@ msgstr "" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Pro-forma" -msgstr "Pro forma" +msgstr "Pro-forma" #. module: account #: help:account.account.template,type:0 @@ -2422,7 +2607,7 @@ msgstr "Számlatükör sablon keresése" #. module: account #: report:account.invoice:0 msgid "Customer Code" -msgstr "" +msgstr "Vevő kód" #. module: account #: view:account.account.type:0 @@ -2451,7 +2636,7 @@ msgstr "Ár tartalmazza az adót" #: view:account.subscription:0 #: selection:account.subscription,state:0 msgid "Running" -msgstr "Futó" +msgstr "Folyamatban lévő" #. module: account #: view:account.chart.template:0 @@ -2464,6 +2649,8 @@ msgstr "Árbevétel főkönyvi számla" #: help:account.config.settings,default_sale_tax:0 msgid "This sale tax will be assigned by default on new products." msgstr "" +"Ez az értékesítési adó lesz alapértelmezetten hozzárendelve az új " +"termékekhez." #. module: account #: report:account.general.ledger_landscape:0 @@ -2475,12 +2662,12 @@ msgstr "Tételek sorbarendezésének alapja" #. module: account #: field:account.change.currency,currency_id:0 msgid "Change to" -msgstr "Új pénznem" +msgstr "Változtatás erre" #. module: account #: view:account.entries.report:0 msgid "# of Products Qty " -msgstr "Termékmennyiség " +msgstr "# Termékmennyiség " #. module: account #: model:ir.model,name:account.model_product_template @@ -2544,7 +2731,7 @@ msgstr "Üzleti év" #: help:accounting.report,fiscalyear_id:0 #: help:accounting.report,fiscalyear_id_cmp:0 msgid "Keep empty for all open fiscal year" -msgstr "Hagyja üresen, ha minden nyitott évre akarja listázni" +msgstr "Hagyja üresen, ha minden nyitott üzleti évre akarja listázni" #. module: account #: code:addons/account/account.py:653 @@ -2553,11 +2740,13 @@ msgid "" "You cannot change the type of account from 'Closed' to any other type as it " "contains journal items!" msgstr "" +"Nem változtathatja meg a 'Lezárt' állapotú főkönyvi számlát más típusra, " +"mivel napló tételeket tartalmaz!" #. module: account #: field:account.invoice.report,account_line_id:0 msgid "Account Line" -msgstr "" +msgstr "Főkönyvi számla tétel" #. module: account #: view:account.addtmpl.wizard:0 @@ -2573,6 +2762,11 @@ msgid "" "amount greater than the total invoiced amount. In order to avoid rounding " "issues, the latest line of your payment term must be of type 'balance'." msgstr "" +"Nem hozható létre számla.\n" +"Az ide vonatkozó fizetési feltétel lehetséges hogy félrekonfigurált, mivel a " +"számított mennyiség nagyobb mint a számlázott végösszeg. Kerekítésből " +"származó hibák elkerülésére, a fizetési feltétel utolsó tételének 'egyenleg' " +"típusnak kell lennie." #. module: account #: view:account.move:0 @@ -2592,6 +2786,8 @@ msgid "" "In order to delete a bank statement, you must first cancel it to delete " "related journal items." msgstr "" +"Banki kivonat törléséhez, először vonja vissza, hogy törölni tudja az ide " +"vonatkozó napló tételeket." #. module: account #: field:account.invoice.report,payment_term:0 @@ -2614,6 +2810,7 @@ msgstr "ÁFA pozíciók" #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" +"Nem tud napló tételeket létrehozni egy lezárt könyvelési számlán %s %s." #. module: account #: field:account.period.close,sure:0 @@ -2629,17 +2826,17 @@ msgstr "Szűrők" #: model:process.node,note:account.process_node_draftinvoices0 #: model:process.node,note:account.process_node_supplierdraftinvoices0 msgid "Draft state of an invoice" -msgstr "A számla tervezet állapota" +msgstr "Egy számla tervezet állapota" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Főkönyvi számla tulajdonságai" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Visszatérítés tervezet számla készítése" #. module: account #: view:account.partner.reconcile.process:0 @@ -2649,7 +2846,7 @@ msgstr "Partner párosítás" #. module: account #: view:account.analytic.line:0 msgid "Fin. Account" -msgstr "" +msgstr "Pénzügyi számla" #. module: account #: field:account.tax,tax_code_id:0 @@ -2661,7 +2858,7 @@ msgstr "Adógyűjtő kód" #: model:account.payment.term,name:account.account_payment_term_advance #: model:account.payment.term,note:account.account_payment_term_advance msgid "30% Advance End 30 Days" -msgstr "" +msgstr "30% előrefizetés 30 napon belül" #. module: account #: view:account.entries.report:0 @@ -2715,7 +2912,7 @@ msgstr "Megújítandó számlák" #. module: account #: model:ir.model,name:account.model_account_model_line msgid "Account Model Entries" -msgstr "Modelltételek" +msgstr "Főkönyvi számla modelltételek" #. module: account #: code:addons/account/account.py:3202 @@ -2726,12 +2923,12 @@ msgstr "EXJ" #. module: account #: field:product.template,supplier_taxes_id:0 msgid "Supplier Taxes" -msgstr "Beszerzési adók" +msgstr "Beszerzések adói" #. module: account #: view:res.partner:0 msgid "Bank Details" -msgstr "Bankadatok" +msgstr "Bank adatok" #. module: account #: model:ir.actions.act_window,help:account.action_move_journal_line @@ -2752,6 +2949,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson napló bejegyzés készítéséhez.\n" +"

\n" +" Egy napló bejegyzés több napló tételt tartalmazhat, melyek " +"lehetnek\n" +" tartozás vagy követelés ügylet.\n" +"

\n" +" Automatikusan létrehoz napló tételeket minden \n" +" könyvelési dokumentumhoz: számla, visszatérítés, beszállítók " +"kifizetése, banki kivonatok,\n" +" stb. így, napló tételeket kézzel általában/csak egyéb " +"művelet esetén\n" +" képezzen.\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -2785,12 +2997,12 @@ msgstr "Kivonatok" #. module: account #: report:account.analytic.account.journal:0 msgid "Move Name" -msgstr "Megnevezés" +msgstr "Bizonylat megnevezése" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_writeoff msgid "Account move line reconcile (writeoff)" -msgstr "" +msgstr "Főkönyvi számla bizonylet tételsor párosítása (leírás)" #. module: account #: model:account.account.type,name:account.conf_account_type_tax @@ -2801,7 +3013,7 @@ msgstr "" #: view:account.tax:0 #: model:ir.model,name:account.model_account_tax msgid "Tax" -msgstr "ÁFA" +msgstr "Adó" #. module: account #: view:account.analytic.account:0 @@ -2813,13 +3025,13 @@ msgstr "ÁFA" #: field:account.move.line,analytic_account_id:0 #: field:account.move.line.reconcile.writeoff,analytic_id:0 msgid "Analytic Account" -msgstr "Gyűjtőkód" +msgstr "Analitikus könyvelés" #. module: account #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "Alapértelmezett adó beszerzésekhez" #. module: account #: view:account.account:0 @@ -2851,13 +3063,13 @@ msgstr "Beállítási hiba!" #: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." -msgstr "" +msgstr "%s kivonat rögzítve, napló tétel létrehozva." #. module: account #: field:account.invoice.report,price_average:0 #: field:account.invoice.report,user_currency_price_average:0 msgid "Average Price" -msgstr "Átlagár" +msgstr "Mérlegelt átlagár" #. module: account #: report:account.overdue:0 @@ -2868,7 +3080,7 @@ msgstr "Dátum:" #: report:account.journal.period.print:0 #: report:account.journal.period.print.sale.purchase:0 msgid "Label" -msgstr "Megjegyzés" +msgstr "Címke" #. module: account #: view:res.partner.bank:0 @@ -2885,12 +3097,12 @@ msgstr "Különleges számítás" #: view:account.move.bank.reconcile:0 #: model:ir.actions.act_window,name:account.action_account_bank_reconcile_tree msgid "Bank reconciliation" -msgstr "Bank egyeztetés" +msgstr "Bank párosítás" #. module: account #: report:account.invoice:0 msgid "Disc.(%)" -msgstr "Eng. (%)" +msgstr "Áreng. (%)" #. module: account #: report:account.general.ledger:0 @@ -2899,22 +3111,24 @@ msgstr "Eng. (%)" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Ref" -msgstr "Hiv" +msgstr "Hiv." #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "" +msgstr "Beszerzési adó" #. module: account #: help:account.move.line,tax_code_id:0 msgid "The Account can either be a base tax code or a tax code account." -msgstr "Adóalapgyűjtő vagy adógyűjtő lehet." +msgstr "Ez a főkönyvi számla adóalapgyűjtő vagy adógyűjtő számla lehet." #. module: account #: sql_constraint:account.model.line:0 msgid "Wrong credit or debit value in model, they must be positive!" msgstr "" +"Nem megfelelő követelés vagy tartozás érték a modellben, pozitívnak kell " +"lennie!" #. module: account #: model:process.node,note:account.process_node_reconciliation0 @@ -2963,6 +3177,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új adóügyi év létrehozásához.\n" +"

\n" +" Határozza meg a vállalkozása üzleti évét a kívánságainak " +"megfelelően.\n" +" Egy üzleti év egy idő periódus, aminek a végén a vállalkozás " +"könyvelése\n" +" elszámolásra kerül (általában 12 hónap). Az üzleti év arra a " +"dátumra\n" +" hivatkozik általában ahol az véget ér. Például,\n" +" ha a vállalkozás pénzügyi üzleti éve 2011 november 30-ára " +"esik, akkor\n" +" minden ami 2010 december 1 és 2011 november 30 közé esik\n" +" azt hívjuk 2011 évi üzleti/pénzügyi/adóügyi évnek.\n" +"

\n" +" " #. module: account #: view:account.common.report:0 @@ -2975,7 +3205,7 @@ msgstr "Dátumok" #. module: account #: field:account.chart.template,parent_id:0 msgid "Parent Chart Template" -msgstr "" +msgstr "Fölérendelt számlatükör sablon" #. module: account #: field:account.tax,parent_id:0 @@ -2988,7 +3218,7 @@ msgstr "Fölérendelt adószámla" #: model:ir.actions.act_window,name:account.action_account_aged_balance_view #: model:ir.ui.menu,name:account.menu_aged_trial_balance msgid "Aged Partner Balance" -msgstr "Korosított folyószámla kivonat" +msgstr "Korosított partner folyószámla számlaegyenleg" #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 @@ -2999,12 +3229,12 @@ msgstr "Könyvelési tételek" #. module: account #: constraint:account.move.line:0 msgid "Account and Period must belong to the same company." -msgstr "" +msgstr "Főkönyvi számla és időszak ugyanahhoz a vállalathoz tartozzon." #. module: account #: field:account.invoice.line,discount:0 msgid "Discount (%)" -msgstr "Engedmény (%)" +msgstr "Árengedmény (%)" #. module: account #: help:account.journal,entry_posted:0 @@ -3030,7 +3260,7 @@ msgstr "Leírandó összeg" #: field:account.bank.statement,message_unread:0 #: field:account.invoice,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Olvasatlan üzenetek" #. module: account #: code:addons/account/wizard/account_invoice_state.py:44 @@ -3039,12 +3269,15 @@ msgid "" "Selected invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-" "Forma' state." msgstr "" +"A kiválasztott számla(k) nem erősíthetők meg mivel nem 'Tervezet' vagy 'Pro-" +"Forma' állapotúak." #. module: account #: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" +"Olyan időszakot kell választania ami ugyanahhoz a vállalathoz tartozik." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all @@ -3057,7 +3290,7 @@ msgstr "Főkönyvi számlánkénti értékesítés" #: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "" +msgstr "Nem törölhet egy feladott napló bejegyzést \"%s\"." #. module: account #: view:account.invoice:0 @@ -3067,7 +3300,7 @@ msgstr "Könyvelési időszak" #. module: account #: field:account.config.settings,sale_journal_id:0 msgid "Sale journal" -msgstr "" +msgstr "Értékesítési napló" #. module: account #: code:addons/account/account.py:2346 @@ -3075,7 +3308,7 @@ msgstr "" #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" -msgstr "A(z) '%s' naplóhoz meg kell határoznia egy gyűjtőnaplót!" +msgstr "A(z) '%s' naplóhoz meg kell határoznia egy analitikai gyűjtő naplót!" #. module: account #: code:addons/account/account.py:781 @@ -3084,6 +3317,8 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" +"Ez a napló már tartalmaz tételeket, ezért nem változtathatja meg a vállalati " +"mezőt." #. module: account #: code:addons/account/account.py:409 @@ -3092,6 +3327,8 @@ msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." msgstr "" +"Egy központosítással leellenőrzött nyitó napló szükséges a kezdő egyenleg " +"beállításához." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -3102,13 +3339,13 @@ msgstr "Adógyűjtők" #. module: account #: view:account.account:0 msgid "Unrealized Gains and losses" -msgstr "" +msgstr "Nem megvalósított nyereségek és veszteségek" #. module: account #: model:ir.ui.menu,name:account.menu_account_customer #: model:ir.ui.menu,name:account.menu_finance_receivables msgid "Customers" -msgstr "Vevők" +msgstr "Vásárlók" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -3129,7 +3366,7 @@ msgstr "Augusztus" #. module: account #: field:accounting.report,debit_credit:0 msgid "Display Debit/Credit Columns" -msgstr "" +msgstr "Tartozás/követelés oszlop kijelzése" #. module: account #: selection:account.entries.report,month:0 @@ -3154,12 +3391,12 @@ msgstr "" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Nem párosított tranzakciók" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 msgid "Only One Chart Template Available" -msgstr "" +msgstr "Csak egy sablon lista elérhető" #. module: account #: view:account.chart.template:0 @@ -3172,7 +3409,7 @@ msgstr "Beszerzés főkönyvi számla" #: field:account.bank.statement,message_summary:0 #: field:account.invoice,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Összegzés" #. module: account #: help:account.invoice,period_id:0 @@ -3188,7 +3425,7 @@ msgstr "A kivonat egyeztetésnél használja a rendszer, máshol ne alkalmazza." #. module: account #: field:account.config.settings,date_stop:0 msgid "End date" -msgstr "" +msgstr "Befejezés dátuma" #. module: account #: field:account.invoice.tax,base_amount:0 @@ -3219,7 +3456,7 @@ msgstr "Pénzügyi számvitel" #. module: account #: model:ir.ui.menu,name:account.menu_account_report_pl msgid "Profit And Loss" -msgstr "Eredménykimutatás" +msgstr "Eredménykimutatás (Nyereség és Veszteség)" #. module: account #: view:account.fiscal.position:0 @@ -3233,7 +3470,7 @@ msgstr "Eredménykimutatás" #: model:ir.model,name:account.model_account_fiscal_position #: field:res.partner,property_account_position:0 msgid "Fiscal Position" -msgstr "ÁFA pozíció" +msgstr "Költségvetési pozíció" #. module: account #: code:addons/account/account_invoice.py:823 @@ -3262,13 +3499,13 @@ msgstr "Alárendelt számlák" #: model:ir.actions.report.xml,name:account.account_account_balance #: model:ir.ui.menu,name:account.menu_general_Balance_report msgid "Trial Balance" -msgstr "Főkönyvi kivonat" +msgstr "Próbamérleg" #. module: account #: code:addons/account/account.py:431 #, python-format msgid "Unable to adapt the initial balance (negative value)." -msgstr "" +msgstr "Nem tudja a kezdő egyenleget alkalmazni (negatív érték)." #. module: account #: selection:account.invoice,type:0 @@ -3276,7 +3513,7 @@ msgstr "" #: model:process.process,name:account.process_process_invoiceprocess0 #: selection:report.invoice.created,type:0 msgid "Customer Invoice" -msgstr "Kimenő számla" +msgstr "Kimenő, vevői számla" #. module: account #: model:ir.model,name:account.model_account_open_closed_fiscalyear @@ -3287,7 +3524,7 @@ msgstr "Üzleti év kiválasztása" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "" +msgstr "Dátum tartomány" #. module: account #: view:account.period:0 @@ -3303,7 +3540,7 @@ msgstr "Számla pénzneme" #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "Főkönyvi számlák kimutatásai" #. module: account #: field:account.payment.term,line_ids:0 @@ -3318,7 +3555,7 @@ msgstr "Adósablon lista" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "" +msgstr "Értékesítési/Beszerzési naplók" #. module: account #: help:account.account,currency_mode:0 @@ -3329,14 +3566,18 @@ msgid "" "software system you may have to use the rate at date. Incoming transactions " "always use the rate at date." msgstr "" -"Kiválasztja, hogy a rendszer milyen árfolyamon számolja a devizás tételek " -"csökkenéseit. A növekedéseknél mindig a napi árfolyamot használja a rendszer." +"Kiválasztja, hogy a kimenő tranzakciókhoz milyen árfolyamon számolja a " +"devizás tételek csökkenéseit. A legtöbb országban a törvényes mód az " +"'Átlagolás', de ezt nagyon kevés program rendszer tudja kezelni. Ha másik " +"program rendszerből importálja akkor inkább a dátummal megadott árfolyamot " +"használja. A bejövő tranzakcióknál, növekedéseknél mindig a napi árfolyamot " +"használja a rendszer." #. module: account #: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." -msgstr "" +msgstr "Nincs fölérendelt kódja a főkönyvi számla sablonhoz." #. module: account #: help:account.chart.template,code_digits:0 @@ -3347,7 +3588,7 @@ msgstr "Számjegyek száma a főkönyvi számla számában" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "Szállítói fizetási feltétel" +msgstr "Beszállítói fizetési feltétel" #. module: account #: view:account.fiscalyear:0 @@ -3364,6 +3605,8 @@ msgstr "Mindig" msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." msgstr "" +"Összes könyvelési tulajdonság: naplók, törvényes kivonatok, számlatükrök, " +"stb." #. module: account #: view:account.analytic.line:0 @@ -3380,7 +3623,7 @@ msgstr "Leírás főkönyvi számlája" #: view:account.subscription:0 #: field:account.subscription,model_id:0 msgid "Model" -msgstr "Modell" +msgstr "Model, minta" #. module: account #: help:account.invoice.tax,base_code_id:0 @@ -3393,7 +3636,7 @@ msgstr "Az adóbevallásban szereplő adóalap." #: selection:account.entries.report,type:0 #: selection:account.financial.report,type:0 msgid "View" -msgstr "Gyűjtő" +msgstr "Nézet" #. module: account #: code:addons/account/account.py:3460 @@ -3405,37 +3648,37 @@ msgstr "BNK" #. module: account #: field:account.move.line,analytic_lines:0 msgid "Analytic lines" -msgstr "Gyűjtőkód tételek" +msgstr "Analitikai gyűjtőkód tételek" #. module: account #: view:account.invoice:0 msgid "Proforma Invoices" -msgstr "" +msgstr "Proforma számlák" #. module: account #: model:process.node,name:account.process_node_electronicfile0 msgid "Electronic File" -msgstr "Elektronikus file" +msgstr "Elektronikus fájl" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Párosítás hivatkozása" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 msgid "Company has a chart of accounts" -msgstr "" +msgstr "A vállalkozásnak van egy számlatükre" #. module: account #: model:ir.model,name:account.model_account_tax_code_template msgid "Tax Code Template" -msgstr "Adógyűjtő sablon" +msgstr "Adó kód sablon" #. module: account #: model:ir.model,name:account.model_account_partner_ledger msgid "Account Partner Ledger" -msgstr "Folyószámla karton" +msgstr "Partner folyószámla karton" #. module: account #: model:email.template,body_html:account.email_template_edi_invoice @@ -3521,11 +3764,93 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Hello ${object.partner_id.name},

\n" +"\n" +"

Egy új számlája van:

\n" +" \n" +"

\n" +"   REFERENCES
\n" +"   Invoice number: ${object.number}
\n" +"   Invoice total: ${object.amount_total} " +"${object.currency_id.name}
\n" +"   Invoice date: ${object.date_invoice}
\n" +" % if object.origin:\n" +"   Order reference: ${object.origin}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Your contact: ${object.user_id.name}\n" +" % endif\n" +"

\n" +" \n" +" % if object.paypal_url:\n" +"
\n" +"

Fizethet közvetlenül Paypal rendszern:

\n" +" \n" +" \n" +" \n" +" % endif\n" +" \n" +"
\n" +"

További felmerülő kérdésekkel kapcsolatban keressen meg " +"bennünket.

\n" +"

Köszönjük, hogy a ${object.company_id.name or 'bennünke'}-t " +"választotta!

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

\n" +" ${object.company_id.name}

\n" +"
\n" +"
\n" +" \n" +" % if object.company_id.street:\n" +" ${object.company_id.street}
\n" +" % endif\n" +" % if object.company_id.street2:\n" +" ${object.company_id.street2}
\n" +" % endif\n" +" % if object.company_id.city or object.company_id.zip:\n" +" ${object.company_id.zip} ${object.company_id.city}
\n" +" % endif\n" +" % if object.company_id.country_id:\n" +" ${object.company_id.state_id and ('%s, ' % " +"object.company_id.state_id.name) or ''} ${object.company_id.country_id.name " +"or ''}
\n" +" % endif\n" +"
\n" +" % if object.company_id.phone:\n" +"
\n" +" Phone:  ${object.company_id.phone}\n" +"
\n" +" % endif\n" +" % if object.company_id.website:\n" +"
\n" +" Web : ${object.company_id.website}\n" +"
\n" +" %endif\n" +"

\n" +"
\n" +"
\n" +" " #. module: account #: view:account.period:0 msgid "Account Period" -msgstr "" +msgstr "Főkönyvi számla időszak" #. module: account #: help:account.account,currency_id:0 @@ -3533,7 +3858,7 @@ msgstr "" #: help:account.bank.accounts.wizard,currency_id:0 msgid "Forces all moves for this account to have this secondary currency." msgstr "" -"A számla minden mozgásának ebben a másodlagos pénznemben kell végbemennie." +"A számla minden bizonylatának ebben a másodlagos pénznemben kell végbemennie." #. module: account #: model:ir.actions.act_window,help:account.action_validate_account_move_line @@ -3553,12 +3878,12 @@ msgstr "Számlatükör sablonok" #. module: account #: view:account.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Tranzakciók" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile msgid "Account Unreconcile Reconcile" -msgstr "Párosítás visszavonása" +msgstr "Visszavont párosítású számlák Párosítása" #. module: account #: help:account.account.type,close_method:0 @@ -3573,18 +3898,20 @@ msgid "" " 'Unreconciled' will copy only the journal items that were unreconciled on " "the first day of the new fiscal year." msgstr "" -"Állítsa be a módszert, amellyel az ezen típusú főkönyvi számlák nyitó " -"tételei létrehozásra kerülnek.\n" +"Állítsa be a módszert, amellyel az ezen típusú főkönyvi számlák év végi " +"napló tételei létrehozásra kerülnek.\n" "\n" -" Semmi esetében nem lesznek nyitó tételek.\n" -" Egyenlegnél az előző évi záró egyenleg lesz a nyitó tétel.\n" -" Tételes esetében az előző év minden tétele átkerül tárgyévre.\n" -" Rendezetlennél csak a párosítatlan tételek kerülnek át." +" 'Semmi' esetében nem lesznek nyitó tételek.\n" +" 'Egyenleg'-nél az előző évi záró egyenleg lesz a nyitó tétel általában a " +"készpénznél, házipénztárnál.\n" +" 'Tételes' esetében az előző év minden tétele átkerül tárgyévre, még a " +"rendezettek is.\n" +" 'Rendezetlen' csak a párosítatlan tételek kerülnek át." #. module: account #: view:account.tax.template:0 msgid "Keep empty to use the expense account" -msgstr "-" +msgstr "Hadja üressen a költség számla használatához" #. module: account #: field:account.aged.trial.balance,journal_ids:0 @@ -3652,7 +3979,7 @@ msgstr "Pénzügy-Számvitel modul beállítása" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration msgid "Account Tax Declaration" -msgstr "" +msgstr "Adó bevalási főkönyvi számla" #. module: account #: help:account.bank.statement,name:0 @@ -3672,6 +3999,8 @@ msgid "" "centralized counterpart box in the related journal from the configuration " "menu." msgstr "" +"Központosított naplón nem tud számlát létrehozni. Hagyja üresen a beállítás " +"menüben az ide vonatkozó naplóhoz tartozó központi ellenszámla négyzetet." #. module: account #: field:account.bank.statement,balance_start:0 @@ -3690,7 +4019,7 @@ msgstr "Nem adott meg partnert!" #: model:ir.actions.act_window,name:account.action_account_period_tree #: model:ir.ui.menu,name:account.menu_action_account_period_close_tree msgid "Close a Period" -msgstr "Időszak zárása" +msgstr "Egy időszak lezárása" #. module: account #: view:account.bank.statement:0 @@ -3704,11 +4033,13 @@ msgid "" "You cannot create journal items with a secondary currency without recording " "both 'currency' and 'amount currency' field." msgstr "" +"Nem tud másodlagos pénznemmel ellátott napló tételt létrehozni a 'pénznem' " +"és 'pénznem mennyiség' mező bevitele nélkül." #. module: account #: field:account.financial.report,display_detail:0 msgid "Display details" -msgstr "" +msgstr "Részletek kijelzése" #. module: account #: report:account.overdue:0 @@ -3720,7 +4051,8 @@ msgstr "ÁFA:" msgid "" "The amount expressed in the related account currency if not equal to the " "company one." -msgstr "Másodlagos pénznemben kifejezett összeg." +msgstr "" +"A vállalat pénznemétől eltérő másodlagos pénznemben kifejezett összeg." #. module: account #: help:account.config.settings,paypal_account:0 @@ -3730,6 +4062,11 @@ msgid "" "quotations with a button \"Pay with Paypal\" in automated emails or through " "the OpenERP portal." msgstr "" +"Paypal számla (email) online fizetések befogadásához (hitel kártya, stb.) Ha " +"beállított egy paypal számlát, akkor az ügyfélnek lehetősége lesz " +"kiegyenlítenie a számlákat vagy árajánlatban szerepló tételeket az e-" +"maileken lévő \"Paypal-al történő fizetés\" gombbal vagy a portálon " +"keresztül." #. module: account #: code:addons/account/account_move_line.py:536 @@ -3740,6 +4077,10 @@ msgid "" "You can create one in the menu: \n" "Configuration/Journals/Journals." msgstr "" +"Nem található egyetlen %s típusú könyvelési napló ehhez a vállalathoz.\n" +"\n" +"Létrehozhat egyet a menüből: \n" +"Beállítások/Naplók/Naplók." #. module: account #: model:ir.actions.act_window,name:account.action_account_unreconcile @@ -3763,7 +4104,7 @@ msgstr "Adókivonat" #. module: account #: view:account.journal:0 msgid "Search Account Journal" -msgstr "Napló keresése" +msgstr "Főkönyvi napló keresése" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice @@ -3774,7 +4115,7 @@ msgstr "Függő számlák" #: view:account.invoice.report:0 #: selection:account.subscription,period_type:0 msgid "year" -msgstr "Év" +msgstr "év" #. module: account #: field:account.config.settings,date_start:0 @@ -3790,6 +4131,12 @@ msgid "" "by\n" " your supplier/customer." msgstr "" +"Lehetősége lesz szerkeszteni és érvényesíteni ezt a\n" +" jóváírási értesítést közvetlenül vagy " +"hagyja tervezetként,\n" +" amíg a dokumentumot a " +"vásárlónak/beszállítótól\n" +" nem bocsájtja ki." #. module: account #: view:validate.account.move.lines:0 @@ -3797,8 +4144,8 @@ msgid "" "All selected journal entries will be validated and posted. It means you " "won't be able to modify their accounting fields anymore." msgstr "" -"Minden kiválasztott könyvelési tétel jóváhagyásra és könyvelésre kerül. " -"Ezután nem lesz módosítható a kontírozásuk." +"Minden kiválasztott könyvelési tétel jóváhagyásra és könyvelési feladásra " +"kerül. Ezután nem lesz módosítható a kontírozásuk." #. module: account #: code:addons/account/account_move_line.py:98 @@ -3807,6 +4154,8 @@ msgid "" "You have not supplied enough arguments to compute the initial balance, " "please select a period and a journal in the context." msgstr "" +"Nem adott meg elég bizonyítékot a kezdő egyenleg kiszámításához, kérem " +"válasszon időszakot és egy naplót a környezetből." #. module: account #: model:ir.actions.report.xml,name:account.account_transfers @@ -3816,7 +4165,7 @@ msgstr "Átutalások" #. module: account #: field:account.config.settings,expects_chart_of_accounts:0 msgid "This company has its own chart of accounts" -msgstr "" +msgstr "Ennek a vállalkozásnak saját számlatükre van." #. module: account #: view:account.chart:0 @@ -3832,7 +4181,7 @@ msgstr "Készpénz kifizetése" #. module: account #: report:account.vat.declaration:0 msgid "Tax Amount" -msgstr "ÁFA összege" +msgstr "Adó összege" #. module: account #: view:account.move:0 @@ -3857,6 +4206,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson egy vásárlói számla készítéséhez.\n" +"

\n" +" elektronikus számlázás lehetővé teszi a vásárlók " +"fizetéseinek \n" +" gyors és könnyű beszedését. A vásárlói e-mailen kapják \n" +" számláikat, amiket online és/vagy a rendszerükbe importálva\n" +" egyenlíthetik ki.\n" +"

\n" +" A vásárlókkal folytatott kommunikáció automatikusan\n" +" láthatóvá válik a számla alján.\n" +"

\n" +" " #. module: account #: field:account.tax.code,name:0 @@ -3879,7 +4241,7 @@ msgstr "Beállítások" #. module: account #: field:account.aged.trial.balance,period_length:0 msgid "Period Length (days)" -msgstr "" +msgstr "Időszak hossz (napok)" #. module: account #: code:addons/account/account.py:1363 @@ -3888,22 +4250,24 @@ msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" +"Nem módosíthatja ennek a naplónak a már könyvelésre feladott bejegyzését.\n" +"Először be kell állítania a naplót bejegyzések visszavonására." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal msgid "Print Sale/Purchase Journal" -msgstr "" +msgstr "Értékesítés/Beszerzés napló nyomtatás" #. module: account #: view:account.installer:0 msgid "Continue" -msgstr "" +msgstr "Folytatás" #. module: account #: view:account.invoice.report:0 #: field:account.invoice.report,categ_id:0 msgid "Category of Product" -msgstr "Termék katerógia" +msgstr "Termék katerógiája" #. module: account #: code:addons/account/account.py:930 @@ -3912,6 +4276,8 @@ msgid "" "There is no fiscal year defined for this date.\n" "Please create one from the configuration of the accounting menu." msgstr "" +"Erre a dátumra nem lett üzleti adóügyi év meghatározva.\n" +"Kérem hozzon létre egyet a könyvelési menü beállítása menüpont alatt." #. module: account #: view:account.addtmpl.wizard:0 @@ -3924,6 +4290,8 @@ msgstr "Főkönyvi számla létrehozása" #, python-format msgid "The entries to reconcile should belong to the same company." msgstr "" +"A párosításhoz szóló tételek ugyanahhoz a vállalkozáshoz kell hogy " +"tartozzanak." #. module: account #: field:account.invoice.tax,tax_amount:0 @@ -3933,7 +4301,7 @@ msgstr "Adógyűjtő összege" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "" +msgstr "Megszüntetett párosítású napló tételek" #. module: account #: selection:account.account.type,close_method:0 @@ -3944,6 +4312,7 @@ msgstr "Tételes" #: help:account.config.settings,default_purchase_tax:0 msgid "This purchase tax will be assigned by default on new products." msgstr "" +"Ez a beszerzési adó lesz alapértelmezetten hozzárendelve az új termékekhez." #. module: account #: report:account.invoice:0 @@ -3975,7 +4344,7 @@ msgstr "(Ha nem választ időszakot, minden nyitott időszakot figyelembe vesz)" #. module: account #: model:ir.model,name:account.model_account_journal_cashbox_line msgid "account.journal.cashbox.line" -msgstr "" +msgstr "account.journal.cashbox.line" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process @@ -4033,7 +4402,7 @@ msgstr "Dátum" #. module: account #: view:account.move:0 msgid "Post" -msgstr "" +msgstr "Könyvelésre küld" #. module: account #: view:account.unreconcile:0 @@ -4072,7 +4441,7 @@ msgstr "Összes" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reporting_budgets msgid "Budgets" -msgstr "Üzleti tervek" +msgstr "Költségvetési pénzügyi tervek" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -4091,13 +4460,13 @@ msgstr "Üzleti tervek" #: selection:accounting.report,filter:0 #: selection:accounting.report,filter_cmp:0 msgid "No Filters" -msgstr "Nincs szűrő" +msgstr "Nincsenek szűrők" #. module: account #: view:account.invoice.report:0 #: model:res.groups,name:account.group_proforma_invoices msgid "Pro-forma Invoices" -msgstr "" +msgstr "Pro-forma számlák" #. module: account #: view:res.partner:0 @@ -4117,7 +4486,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "Az össes beszállítói számlák ellenőrzése" #. module: account #: view:account.tax:0 @@ -4131,6 +4500,8 @@ msgid "" "When monthly periods are created. The status is 'Draft'. At the end of " "monthly period it is in 'Done' status." msgstr "" +"Ha havi időszakok létrehozva. Az állapot 'Tervezet'. A hónap végi állapot " +"'Elkészítve' lesz." #. module: account #: view:account.invoice.report:0 @@ -4152,18 +4523,18 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Search Analytic Lines" -msgstr "Gyűjtőkód tételek keresése" +msgstr "Analitikai gyűjtőkód tételek keresése" #. module: account #: field:res.partner,property_account_payable:0 msgid "Account Payable" -msgstr "Szállító számla" +msgstr "Fizetendő, beszállító számla" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:88 #, python-format msgid "The periods to generate opening entries cannot be found." -msgstr "" +msgstr "A nyitó tételek létrehozásához tartozó időszakok nem találhatóak." #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 @@ -4174,7 +4545,9 @@ msgstr "Átutalási megbízás" #: help:account.account.template,reconcile:0 msgid "" "Check this option if you want the user to reconcile entries in this account." -msgstr "Jelölje be, ha a számla tételei párosíthatóak." +msgstr "" +"Jelölje be, ha azt szeretné, hogy a felhasználó ennek a számlának a tételeit " +"párosítsa." #. module: account #: report:account.invoice:0 @@ -4185,7 +4558,7 @@ msgstr "Egységár" #. module: account #: model:ir.actions.act_window,name:account.action_account_tree1 msgid "Analytic Items" -msgstr "Gyűjtőkód tételek" +msgstr "Analitikai gyűjtőkód tételek" #. module: account #: field:analytic.entries.report,nbr:0 @@ -4205,7 +4578,7 @@ msgstr "Adógyűjtő szorzótényezője" #. module: account #: field:account.config.settings,complete_tax_set:0 msgid "Complete set of taxes" -msgstr "" +msgstr "Adók teljes csomagja" #. module: account #: field:account.account,name:0 @@ -4223,12 +4596,12 @@ msgstr "Megnevezés" #: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" -msgstr "" +msgstr "Nincs kiépítetlen vállalkozás !" #. module: account #: field:res.company,expects_chart_of_accounts:0 msgid "Expects a Chart of Accounts" -msgstr "" +msgstr "Várható számlatükör" #. module: account #: field:account.move.line,date:0 @@ -4240,28 +4613,30 @@ msgstr "Teljesítés kelte" #, python-format msgid "The journal must have default credit and debit account." msgstr "" +"A naplónak rendelkeznie kell alapértelmezett követelés és tartozás " +"számlákkal." #. module: account #: model:ir.actions.act_window,name:account.action_bank_tree #: model:ir.ui.menu,name:account.menu_action_bank_tree msgid "Setup your Bank Accounts" -msgstr "" +msgstr "Állítsa be a banki számlaszámait" #. module: account #: xsl:account.transfer:0 msgid "Partner ID" -msgstr "" +msgstr "Parner azonosító" #. module: account #: help:account.bank.statement,message_ids:0 #: help:account.invoice,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Üzenetek és kommunikáció történet" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "Gyűjtőkód tételek naplója" +msgstr "Analitikai gyűjtőkód tételek naplója" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4282,6 +4657,8 @@ msgid "" "The fiscalyear, periods or chart of account chosen have to belong to the " "same company." msgstr "" +"Az üzelti adóügyi év, periódus vagy számlatükör kiválasztása ugyanarra a " +"vállalkozásra kell, hogy vonatkozzon." #. module: account #: help:account.tax.code.template,notprintable:0 @@ -4289,13 +4666,15 @@ msgid "" "Check this box if you don't want any tax related to this tax Code to appear " "on invoices." msgstr "" +"Jelölje be ezt a négyzetet, ha nem akarja ehhez az adógyűjtőkódhoz tartozó " +"bármely adó megjelenítését." #. module: account #: code:addons/account/account_move_line.py:1058 #: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." -msgstr "" +msgstr "Nem használhat egyetlan inaktív számlát sem." #. module: account #: model:ir.actions.act_window,name:account.open_board_account @@ -4314,19 +4693,19 @@ msgstr "Könyvelés" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current year" -msgstr "" +msgstr "A jelenlegi évre vonatkozó időszakok napló bejegyzései" #. module: account #: field:account.account,child_consol_ids:0 msgid "Consolidated Children" -msgstr "Konszolidált számlák" +msgstr "Konszolidált alszámlák" #. module: account #: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Nincs elegendő adat!" #. module: account #: help:account.account,unrealized_gain_loss:0 @@ -4334,6 +4713,8 @@ msgid "" "Value of Loss or Gain due to changes in exchange rate when doing multi-" "currency transactions." msgstr "" +"A veszteség vagy nyereség értékének változása az árfolyam változás miatt, ha " +"több pénznemben történik a tranzakció." #. module: account #: view:account.analytic.line:0 @@ -4371,7 +4752,7 @@ msgstr "Ismétlődő tételek" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "Megjelenítendő partnerek" +msgstr "Parnerek megjelenítése" #. module: account #: view:account.invoice:0 @@ -4386,7 +4767,7 @@ msgstr "Eszközök" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "" +msgstr "Könyvelés és pénzügy" #. module: account #: view:account.invoice.confirm:0 @@ -4403,7 +4784,7 @@ msgstr "Átlagárfolyam" #: field:account.common.account.report,display_account:0 #: field:account.report.general.ledger,display_account:0 msgid "Display Accounts" -msgstr "" +msgstr "Főkönyvi számlák kijelzése" #. module: account #: view:account.state.open:0 @@ -4414,7 +4795,7 @@ msgstr "" #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "Számla adó tartalmának analitikus könyvelése" #. module: account #: field:account.chart,period_from:0 @@ -4444,7 +4825,7 @@ msgstr "30 nap, hó vége" #: model:ir.actions.act_window,name:account.action_account_analytic_balance #: model:ir.actions.report.xml,name:account.account_analytic_account_balance msgid "Analytic Balance" -msgstr "Gyűjtőkód kivonat" +msgstr "Analitikus gyűjtőkód számlaegyenleg" #. module: account #: help:res.partner,property_payment_term:0 @@ -4452,6 +4833,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Ezt a fizetési feltételt használja az alapértelmezett helyett a vásárlói " +"megrendeléseken és az értékesítési számlákon." #. module: account #: view:account.config.settings:0 @@ -4459,23 +4842,26 @@ msgid "" "If you put \"%(year)s\" in the prefix, it will be replaced by the current " "year." msgstr "" +"Ha \"%(év)ek\" használ előtagként, akkor azt kiváltja az aktuális év." #. module: account #: help:account.account,active:0 msgid "" "If the active field is set to False, it will allow you to hide the account " "without removing it." -msgstr "Ha az aktív mező nincs bejelölve, nem használható a főkönyvi számla." +msgstr "" +"Ha az aktív mező hamisra állított, akkor eltüntetheti a főkönyvi számlát " +"annak törlése nélkül." #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "" +msgstr "Könyvelésre feladott napló tételek" #. module: account #: field:account.move.line,blocked:0 msgid "No Follow-up" -msgstr "" +msgstr "Nincs nyomon követés" #. module: account #: view:account.tax.template:0 @@ -4485,7 +4871,7 @@ msgstr "Adósablonok keresése" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation msgid "Draft Entries" -msgstr "Könyveletlen tételek" +msgstr "Könyveletlen (Tervezet) tételek" #. module: account #: help:account.config.settings,decimal_precision:0 @@ -4494,12 +4880,15 @@ msgid "" "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." msgstr "" +"Példaként, a kétjegyű (2) decimális pontosság lehetővé teszi az ilyen napló " +"tételeket: 9.99 EUR, ugyanakkor a négyjegyű (4) decimális pontosság lehetővé " +"teszi az ilyen napló tételeket: 0.0231 EUR." #. module: account #: field:account.account,shortcut:0 #: field:account.account.template,shortcut:0 msgid "Shortcut" -msgstr "Gyorsmenü" +msgstr "Gyorsbillentyű parancs" #. module: account #: view:account.account:0 @@ -4532,6 +4921,7 @@ msgstr "A kiválasztott számlák érvénytelenítése" #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" +"Egy analitikai gyűjtőkód naplót kell hozzárendelni ezen a '%s' naplón!" #. module: account #: model:process.transition,note:account.process_transition_supplieranalyticcost0 @@ -4539,8 +4929,9 @@ msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft supplier invoices." msgstr "" -"A költségek a gyűjtőkódokból származnak. Ezek állítják elő a tervezet " -"állapotú bejövő számlákat." +"Analitikus költségek (időkimutatásokból, egyes beszerzett termékből, ..) " +"származnak. Ezek állítják elő a tervezet állapotú bejövő beszállítói " +"számlákat." #. module: account #: model:ir.actions.act_window,help:account.action_bank_tree @@ -4557,6 +4948,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új bankszámlaszám beállításához. \n" +"

\n" +" Állítsa be a vállalkozása bank számláit és válassza ki azokat\n" +" melyeknek meg kell jelennie a lábjegyzetben.\n" +"

\n" +" Ha használja a könyvelési modult részt, naplók és főkönyvi\n" +" számlák automatikusan lesznek létrehozva az itt megadott \n" +" adatok alapján.\n" +"

\n" +" " #. module: account #: constraint:account.tax.code.template:0 @@ -4564,6 +4966,8 @@ msgid "" "Error!\n" "You cannot create recursive Tax Codes." msgstr "" +"Hiba!\n" +"Nem hozhat létre visszatérő adógyűjtőkódokat." #. module: account #: constraint:account.period:0 @@ -4571,6 +4975,8 @@ msgid "" "Error!\n" "The duration of the Period(s) is/are invalid." msgstr "" +"Hiba!\n" +"Az időszak(ok) időtartama nem értelmezhető." #. module: account #: field:account.entries.report,month:0 @@ -4588,11 +4994,12 @@ msgstr "Hónap" #, python-format msgid "You cannot change the code of account which contains journal items!" msgstr "" +"Napló tételt tartalmazó főkönyvi számla kódját nem tudja megváltoztatni." #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "" +msgstr "Beszállítói számlák sorrendje" #. module: account #: code:addons/account/account_invoice.py:610 @@ -4602,18 +5009,20 @@ msgid "" "Cannot find a chart of account, you should create one from Settings\\" "Configuration\\Accounting menu." msgstr "" +"Nem talál egy számlatükröt, létre kell hoznia egyet a Beállítások\\" +"Beállítás\\Könyvelés menüből." #. module: account #: field:account.entries.report,product_uom_id:0 #: view:analytic.entries.report:0 #: field:analytic.entries.report,product_uom_id:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Termék mértékegysége" #. module: account #: field:res.company,paypal_account:0 msgid "Paypal Account" -msgstr "" +msgstr "Paypal számla" #. module: account #: view:account.entries.report:0 @@ -4623,7 +5032,7 @@ msgstr "Számlatípus" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Bank és csekkek" #. module: account #: field:account.account.template,note:0 @@ -4633,14 +5042,14 @@ msgstr "Megjegyzés" #. module: account #: selection:account.financial.report,sign:0 msgid "Reverse balance sign" -msgstr "" +msgstr "Elentétes oldalú számla egyenleg előjele" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:191 #, python-format msgid "Balance Sheet (Liability account)" -msgstr "" +msgstr "Számlaegyenleg lap (Felelősség számla)" #. module: account #: help:account.invoice,date_invoice:0 @@ -4663,12 +5072,13 @@ msgstr "Adóalapgyűjtő kód" #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." -msgstr "" +msgstr "Meg kell határozni egy leírás/átváltási árfolyam különbség számlát." #. module: account #: help:res.company,paypal_account:0 msgid "Paypal username (usually email) for receiving online payments." msgstr "" +"Paypal felhasználónév (általában email) az online összegek fogadásához." #. module: account #: selection:account.aged.trial.balance,target_move:0 @@ -4690,7 +5100,7 @@ msgstr "" #: code:addons/account/report/common_report_header.py:68 #, python-format msgid "All Posted Entries" -msgstr "Minden könyvelt tétel" +msgstr "Minden könyvelésre feladott tétel" #. module: account #: field:report.aged.receivable,name:0 @@ -4705,19 +5115,19 @@ msgstr "Jelölje be, ha a 0 egyenlegű számlákat is meg akarja jeleníteni!" #. module: account #: field:account.move.reconcile,opening_reconciliation:0 msgid "Opening Entries Reconciliation" -msgstr "" +msgstr "Nyitó egyenlegek párosítása" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_reconciliation.xml:24 #, python-format msgid "Last Reconciliation:" -msgstr "" +msgstr "Utolsó párosítás:" #. module: account #: selection:account.move.line,state:0 msgid "Balanced" -msgstr "" +msgstr "Számlaegyenlegesítve" #. module: account #: model:process.node,note:account.process_node_importinvoice0 @@ -4731,11 +5141,13 @@ msgid "" "There is currently no company without chart of account. The wizard will " "therefore not be executed." msgstr "" +"Nincs számlatükörrel nem rendelkező vállalat.. Ezért a varázsló nem fog " +"elindulni." #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart msgid "Set Your Accounting Options" -msgstr "" +msgstr "Főkönyvi szála lehetőségeinek beállítása" #. module: account #: model:ir.model,name:account.model_account_chart @@ -4750,7 +5162,7 @@ msgstr "Átutalási hivatkozás" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Main Title 1 (bold, underlined)" -msgstr "" +msgstr "Fó cím 1 (kövér, aláhúzott)" #. module: account #: report:account.analytic.account.balance:0 @@ -4771,7 +5183,7 @@ msgstr "Számlastatisztika" #. module: account #: field:account.account,exchange_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Árfolyam" #. module: account #: model:process.transition,note:account.process_transition_paymentorderreconcilation0 @@ -4798,7 +5210,7 @@ msgstr "Záró egyenleg" #. module: account #: field:account.chart.template,visible:0 msgid "Can be Visible?" -msgstr "" +msgstr "Lehet látható?" #. module: account #: model:ir.model,name:account.model_account_journal_select @@ -4814,27 +5226,27 @@ msgstr "Jóváíró számlák" #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "" +msgstr "Párosítani kívánt napló tételek" #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "Templates for Taxes" -msgstr "" +msgstr "Sablonok adókhoz" #. module: account #: sql_constraint:account.period:0 msgid "The name of the period must be unique per company!" -msgstr "" +msgstr "Az időszakok neveinek vállalkozásonként egyéninek kell lenniük!" #. module: account #: help:wizard.multi.charts.accounts,currency_id:0 msgid "Currency as per company's country." -msgstr "" +msgstr "Pénznem a vállalat országának megfelelően." #. module: account #: view:account.tax:0 msgid "Tax Computation" -msgstr "" +msgstr "Adó kiszámítás" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4849,6 +5261,9 @@ msgid "" "you want to generate accounts of this template only when loading its child " "template." msgstr "" +"Állítsa az értékét hamisra, ha nem akarja a sablont aktívan a számlatükör " +"varázsló sablonjai között használni, akkor hasznos, ha az al-sablonok " +"betöltése után szeretne ebből a sablonból számlatükröt létrehozni." #. module: account #: view:account.use.model:0 @@ -4867,6 +5282,9 @@ msgid "" "Error!\n" "You cannot create an account which has parent account of different company." msgstr "" +"Hiba!\n" +"Nem hozhat létre más vállalkozásnál fölérendelt számlával rendelkező " +"főkönyvi számlát." #. module: account #: code:addons/account/account_invoice.py:658 @@ -4877,6 +5295,10 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" +"Nem talál ilyen %s típusú főkönyvi számlát ehhez a vállalkozáshoz.\n" +"\n" +"Létre tud hozni egyet a menüből: \n" +"Beállítások\\Naplók\\Naplók." #. module: account #: report:account.vat.declaration:0 @@ -4892,7 +5314,7 @@ msgstr "ECNJ" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger_journal_report msgid "Account Analytic Cost Ledger For Journal Report" -msgstr "Gyűjtőkód karton" +msgstr "Gyűjtőszámla karton az analitikus költség naplóhoz" #. module: account #: model:ir.actions.act_window,name:account.action_model_form @@ -4902,7 +5324,7 @@ msgstr "Ismétlődő modellek" #. module: account #: view:account.tax:0 msgid "Children/Sub Taxes" -msgstr "" +msgstr "Alsóbbrendű/Alárendelt adók" #. module: account #: xsl:account.transfer:0 @@ -4922,7 +5344,7 @@ msgstr "Követel összegek alapértelmezett főkönyvi számlája" #. module: account #: view:cash.box.out:0 msgid "Describe why you take money from the cash register:" -msgstr "" +msgstr "Írja le miért vesz ki pénzt a pénz rögzítőből:" #. module: account #: selection:account.invoice,state:0 @@ -4934,12 +5356,12 @@ msgstr "Érvénytelenített" #. module: account #: help:account.config.settings,group_proforma_invoices:0 msgid "Allows you to put invoices in pro-forma state." -msgstr "" +msgstr "Lehetővé teszi a számlák pro-forma, díjbekérő állapotba tételét." #. module: account #: view:account.journal:0 msgid "Unit Of Currency Definition" -msgstr "" +msgstr "A pénznem egységének meghatározása" #. module: account #: help:account.partner.ledger,amount_currency:0 @@ -4948,12 +5370,14 @@ msgid "" "It adds the currency column on report if the currency differs from the " "company currency." msgstr "" +"Ez hozzáadja a pénznem oszlopot a beszámolóban, ha a vállalkozás pénznemétől " +"eltérő a pénznem." #. module: account #: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" -msgstr "" +msgstr "Beszerzési adó %.2f%%" #. module: account #: view:account.subscription.generate:0 @@ -4987,7 +5411,7 @@ msgstr "Érvénytelenített számla" #. module: account #: view:account.invoice:0 msgid "My Invoices" -msgstr "" +msgstr "Számláim" #. module: account #: selection:account.bank.statement,state:0 @@ -4997,7 +5421,7 @@ msgstr "Új" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Sale Tax" -msgstr "" +msgstr "Értékesítési adó" #. module: account #: field:account.tax,ref_tax_code_id:0 @@ -5022,12 +5446,15 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" +"Ha létre lett hozva a napló időtartam. Az állapota 'Tervezet' lesz. Ha a " +"kimutatás ki lett nyomtatva akkor annak állapota 'Kinyomtatva' lesz. Ha " +"minden tranzakció el lett végezve akkor 'Elkészített' állapotú lesz." #. module: account #: code:addons/account/account.py:3205 #, python-format msgid "MISC" -msgstr "" +msgstr "Különb." #. module: account #: field:account.fiscalyear.close,fy2_id:0 @@ -5050,7 +5477,7 @@ msgstr "Számlák" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 msgid "Check this box if this company is a legal entity." -msgstr "" +msgstr "Jelölje be a négyzetet, ha a vállalat egy jogi személy." #. module: account #: model:account.account.type,name:account.conf_account_type_chk @@ -5096,7 +5523,7 @@ msgstr "Csekk" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: account #: view:account.invoice.report:0 @@ -5106,7 +5533,7 @@ msgstr "Számlázott" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "" +msgstr "Könyvelésre feladott napló tételek" #. module: account #: view:account.use.model:0 @@ -5120,6 +5547,9 @@ msgid "" "account if this is a Customer Invoice or Supplier Refund, otherwise a " "Partner bank account number." msgstr "" +"Bank számla szám melyre a számla ki lesz egyenlítve. Kimenő vásárlói számla " +"vagy beszerzési jóváírás esetén a vállalkozás bankszámlája, egyéb esetben az " +"üzleti partner bank számla száma." #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 @@ -5146,12 +5576,12 @@ msgstr "Rendezett" #. module: account #: field:account.invoice,tax_line:0 msgid "Tax Lines" -msgstr "ÁFA összesítő" +msgstr "Adó összesítő" #. module: account #: help:account.move.line,statement_id:0 msgid "The bank statement used for bank reconciliation" -msgstr "A bank egyeztetéshez használt bankkivonat." +msgstr "A bank egyeztetéshez használt bankkivonat" #. module: account #: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 @@ -5164,22 +5594,24 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "invoices. Leave empty to use the expense account." msgstr "" +"Főkönyvi számla beállítása a számlák adó tételeinek alapértelmezett " +"használatához. Hagyja üresen a költség kiadási számla használatához." #. module: account #: code:addons/account/account.py:890 #, python-format msgid "Opening Period" -msgstr "" +msgstr "Nyitó időszak" #. module: account #: view:account.move:0 msgid "Journal Entries to Review" -msgstr "" +msgstr "Fellülvizsgálandó napló tételek" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round Globally" -msgstr "" +msgstr "Globális kerekítés" #. module: account #: view:account.bank.statement:0 @@ -5199,6 +5631,8 @@ msgid "" "Please verify the price of the invoice !\n" "The encoded total does not match the computed total." msgstr "" +"Kérem a számlában lévő árak ellenőrzését !\n" +"A beírt teljes összeg nem egyezik a kiszámított összeggel." #. module: account #: field:account.account,active:0 @@ -5228,12 +5662,12 @@ msgstr "Időszak vége" #. module: account #: model:process.node,note:account.process_node_supplierpaymentorder0 msgid "Payment of invoices" -msgstr "Számlák átutalása" +msgstr "Számlák kiegyenlítése" #. module: account #: sql_constraint:account.invoice:0 msgid "Invoice Number must be unique per Company!" -msgstr "" +msgstr "Egyéni számlaszámnak kell lennie mindegyik válallathoz!" #. module: account #: model:ir.actions.act_window,name:account.action_account_receivable_graph @@ -5244,12 +5678,12 @@ msgstr "Számlatípusonkénti egyenleg" #: code:addons/account/account_cash_statement.py:301 #, python-format msgid "There is no %s Account on the journal %s." -msgstr "" +msgstr "Nincs %s főkönyvi számla ehhez a naplóhoz %s." #. module: account #: model:res.groups,name:account.group_account_user msgid "Accountant" -msgstr "" +msgstr "Könyvelő" #. module: account #: model:ir.actions.act_window,help:account.action_account_treasury_report_all @@ -5257,16 +5691,19 @@ msgid "" "From this view, have an analysis of your treasury. It sums the balance of " "every accounting entries made on liquidity accounts per period." msgstr "" +"Erről a nézetről, van egy kimutatás a pénzeszközeire vonatkozólag. Ez " +"összegzi időszakonként a likviditási számlán bejegyzett tételek " +"számlaegyenlegét." #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "" +msgstr "Pénzügyi irányító" #. module: account #: field:account.journal,group_invoice_lines:0 msgid "Group Invoice Lines" -msgstr "Számlasorok összevonása" +msgstr "Számlatételek összevonása" #. module: account #: view:account.automatic.reconcile:0 @@ -5276,13 +5713,13 @@ msgstr "Zárás" #. module: account #: field:account.bank.statement.line,move_ids:0 msgid "Moves" -msgstr "Tételek" +msgstr "Bizonylatok" #. module: account #: field:account.bank.statement,details_ids:0 #: view:account.journal:0 msgid "CashBox Lines" -msgstr "" +msgstr "Pénzkazetta tételek" #. module: account #: model:ir.model,name:account.model_account_vat_declaration @@ -5295,6 +5732,8 @@ msgid "" "If you do not check this box, you will be able to do invoicing & payments, " "but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"Ha nem jelöli be ezt a négyzetet, akkor lehetősége lesz számlázni & " +"kifizetni, de nem tud könyvelni (Napló bejegyzéseket, számlatükröt, ...)" #. module: account #: view:account.period:0 @@ -5304,7 +5743,7 @@ msgstr "Lezárandó" #. module: account #: field:account.treasury.report,date:0 msgid "Beginning of Period Date" -msgstr "" +msgstr "Az időszak kezdeti dátuma" #. module: account #: model:ir.ui.menu,name:account.account_template_folder @@ -5314,7 +5753,7 @@ msgstr "Sablonok" #. module: account #: field:account.invoice.tax,name:0 msgid "Tax Description" -msgstr "Adótípus" +msgstr "Adó leírása" #. module: account #: field:account.tax,child_ids:0 @@ -5327,12 +5766,13 @@ msgstr "Alárendelt adószámlák" msgid "" "Check this if the price you use on the product and invoices includes this " "tax." -msgstr "Jelölje be, ha az ár tartalmazza az ÁFÁ-t." +msgstr "" +"Jelölje be, ha a termékeken és a számlákon az ár tartalmazza az adót." #. module: account #: report:account.analytic.account.balance:0 msgid "Analytic Balance -" -msgstr "Gyűjtőkód kivonat -" +msgstr "Analitikus gyűjtőkód számlaegyenleg -" #. module: account #: report:account.account.balance:0 @@ -5362,7 +5802,7 @@ msgstr "Gyűjtőkód kivonat -" #: field:account.vat.declaration,target_move:0 #: field:accounting.report,target_move:0 msgid "Target Moves" -msgstr "Figyelembe vett tételek" +msgstr "Figyelembe vett bizonylat tételek" #. module: account #: code:addons/account/account.py:1454 @@ -5370,12 +5810,14 @@ msgstr "Figyelembe vett tételek" msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" msgstr "" +"Ha a bizonylet van rendelve egy számlához, akkor az nem törölhető. (Számla: " +"%s - Bizonylat azonosító ID:%s)" #. module: account #: view:account.bank.statement:0 #: help:account.cashbox.line,number_opening:0 msgid "Opening Unit Numbers" -msgstr "Nyitó darabszám" +msgstr "Nyitó egységnyi darabszám" #. module: account #: field:account.subscription,period_type:0 @@ -5414,13 +5856,17 @@ msgid "" "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" msgstr "" +"Ez a boolean művelet segítséget nyújt annak kiválasztásában, hogy javasol " +"az értékesítési és beszerzési értékek kódolásában vagy az adó listából " +"válassza ki azokat. Ez utóbbit választása feltételezi, hogy a sablonban " +"teljes körűen meghatározott az adó." #. module: account #: view:account.financial.report:0 #: field:account.financial.report,children_ids:0 #: model:ir.model,name:account.model_account_financial_report msgid "Account Report" -msgstr "" +msgstr "Folyószámlajelentés" #. module: account #: field:account.entries.report,year:0 @@ -5438,7 +5884,7 @@ msgstr "Év" #. module: account #: help:account.invoice,sent:0 msgid "It indicates that the invoice has been sent." -msgstr "" +msgstr "Ez jelzi, hogy a számlát már elküldték." #. module: account #: field:account.tax.template,description:0 @@ -5453,16 +5899,19 @@ msgid "" "Put a sequence in the journal definition for automatic numbering or create a " "sequence manually for this piece." msgstr "" +"Nem hozható létre automatikus sorrend ehhez a darabhoz.\n" +"Rakjon sorrendet a napló meghatározásánál az automatikus számozáshoz vagy " +"hozzon létre kézi sorrendet ehhez a darabhoz." #. module: account #: view:account.invoice:0 msgid "Pro Forma Invoice " -msgstr "" +msgstr "Pro Forma számla " #. module: account #: selection:account.subscription,period_type:0 msgid "month" -msgstr "Hónap" +msgstr "hónap" #. module: account #: view:account.move.line:0 @@ -5481,19 +5930,19 @@ msgstr "Adószámla" #: model:ir.actions.act_window,name:account.action_account_report_bs #: model:ir.ui.menu,name:account.menu_account_report_bs msgid "Balance Sheet" -msgstr "Mérleg" +msgstr "Egyenleg kimutatatás" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "" +msgstr "Nyereség & Veszteség (Jövedelem bevételi számla)" #. module: account #: field:account.journal,allow_date:0 msgid "Check Date in Period" -msgstr "" +msgstr "Ellenőrizze a dátumot az időszakban" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports @@ -5523,6 +5972,7 @@ msgstr "Számítási kód (ha a típus = Python kód)" msgid "" "Cannot find a chart of accounts for this company, you should create one." msgstr "" +"Nem található a vállalatra vonatkozó számlatükör, Létre kell hoznia egyet." #. module: account #: selection:account.analytic.journal,type:0 @@ -5564,7 +6014,7 @@ msgstr "Összeg" #: code:addons/account/wizard/account_fiscalyear_close.py:41 #, python-format msgid "End of Fiscal Year Entry" -msgstr "Záró/nyitó tétel" +msgstr "Üzleti év záró tétel" #. module: account #: model:process.transition,name:account.process_transition_customerinvoice0 @@ -5583,6 +6033,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 "" +"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: account #: field:account.tax,child_depend:0 @@ -5600,6 +6052,12 @@ msgid "" "entry was reconciled, either the user pressed the button \"Fully " "Reconciled\" in the manual reconciliation process" msgstr "" +"A partner főkönyvi számla tételeinek legutóbbi összesítő párosításának " +"dátuma. Ha eltér ennek a partnernek a legutóbbi párosítási dátumától, azzal " +"itt leírjuk azt a tényt, hogy most nincs mit párosítani. Ez kétféleképpen " +"teljesülhet: vagy az utolsó tartozás/követelés lett párosítva, vagy a " +"felhasználó megnyomta a \"Összesítő párosítás\" gombot a kézi párosítás " +"műveletek elindításához" #. module: account #: field:account.journal,update_posted:0 @@ -5614,14 +6072,14 @@ msgid "" "payment term!\n" "Please define partner on it!" msgstr "" -"\"A(z) '%s' modellsor által előállított tételsor esedékességének dátuma a " +"A(z) '%s' modellsor által előállított tételsor esedékességének dátuma a " "partner fizetési feltételétől függ!\n" "Kérem, adja meg a partnert!\"" #. module: account #: field:account.tax.code,sign:0 msgid "Coefficent for parent" -msgstr "Összegzésnél használt előjel" +msgstr "Fölérendeltekhez használt előjel" #. module: account #: report:account.partner.balance:0 @@ -5631,12 +6089,12 @@ msgstr "(Számla/partner) név" #. module: account #: field:account.partner.reconcile.process,progress:0 msgid "Progress" -msgstr "Haladás" +msgstr "Fejlődés" #. module: account #: field:wizard.multi.charts.accounts,bank_accounts_id:0 msgid "Cash and Banks" -msgstr "" +msgstr "Készpénz pénztár és bankok" #. module: account #: model:ir.model,name:account.model_account_installer @@ -5646,13 +6104,13 @@ msgstr "account.installer" #. module: account #: view:account.invoice:0 msgid "Recompute taxes and total" -msgstr "" +msgstr "Számítsa újra az adókat és összegzéseket" #. module: account #: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." -msgstr "" +msgstr "Nem módosíthatja/törölheti ennek az időszaknak a napló bejegyzéseit." #. module: account #: field:account.tax.template,include_base_amount:0 @@ -5662,7 +6120,7 @@ msgstr "Adóalap tartalmazza az adót" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "Szállítói számlaszám" +msgstr "Beszállítói számlaszám" #. module: account #: help:account.payment.term.line,days:0 @@ -5670,9 +6128,9 @@ msgid "" "Number of days to add before computation of the day of month.If Date=15/01, " "Number of Days=22, Day of Month=-1, then the due date is 28/02." msgstr "" -"Napok száma, amely hozzáadódik a mai dátumhoz. Ezután számolja a rendszer a " -"hónap napját. Pl. ha a dátum 01.15., a napok száma 22 és a hónap napja -1, " -"akkor a fizetési határidő 02.28. lesz." +"Napok száma, amely hozzáadódik a mai dátumhoz. Ez alapján számolja a " +"rendszer a hónap napját. Pl. ha a dátum 01.15., a napok száma 22 és a hónap " +"napja -1, akkor a fizetési határidő 02.28. lesz." #. module: account #: view:account.payment.term.line:0 @@ -5683,7 +6141,7 @@ msgstr "Összeg kiszámítása" #: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." -msgstr "" +msgstr "A %s napló, %s lezárt időszak tételeit nem tudja növelni/módosítani." #. module: account #: view:account.journal:0 @@ -5694,7 +6152,7 @@ msgstr "Tétel ellenőrzések" #: view:account.analytic.chart:0 #: view:project.account.analytic.line:0 msgid "(Keep empty to open the current situation)" -msgstr "(Hagyja üresen, hogy az aktuális állapotot nyissa meg)" +msgstr "(Hagyja üresen, az aktuális állapotot megynyitásához)" #. module: account #: field:account.analytic.balance,date1:0 @@ -5708,7 +6166,7 @@ msgstr "Időszak kezdete" #. module: account #: model:account.account.type,name:account.account_type_asset_view1 msgid "Asset View" -msgstr "" +msgstr "Eszközök nézete" #. module: account #: model:ir.model,name:account.model_account_common_account_report @@ -5741,24 +6199,27 @@ msgid "" "that you should have your last line with the type 'Balance' to ensure that " "the whole amount will be treated." msgstr "" +"Válassza ki itt ehhez a fizetési tételhez vonatkozó értékelés típust. " +"Figyeljen oda, hogy az utolsó tételnek 'Egyenleg' típusnak kell lennie " +"ahhoz, hogy a teljes összegen el legyen végezve." #. module: account #: field:account.partner.ledger,initial_balance:0 #: field:account.report.general.ledger,initial_balance:0 msgid "Include Initial Balances" -msgstr "" +msgstr "Kezdeti számlaegyenlegeket beleértve" #. module: account #: view:account.invoice.tax:0 msgid "Tax Codes" -msgstr "Adógyűjtők" +msgstr "Adógyűjtőkódok" #. module: account #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 #: selection:report.invoice.created,type:0 msgid "Customer Refund" -msgstr "Kimenő jóváíró számla" +msgstr "Kimenő, vásárlói jóváíró számla" #. module: account #: field:account.tax,ref_tax_sign:0 @@ -5776,23 +6237,23 @@ msgstr "Kimutatás az elmúlt 15 napban készített számlákról" #. module: account #: field:account.fiscalyear,end_journal_period_id:0 msgid "End of Year Entries Journal" -msgstr "Záró/nyitó napló" +msgstr "Üzeit évet záró napló tételek" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "Visszetérítés tervezet " #. module: account #: view:cash.box.in:0 msgid "Fill in this form if you put money in the cash register:" -msgstr "" +msgstr "Töltse ki ezt az űrlapot, ha pénzt tett a pénztár rögzítőbe:" #. module: account #: view:account.payment.term.line:0 #: field:account.payment.term.line,value_amount:0 msgid "Amount To Pay" -msgstr "" +msgstr "Fizetendő összeg" #. module: account #: help:account.partner.reconcile.process,to_reconcile:0 @@ -5802,7 +6263,7 @@ msgid "" "as reconciled." msgstr "" "A hátralévő partnerek száma, akiket ellenőrizni kell, hogy van-e párosítandó " -"tételük." +"tételük. Ez az aktuális partnert már párosítottként tekinti." #. module: account #: view:account.subscription.line:0 @@ -5845,19 +6306,19 @@ msgstr "Kifizetés dátuma" #: view:account.bank.statement:0 #: field:account.bank.statement,opening_details_ids:0 msgid "Opening Cashbox Lines" -msgstr "" +msgstr "Pénzkazetta nyitó tételek" #. module: account #: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account.action_account_analytic_account_form #: model:ir.ui.menu,name:account.account_analytic_def_account msgid "Analytic Accounts" -msgstr "Gyűjtőkódok" +msgstr "Analitikus gyűjtőkódok" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "" +msgstr "Ügyfél számlák és visszatérítések" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -5870,7 +6331,7 @@ msgstr "Devizaösszeg" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round per Line" -msgstr "" +msgstr "Tételenkénti kerekítés" #. module: account #: report:account.analytic.account.balance:0 @@ -5890,12 +6351,12 @@ msgstr "Mennyiség" #. module: account #: view:account.move.line:0 msgid "Number (Move)" -msgstr "Bizonylat száma" +msgstr "Bizonylat száma (Mozgás)" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Normal Text" -msgstr "" +msgstr "Normál szöveg" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 @@ -5908,30 +6369,34 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Ezt a fizetési feltétel használja az alapértelmezett helyett a beszerzési " +"megrendelésekhez és vásárlói számlákhoz" #. module: account #: help:account.automatic.reconcile,power:0 msgid "" "Number of partial amounts that can be combined to find a balance point can " "be chosen as the power of the automatic reconciliation" -msgstr "Maximálisan párosítható tételek száma" +msgstr "" +"Részenkénti kombinációs párosítások száma egy mint az automatikus párosítás " +"max. tételszámhoz használt számlaegyenleg pont megtalálásához." #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:56 #, python-format msgid "You must set a period length greater than 0." -msgstr "" +msgstr "Nullánál hoszabb időszakot kell használnia." #. module: account #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 msgid "Fiscal Position Template" -msgstr "ÁFA pozíció sablon" +msgstr "Költségvetési ÁFA pozíció sablon" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Visszetérítés tervezet" #. module: account #: view:account.analytic.chart:0 @@ -5958,7 +6423,7 @@ msgstr "Pénzkazetta nyitása" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Automatic formatting" -msgstr "" +msgstr "Automatikus formázás" #. module: account #: view:account.move.line.reconcile:0 @@ -5969,6 +6434,7 @@ msgstr "Párosítás különbözet leírásával" #: constraint:account.move.line:0 msgid "You cannot create journal items on an account of type view." msgstr "" +"Típus nézetben nem tud nepló tételeket létrehozni. Váltson másik nézetbe." #. module: account #: selection:account.payment.term.line,value:0 @@ -5981,17 +6447,19 @@ msgstr "Fix összeg" #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" +"Nem tudja megváltoztatni az adót, el kell távolítania és létre kell hoznia " +"tételeket." #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile msgid "Account Automatic Reconcile" -msgstr "Automatikus párosítás" +msgstr "Számla automatikus párosítása" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "Könyvelési tételsor" +msgstr "Könyvelési napló tételsor" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close @@ -6007,7 +6475,7 @@ msgstr "Az adóösszeg kiszámítási módszere." #. module: account #: view:account.payment.term.line:0 msgid "Due Date Computation" -msgstr "" +msgstr "Esedékesség dátumának kiszámítása" #. module: account #: field:report.invoice.created,create_date:0 @@ -6020,18 +6488,18 @@ msgstr "Létrehozás dátuma" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_form #: model:ir.ui.menu,name:account.account_def_analytic_journal msgid "Analytic Journals" -msgstr "Gyűjtőnaplók" +msgstr "Analitikus gyűjtőnaplók" #. module: account #: field:account.account,child_id:0 msgid "Child Accounts" -msgstr "Alárendelt számlák" +msgstr "Alárendelt főkönyvi számlák" #. module: account #: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" -msgstr "" +msgstr "Bizonlyat neve (Azonosító id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 @@ -6043,18 +6511,18 @@ msgstr "Különbözet leírása" #. module: account #: view:account.entries.report:0 msgid "entries" -msgstr "" +msgstr "bevitt tételek" #. module: account #: field:res.partner,debit:0 msgid "Total Payable" -msgstr "Összes szállítói tartozás" +msgstr "Fizetendő tartozás összesen" #. module: account #: model:account.account.type,name:account.data_account_type_income #: model:account.financial.report,name:account.account_financial_report_income0 msgid "Income" -msgstr "" +msgstr "Bevétel" #. module: account #: selection:account.bank.statement.line,type:0 @@ -6096,7 +6564,7 @@ msgstr "Szabad hivatkozás" #: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" -msgstr "Vevő és szállító számlák" +msgstr "Vásárlói és beszállítói számlák" #. module: account #: field:account.fiscal.position.account.template,position_id:0 @@ -6106,24 +6574,24 @@ msgstr "ÁFA pozíció leképezés" #. module: account #: view:account.config.settings:0 msgid "Select Company" -msgstr "" +msgstr "Vállalat kiválasztás" #. module: account #: model:ir.actions.act_window,name:account.action_account_state_open #: model:ir.model,name:account.model_account_state_open msgid "Account State Open" -msgstr "Nyitott állapot" +msgstr "Nyitott állapotú számla" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Max Qty:" -msgstr "Max menny:" +msgstr "Max menny.:" #. module: account #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.action_account_invoice_refund msgid "Refund Invoice" -msgstr "Jóváíró számla" +msgstr "Jóváíró visszatérítés számla" #. module: account #: model:ir.actions.act_window,help:account.action_account_entries_report_all @@ -6132,9 +6600,9 @@ msgid "" "document shows your debit and credit taking in consideration some criteria " "you can choose by using the search tool." msgstr "" -"Ez a menüpont elemzést nyújt a főkönyvi számlákon könyvelt tételekről. A " -"kereső eszköz használatával különböző kritériumokat határozhat meg a " -"lekérdezéshez." +"Ez a menüpont elemzést nyújt a különböző főkönyvi számlákon könyvelt " +"tételekről. A kereső eszköz használatával különböző kritériumokat határozhat " +"meg a lekérdezéshez, melyek tájékoztatják a tartozásairól és követeléseiről." #. module: account #: help:account.partner.reconcile.process,progress:0 @@ -6152,7 +6620,7 @@ msgstr "" #: field:report.account.sales,period_id:0 #: field:report.account_type.sales,period_id:0 msgid "Force Period" -msgstr "Időszak" +msgstr "Időszak kényszerítése" #. module: account #: model:ir.actions.act_window,help:account.action_account_form @@ -6171,12 +6639,27 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson egy főkönyvi számla hozzáadásához.\n" +"

\n" +" Egy számla a főkönyvi karton része amire a vállalkozása\n" +" be tud jegyezni bármilyen tartozás és követelés " +"tranzakciót.\n" +" Vállalatok két fő részletben mutatják be az éves " +"könyvelésüket: \n" +" a számla egyenlegen és a bevételi kimutatáson (nyereség és " +"veszteség\n" +" számla). A vállalkozás éves elszámolásához a törvény szerint " +"be kell\n" +" mutatni számos informácót.\n" +"

\n" +" " #. module: account #: view:account.invoice.report:0 #: field:account.invoice.report,nbr:0 msgid "# of Lines" -msgstr "Sorok száma" +msgstr "# sorok száma" #. module: account #: view:account.invoice:0 @@ -6206,7 +6689,7 @@ msgstr "Szűrés" #: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" -msgstr "" +msgstr "Rossz kifejezés \"%(...)s\" van a modelljében !" #. module: account #: view:account.tax.template:0 @@ -6217,11 +6700,12 @@ msgstr "Számítási kód (ha az ár tartalmazza az adót)" #: help:account.bank.statement,balance_end:0 msgid "Balance as calculated based on Starting Balance and transaction lines" msgstr "" +"Számlaegyenleg a kezdeti egyenleg és a tranzakciós tételek alapján számítva" #. module: account #: field:account.journal,loss_account_id:0 msgid "Loss Account" -msgstr "" +msgstr "Veszteség számla" #. module: account #: field:account.tax,account_collected_id:0 @@ -6244,6 +6728,11 @@ msgid "" "created by the system on document validation (invoices, bank statements...) " "and will be created in 'Posted' status." msgstr "" +"Összes kézzel létrehozott napló tétel 'Könyveletlen' állapotú, de " +"választhatja lehetőségként ennek az állapotnak az átugrását az ide vonatkozó " +"naplón. Ebben az esetben, úgy viselkedik mint a rendszer által automatikusan " +"létrehozott napló tétel a dokumentum érvényesítésekor (számlák, bank " +"kivonatok...) mint 'Könyvelt' állapotú tétel." #. module: account #: field:account.payment.term.line,days:0 @@ -6257,11 +6746,13 @@ msgid "" "You cannot validate this journal entry because account \"%s\" does not " "belong to chart of accounts \"%s\"." msgstr "" +"Nem érvényesítheti ezt a napló tételt mert a \"%s\" számlája nem tartozik a " +"\"%s\" szálatükörhöz." #. module: account #: view:account.financial.report:0 msgid "Report" -msgstr "" +msgstr "Kimutatás" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template @@ -6290,12 +6781,12 @@ msgstr "Semmi" #: model:ir.actions.act_window,name:account.action_invoice_tree3 #: model:ir.ui.menu,name:account.menu_action_invoice_tree3 msgid "Customer Refunds" -msgstr "Kimenő jóváíró számlák" +msgstr "Kimenő, vásárlói jóváíró számlák" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "" +msgstr "Idegen számlaegyenleg" #. module: account #: field:account.journal.period,name:0 @@ -6315,12 +6806,12 @@ msgstr "A naplóhoz kapcsolt vállalat" #. module: account #: help:account.config.settings,group_multi_currency:0 msgid "Allows you multi currency environment" -msgstr "" +msgstr "Több pénznemes környezetet tesz elérhetővé" #. module: account #: view:account.subscription:0 msgid "Running Subscription" -msgstr "" +msgstr "Jegyzés futtatás" #. module: account #: report:account.invoice:0 @@ -6332,7 +6823,7 @@ msgstr "ÁFA pozíció megjegyzés :" #: model:ir.actions.act_window,name:account.action_analytic_entries_report #: model:ir.ui.menu,name:account.menu_action_analytic_entries_report msgid "Analytic Entries Analysis" -msgstr "Gyűjtőkód tételek elemzése" +msgstr "Analitikus gyűjtőkód tételek elemzése" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 @@ -6345,11 +6836,13 @@ msgid "" "This journal will be created automatically for this bank account when you " "save the record" msgstr "" +"Ez a napló automatikusa létre lesz hozva ehhez a bankszámlához, egy tétel " +"rögzítésekor" #. module: account #: view:account.analytic.line:0 msgid "Analytic Entry" -msgstr "Gyűjtőkód tétel" +msgstr "Analitikus gyűjtőkód bevitel" #. module: account #: view:res.company:0 @@ -6373,8 +6866,8 @@ msgid "" "As soon as the reconciliation is done, the invoice's state turns to “done” " "(i.e. paid) in the system." msgstr "" -"Amint a párosítás elkészül, a számla állapota rendezettre változik a " -"rendszerben." +"Amint a párosítás elkészül, a számla állapota 'Rendezettre' (u.m. fizetve) " +"változik a rendszerben." #. module: account #: view:account.chart.template:0 @@ -6391,12 +6884,12 @@ msgstr "Legutolsó párosítás dátuma" #: view:account.analytic.line:0 #: model:ir.model,name:account.model_account_analytic_line msgid "Analytic Line" -msgstr "Gyűjtőkód tétel" +msgstr "Analitikus gyűjtőkód tételsor" #. module: account #: model:ir.ui.menu,name:account.menu_action_model_form msgid "Models" -msgstr "" +msgstr "Modellek" #. module: account #: code:addons/account/account_invoice.py:1124 @@ -6405,11 +6898,13 @@ msgid "" "You cannot cancel an invoice which is partially paid. You need to " "unreconcile related payment entries first." msgstr "" +"Nem vonhat vissza részben kiegyenlített számlát. Először párosítatlanná kell " +"tennie az ide vonatkozó fizetéseket." #. module: account #: field:product.template,taxes_id:0 msgid "Customer Taxes" -msgstr "Értékesítést terhelő adók" +msgstr "Vásárlói értékesítést terhelő adók" #. module: account #: help:account.model,name:0 @@ -6419,7 +6914,7 @@ msgstr "Ismétlődő könyvelési tételek kezelésére szolgáló modell" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 msgid "Sales Tax(%)" -msgstr "" +msgstr "Értékesítési adó(%)" #. module: account #: view:account.tax.code:0 @@ -6439,6 +6934,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson a beszállítótól visszakapott jóváíró visszatérítés " +"bejegyzéséhez.\n" +"

\n" +" Beszállítói visszatérítés kézi bevitele helyett, " +"létrehozhatja a \n" +" visszatérítéseket és közvetlenül párosíthatja az ide " +"vonatkozó beszerzési\n" +" beszállítói számlálkkal.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -6461,6 +6967,10 @@ msgid "" "choice assumes that the set of tax defined for the chosen template is " "complete" msgstr "" +"Ez a boolean művelet segítséget nyújt annak kiválasztásában, hogy javasol " +"az értékesítési és beszerzési értékek kódolásában vagy az általános m2o " +"mezőt választja. Ez utóbbit választása feltételezi, hogy a sablonban teljes " +"körűen meghatározott az adó." #. module: account #: report:account.vat.declaration:0 @@ -6475,17 +6985,17 @@ msgstr "Vállalatok" #. module: account #: view:account.invoice.report:0 msgid "Open and Paid Invoices" -msgstr "" +msgstr "Kiegyenlítetlen és kiegyenlített stzámlák" #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children flat" -msgstr "" +msgstr "Alszintek mutatása" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "" +msgstr "Bank & Készpénz pénztár" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 @@ -6555,7 +7065,7 @@ msgstr "Tételek részleges párosítása" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Cancel" -msgstr "Mégse" +msgstr "Mégsem" #. module: account #: selection:account.account,type:0 @@ -6563,18 +7073,19 @@ msgstr "Mégse" #: model:account.account.type,name:account.data_account_type_receivable #: selection:account.entries.report,type:0 msgid "Receivable" -msgstr "Vevő" +msgstr "Kintlévőség" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on closed account." -msgstr "" +msgstr "Lezárt számlákon nem hozhat létre napló tételeket." #. module: account #: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" +"A számlatulajdonos vállalkozása és a számla tétel vállalkozása nem egyezik." #. module: account #: view:account.invoice:0 @@ -6595,7 +7106,7 @@ msgstr "Pénznem, ha nem egyezik a vállalat pénznemével." #: code:addons/account/installer.py:69 #, python-format msgid "Custom" -msgstr "" +msgstr "Egyéni" #. module: account #: view:account.analytic.account:0 @@ -6611,18 +7122,18 @@ msgstr "Pénzkazetta" #: model:account.account.type,name:account.account_type_cash_equity #: model:account.account.type,name:account.conf_account_type_equity msgid "Equity" -msgstr "" +msgstr "Saját tőke" #. module: account #: field:account.journal,internal_account_id:0 msgid "Internal Transfers Account" -msgstr "" +msgstr "Belső mozgások számlája" #. module: account #: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" -msgstr "" +msgstr "Kérem ellenőrizze, a 'Napló' beállítását a banki kivonaton" #. module: account #: selection:account.tax,type:0 @@ -6632,7 +7143,7 @@ msgstr "Százalék" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round globally" -msgstr "" +msgstr "Kerekítés globálisan" #. module: account #: selection:account.report.general.ledger,sortby:0 @@ -6648,12 +7159,12 @@ msgstr "Max. tételszám" #: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." -msgstr "" +msgstr "Nem tud létrehozni egy nem használt napló kódót." #. module: account #: view:project.account.analytic.line:0 msgid "View Account Analytic Lines" -msgstr "Gyűjtő számla gyűjtőkód tételei" +msgstr "Analitikus gyűjtő számla gyűjtőkód tételei" #. module: account #: field:account.invoice,internal_number:0 @@ -6664,7 +7175,7 @@ msgstr "Számla belső sorszáma" #. module: account #: field:account.bank.statement,difference:0 msgid "Difference" -msgstr "" +msgstr "Különbség" #. module: account #: help:account.tax,include_base_amount:0 @@ -6684,7 +7195,7 @@ msgstr "Párosítás: A következő partnerre lép" #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance #: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance msgid "Inverted Analytic Balance" -msgstr "Fordított gyűjtőkód kivonat" +msgstr "Fordított analitikus gyűjtőkód számlaegyenleg" #. module: account #: field:account.tax.template,applicable_type:0 @@ -6700,6 +7211,13 @@ msgid "" "due date, make sure that the payment term is not set on the invoice. If you " "keep the payment term and the due date empty, it means direct payment." msgstr "" +"Ha fizetési feltételeket használ, a fizetési határidő számítása " +"automatikusan lesz kiszámítva a könyvelési tételek létrehozásakor. A " +"fizetési feltételhez több határidő számítás is lehet, például 50% azonnal és " +"50% egy hónapra, de ha kényszeríteni szeretne egy lejárati dátumot, akkor " +"győződjön meg róla, hogy nincs beállítva fizetési határidő a számlára. Ha a " +"fizetési határidő és a lejárati dátumot üresen hagyja az azonnali fizetést " +"jelent." #. module: account #: code:addons/account/account.py:414 @@ -6708,6 +7226,8 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" +"Nincs nyitó/záró időszakasz meghatározva, kérem hozzon létre egyet a kezdeti " +"számlaegyenleg beállításához." #. module: account #: help:account.tax.template,sequence:0 @@ -6716,7 +7236,7 @@ msgid "" "higher ones. The order is important if you have a tax that has several tax " "children. In this case, the evaluation order is important." msgstr "" -"A sorszám mező szolgál az adósorok sorba rendezésére az alacsonyabb " +"A sorrend mező szolgál az adósorok sorba rendezésére az alacsonyabb " "sorszámútól a magasabbig. A sorrend fontos a több alárendelt adóval " "rendelkező adók esetében. Ebben az esetben az értékelési sorrend lényeges." @@ -6735,12 +7255,12 @@ msgstr "" #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "User Error!" -msgstr "" +msgstr "Felhasználói hiba!" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "Eldobás" #. module: account #: selection:account.account,type:0 @@ -6753,12 +7273,12 @@ msgstr "Likviditási" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form #: model:ir.ui.menu,name:account.account_analytic_journal_entries msgid "Analytic Journal Items" -msgstr "Gyűjtőkód tételek" +msgstr "Analitikus gyűjtőkód tételek" #. module: account #: field:account.config.settings,has_default_company:0 msgid "Has default company" -msgstr "" +msgstr "Van alapértelmezett vállakozás" #. module: account #: view:account.fiscalyear.close:0 @@ -6767,14 +7287,14 @@ msgid "" "year. Note that you can run this wizard many times for the same fiscal year: " "it will simply replace the old opening entries with the new ones." msgstr "" -"Ez a varázsló előállítja az üzleti év nyitó tételeit. Többször is lehet " -"futtatni ugyanarra az évre: a régi egyenlegeket egyszerűen felülírja az " -"újakkal." +"Ez a varázsló előállítja az üzleti évet záró napló tételeket a kiválasztott " +"üzleti évre vonatkozólag. Többször is lehet futtatni ugyanarra az üzleti " +"évre: a régi nyitó egyenlegeket egyszerűen felülírja az újakkal." #. module: account #: model:ir.ui.menu,name:account.menu_finance_bank_and_cash msgid "Bank and Cash" -msgstr "Bank és pénztár" +msgstr "Bank és készpénz pénztár" #. module: account #: model:ir.actions.act_window,help:account.action_analytic_entries_report @@ -6785,12 +7305,13 @@ msgid "" "the system." msgstr "" "Ez a kimutatás elemzést nyújt az üzleti szempontok alapján létrehozott " -"gyűjtőkódokon könyvelt tételekről. Használja a kereső eszközt az elemzéshez." +"analitikai könyvelt tételekről. Használja a kereső eszközt a rendszer által " +"létrehozott analitikus tételek elemzéséhez." #. module: account #: sql_constraint:account.journal:0 msgid "The name of the journal must be unique per company !" -msgstr "A napló nevének egyedinek kell lennie!" +msgstr "A napló nevének egyedinek kell lennie mindegyik vállalatra!" #. module: account #: field:account.account.template,nocreate:0 @@ -6804,6 +7325,8 @@ msgid "" "You cannot change the owner company of an account that already contains " "journal items." msgstr "" +"Nem változtathatja meg a már naplót tartalmazó főkönyvi számla tulajdonos " +"vállalkozását." #. module: account #: report:account.invoice:0 @@ -6813,7 +7336,7 @@ msgstr "" #: selection:report.invoice.created,type:0 #, python-format msgid "Supplier Refund" -msgstr "Bejövő jóváíró számla" +msgstr "Bejövő beszállítói jóváíró számla" #. module: account #: field:account.bank.statement,move_line_ids:0 @@ -6846,7 +7369,7 @@ msgstr "Központosítás" #: view:account.tax.code.template:0 #: view:analytic.entries.report:0 msgid "Group By..." -msgstr "Csoportosítás" +msgstr "Csoportosítás ezzel..." #. module: account #: code:addons/account/account.py:1024 @@ -6855,6 +7378,8 @@ msgid "" "There is no period defined for this date: %s.\n" "Please create one." msgstr "" +"Nincs meghatározva időszak erre a dátumra: %s.\n" +"Kérem hozzon létre egyet." #. module: account #: field:account.analytic.line,product_uom_id:0 @@ -6869,13 +7394,13 @@ msgid "" "If this box is checked, the system will try to group the accounting lines " "when generating them from invoices." msgstr "" -"Ha bejelölt, akkor a rendszer megpróbálja összevonni a kontírozási sorokat a " -"számla könyvelésének generálásakor." +"Ha bejelölt, akkor a rendszer megpróbálja összevonni a kontírozási számla " +"tételeket a számla könyvelésének generálásakor." #. module: account #: field:account.installer,has_default_company:0 msgid "Has Default Company" -msgstr "" +msgstr "Van alapértelmezett vállalat" #. module: account #: model:ir.model,name:account.model_account_sequence_fiscalyear @@ -6892,7 +7417,7 @@ msgstr "account.sequence.fiscalyear" #: model:ir.model,name:account.model_account_analytic_journal #: model:ir.ui.menu,name:account.account_analytic_journal_print msgid "Analytic Journal" -msgstr "Gyűjtőnapló" +msgstr "Analitikus gyűjtőnapló" #. module: account #: view:account.entries.report:0 @@ -6905,6 +7430,8 @@ msgid "" "Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " "2%." msgstr "" +"A fizetési feltétel sorának a százalékos értéke 0 és 1 közötti legyen, " +"Példa: 0.02 érték jelentése: 2%." #. module: account #: report:account.invoice:0 @@ -6925,7 +7452,7 @@ msgstr "Beszerzés főkönyvi számla" #. module: account #: sql_constraint:account.tax:0 msgid "Tax Name must be unique per company!" -msgstr "" +msgstr "Adó nemének egyedinek kell lennie vállalkozásonként!" #. module: account #: view:account.bank.statement:0 @@ -6938,6 +7465,9 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disabled" msgstr "" +"Ha kiveszi a tranzakciókat a párosításból, akkor azokat a műveleteket is " +"ellenőriznie kell, melyek ezekkel össze voltak kötve, mivel azok nem lesznek " +"kiiktatva" #. module: account #: view:account.account.template:0 @@ -6952,7 +7482,7 @@ msgstr "Megjegyzések" #. module: account #: model:ir.model,name:account.model_analytic_entries_report msgid "Analytic Entries Statistics" -msgstr "Gyűjtőkód tétel statisztika" +msgstr "Analitikus gyűjtőkód tétel statisztika" #. module: account #: code:addons/account/account_analytic_line.py:142 @@ -6964,7 +7494,7 @@ msgstr "Tételek: " #. module: account #: help:res.partner.bank,currency_id:0 msgid "Currency of the related account journal." -msgstr "" +msgstr "Az ide vonatkozó napló pénzneme." #. module: account #: constraint:account.move.line:0 @@ -6972,6 +7502,8 @@ msgid "" "You cannot provide a secondary currency if it is the same than the company " "one." msgstr "" +"Nem adhatja meg a már vállalkozásként használt pénznemet mint másodlagos " +"pénznem." #. module: account #: selection:account.tax.template,applicable_type:0 @@ -6983,7 +7515,7 @@ msgstr "Igaz" #: code:addons/account/account.py:190 #, python-format msgid "Balance Sheet (Asset account)" -msgstr "" +msgstr "Számlaegyenleg kivonat (Eszköz számla)" #. module: account #: model:process.node,note:account.process_node_draftstatement0 @@ -6998,7 +7530,7 @@ msgstr "Tartozik összesen" #. module: account #: view:account.move.line:0 msgid "Next Partner Entries to reconcile" -msgstr "" +msgstr "Következő párosítandó partner tételek" #. module: account #: report:account.invoice:0 @@ -7028,7 +7560,7 @@ msgstr "Python kód" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current period" -msgstr "" +msgstr "A jelenlegi időszakban lévő időszakokkal rendelkező napló tételek" #. module: account #: help:account.journal,update_posted:0 @@ -7054,7 +7586,7 @@ msgstr "Tétel létrehozása" #: code:addons/account/account.py:189 #, python-format msgid "Profit & Loss (Expense account)" -msgstr "" +msgstr "Nyereség & Veszteség (Költség, kiadási számla)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 @@ -7065,7 +7597,7 @@ msgstr "Összesített forgalom" #: code:addons/account/account.py:636 #, python-format msgid "You cannot remove an account that contains journal items." -msgstr "" +msgstr "Napló bejegyzéssel rendelkező számlát nem tud eltávolítani." #. module: account #: code:addons/account/account.py:1024 @@ -7077,12 +7609,12 @@ msgstr "Hiba!" #. module: account #: field:account.financial.report,style_overwrite:0 msgid "Financial Report Style" -msgstr "" +msgstr "Pénzügyi beszámoló stílus" #. module: account #: selection:account.financial.report,sign:0 msgid "Preserve balance sign" -msgstr "" +msgstr "Számla egyenleg jelölést megtartani" #. module: account #: view:account.vat.declaration:0 @@ -7109,13 +7641,13 @@ msgstr "Kézi" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "Elvetés: visszatérítés létrehozás és párosítás" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "You must set a start date." -msgstr "" +msgstr "Induló dátumot kell beállítania." #. module: account #: view:account.automatic.reconcile:0 @@ -7145,6 +7677,9 @@ msgid "" "row to display the amount of debit/credit/balance that precedes the filter " "you've set." msgstr "" +"Ha kiválasztott a dátum vagy időszak szerinti szűrést, akkor ez a mező " +"lehetővé teszi egy oszlop hozzáadását a tartozás/követelés/egyenleg " +"összegeinek kijelzéséhez a szűrő feltételeinek megfelelően." #. module: account #: view:account.bank.statement:0 @@ -7159,12 +7694,12 @@ msgstr "Könyvelési tételek" #: code:addons/account/wizard/account_invoice_refund.py:147 #, python-format msgid "No period found on the invoice." -msgstr "" +msgstr "A számlán nem található időszak." #. module: account #: help:account.partner.ledger,page_split:0 msgid "Display Ledger Report with One partner per page" -msgstr "Egy oldalon csak egy partner jelenik meg a kimutatásban" +msgstr "Egy oldalon csak egy partner jelejen meg a kimutatásban" #. module: account #: report:account.general.ledger:0 @@ -7199,12 +7734,13 @@ msgstr "Igen" #: code:addons/account/report/common_report_header.py:67 #, python-format msgid "All Entries" -msgstr "Minden tétel" +msgstr "Minden bejegyzés" #. module: account #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." msgstr "" +"Csak ugyanahoz a partnerhez tartozó napló tételeket tudja párosítani." #. module: account #: view:account.journal.select:0 @@ -7222,7 +7758,7 @@ msgstr "Nyitó egyenleg" #. module: account #: model:ir.model,name:account.model_account_move_reconcile msgid "Account Reconciliation" -msgstr "Párosítás" +msgstr "Számla párosítás" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax @@ -7250,14 +7786,14 @@ 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 "" -"Jelölje be, ha bizonytalan a tétel kontírozásában. Ennek hatására " -"ellenőrizendőként jelölődik meg." +"Jelölje be, ha bizonytalan a napló tétel kontírozásában. Ennek hatására " +"könyvelő szekértő által 'ellenőrizendő'-ként jelölődik meg." #. module: account #: field:account.chart.template,complete_tax_set:0 #: field:wizard.multi.charts.accounts,complete_tax_set:0 msgid "Complete Set of Taxes" -msgstr "" +msgstr "Adók teljes csomagja" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:61 @@ -7265,11 +7801,13 @@ msgstr "" msgid "" "Selected Entry Lines does not have any account move enties in draft state." msgstr "" +"Válassza ki azokat a bejegyzés tételeket, melyeknek nincs tervezet állapotú " +"számla bizonlyat bejegyzése." #. module: account #: view:account.chart.template:0 msgid "Properties" -msgstr "Beállítások" +msgstr "Tulajdonságok" #. module: account #: model:ir.model,name:account.model_account_tax_chart @@ -7294,6 +7832,8 @@ msgid "" "Configuration error!\n" "The currency chosen should be shared by the default accounts too." msgstr "" +"Beállítási hiba!\n" +"A kiválasztott pénznemet meg kell osztani az alapértelmezett számlával is." #. module: account #: code:addons/account/account.py:2304 @@ -7315,22 +7855,22 @@ msgstr "" "%(month)s: hónap meghatározása \n" "%(date)s: aktuális dátum\n" "\n" -"pl. %(date)s-i modell" +"pl. %(date)s-i modellem" #. module: account #: field:account.invoice,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "Paypal Url - elérési út" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "Ügyfelek fizetéseinek beállítása" #. module: account #: help:report.invoice.created,origin:0 msgid "Reference of the document that generated this invoice report." -msgstr "Bizonylat, amely előállította ezt a számlát." +msgstr "Bizonylat, amely előállította ezt a számla kimutatást." #. module: account #: field:account.tax.code,child_ids:0 @@ -7344,22 +7884,24 @@ msgid "" "Error!\n" "The start date of a fiscal year must precede its end date." msgstr "" +"Hiba!\n" +"Az üzleti adóügyi év elejének előbb kell lennie mint a végének." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Sales" -msgstr "" +msgstr "Értékesítésekkor használt adók" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 msgid "Customer Invoices" -msgstr "Kimenő számlák" +msgstr "Vásárlói, kimenő számlák" #. module: account #: view:account.tax:0 msgid "Misc" -msgstr "" +msgstr "Egyéb" #. module: account #: view:account.analytic.line:0 @@ -7372,7 +7914,7 @@ msgstr "Értékesítés" #: selection:account.subscription,state:0 #: selection:report.invoice.created,state:0 msgid "Done" -msgstr "Kész" +msgstr "Elvégezve" #. module: account #: code:addons/account/account.py:1319 @@ -7382,13 +7924,15 @@ msgid "" "Make sure you have configured payment terms properly.\n" "The latest payment term line should be of the \"Balance\" type." msgstr "" +"Nem hagyhat jóvá egy számlaegyenleg nélküli bejegyzést.\n" +"Győződjön meg a fizetési feltétel pontos megadásáról.\n" +"Az utolsó fizetés feltételének \"Egyenleg\" típusúnak kell lennie." #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 msgid "A statement with manual entries becomes a draft statement." msgstr "" -"A kézzel berögzített tételekből álló kivonat lesz a tervezet állapotú " -"kivonat." +"A kézzel berögzített tételekből álló kivonat, tervezet állapotú kivonat lesz." #. module: account #: view:account.aged.trial.balance:0 @@ -7412,12 +7956,14 @@ msgstr "" #: field:account.invoice.line,origin:0 #: field:report.invoice.created,origin:0 msgid "Source Document" -msgstr "Forrásbizonylat" +msgstr "Forrás dokumentum" #. module: account #: help:account.config.settings,company_footer:0 msgid "Bank accounts as printed in the footer of each printed document" msgstr "" +"Bank számlák, melyek mindegyik nyomtatott dokumentum lábjegyzetében " +"szerepelni fognak" #. module: account #: constraint:account.account:0 @@ -7426,16 +7972,19 @@ msgid "" "You cannot define children to an account with internal type different of " "\"View\"." msgstr "" +"Beállítási hiba!\n" +"Nem határozhat meg al-számákat egy \"Nézet\"-től eltérő belső típusú " +"számlához." #. module: account #: model:ir.model,name:account.model_accounting_report msgid "Accounting Report" -msgstr "" +msgstr "Könyvelési kimutatás" #. module: account #: field:account.analytic.line,currency_id:0 msgid "Account Currency" -msgstr "" +msgstr "Főkönyvi számla pénzneme" #. module: account #: report:account.invoice:0 @@ -7449,6 +7998,7 @@ msgid "" "You can not delete an invoice which is not cancelled. You should refund it " "instead." msgstr "" +"Nem tud olyan számlát törölni ami nincs visszavonva. Inkább térítse vissza." #. module: account #: help:account.tax,amount:0 @@ -7458,7 +8008,7 @@ msgstr "Százalék típusú adókra a %-ot 0-1 közötti számként adja meg." #. module: account #: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy msgid "Financial Reports Hierarchy" -msgstr "" +msgstr "Pénzügyi kimutatások sorrendje" #. module: account #: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation @@ -7469,13 +8019,13 @@ msgstr "Havi forgalom" #: view:account.move:0 #: view:account.move.line:0 msgid "Analytic Lines" -msgstr "Gyűjtőkód tételek" +msgstr "Analitikus gyűjtőkód tételek" #. module: account #: field:account.analytic.journal,line_ids:0 #: field:account.tax.code,line_ids:0 msgid "Lines" -msgstr "Sorok" +msgstr "Tételsorok" #. module: account #: view:account.tax.template:0 @@ -7495,17 +8045,17 @@ msgstr "Biztos benne, hogy meg akarja nyitni ezt a számlát?" #. module: account #: field:account.chart.template,property_account_expense_opening:0 msgid "Opening Entries Expense Account" -msgstr "" +msgstr "Kiadási költség számla nyitó tételei" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "Vevői hivatkozás" +msgstr "Vásárlói hivatkozás" #. module: account #: field:account.account.template,parent_id:0 msgid "Parent Account Template" -msgstr "Gyűjtő főkönyvi számla sablon" +msgstr "Felérendelt gyűjtő főkönyvi számla sablon" #. module: account #: report:account.invoice:0 @@ -7516,7 +8066,7 @@ msgstr "Ár" #: view:account.bank.statement:0 #: field:account.bank.statement,closing_details_ids:0 msgid "Closing Cashbox Lines" -msgstr "" +msgstr "Pénzkazetta tételeinek lezárása" #. module: account #: view:account.bank.statement:0 @@ -7534,12 +8084,12 @@ msgstr "Tartozik összegek alapértelmezett főkönyvi számlája" #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "" +msgstr "Könyvelésre feladott bejegyzések" #. module: account #: help:account.payment.term.line,value_amount:0 msgid "For percent enter a ratio between 0-1." -msgstr "" +msgstr "A százalékhoz adjon meg egy 0-1 közti arányszám értéket." #. module: account #: report:account.invoice:0 @@ -7552,12 +8102,12 @@ msgstr "Számla kelte" #. module: account #: view:account.invoice.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "Számla kibocsátási éve szerinti csoportosítás" #. module: account #: field:account.config.settings,purchase_tax_rate:0 msgid "Purchase tax (%)" -msgstr "" +msgstr "Beszerzési adó (%)" #. module: account #: help:res.partner,credit:0 @@ -7567,12 +8117,12 @@ msgstr "A vevő összes tartozása a vállalat felé." #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "" +msgstr "Kiegyenlítetlen napló tételek" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules msgid "Chart Templates" -msgstr "" +msgstr "Számlatükör sabonok" #. module: account #: field:account.journal.period,icon:0 @@ -7608,22 +8158,22 @@ msgstr "Zárás dátuma" #. module: account #: model:ir.model,name:account.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "Bankkivonat sor" +msgstr "Bankkivonat tételsor" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 msgid "Default Purchase Tax" -msgstr "Alapértelmezett előzetesen felszámított ÁFA" +msgstr "Alapértelmezett előzetesen felszámított beszerzési adó" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "" +msgstr "Bevételi számla nyitó tételei" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "" +msgstr "Pro-forma számlák engedélyezése" #. module: account #: view:account.bank.statement:0 @@ -7659,12 +8209,12 @@ msgstr "Tételek létrehozása" #. module: account #: model:ir.model,name:account.model_cash_box_out msgid "cash.box.out" -msgstr "" +msgstr "cash.box.out" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "" +msgstr "A vállalkozás fő pénzneme." #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports @@ -7682,18 +8232,18 @@ msgstr "Figyelem" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open msgid "Contracts/Analytic Accounts" -msgstr "" +msgstr "Kapcsolatok/Analitikus könyvelések" #. module: account #: view:account.journal:0 #: field:res.partner.bank,journal_id:0 msgid "Account Journal" -msgstr "Napló" +msgstr "Számla napló" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 msgid "Tax calculation rounding method" -msgstr "" +msgstr "Adó számítás kerekítési mód" #. module: account #: model:process.node,name:account.process_node_paidinvoice0 @@ -7710,6 +8260,11 @@ msgid "" " with the invoice. You will not be able " "to modify the credit note." msgstr "" +"Ezt a lehetőséget használja olyan számla visszavonásához, melyet még nem \n" +" kellett volna kiadnia. Egy jóváírás lesz " +"létrehozva, érvényesítve és párosítva\n" +" a számlával. Nem lesz lehetősége a " +"jóváíró módosítására." #. module: account #: help:account.partner.reconcile.process,next_partner_id:0 @@ -7744,18 +8299,20 @@ msgid "" "There is no default credit account defined \n" "on journal \"%s\"." msgstr "" +"Nincs alapértelmezett követelés számla meghatározva a \n" +"következő naplón \"%s\"." #. module: account #: view:account.invoice.line:0 #: field:account.invoice.tax,invoice_id:0 #: model:ir.model,name:account.model_account_invoice_line msgid "Invoice Line" -msgstr "Számlasor" +msgstr "Számla tételsor" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "Vásárlói és Beszállítói visszatérítések" #. module: account #: field:account.financial.report,sign:0 @@ -7782,30 +8339,47 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új analitikus könyvelés létrehozásához.\n" +"

\n" +" A rendes számlatükör felépítése meghatározott az ország\n" +" törvényi követelményeinek megfelelően. Az analitikus\n" +" számlatükör felépítése az üzletmenetének igényeit kell\n" +" tükröznie a költség/hozam kimutatásokban kifejezve.\n" +"

\n" +" Ezek általában szerkezetileg a szerződésekből, projektekből, " +"\n" +" termékekből, vagy szakaszaiból álltak. A legtöbb OpenERP " +"művelet\n" +" (számlák, időkimutatások, költségek, stb.) hoznak létre " +"analitikus tartalmakat,\n" +" tételeket az ide vonatkozó számlán.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_view msgid "Root/View" -msgstr "" +msgstr "Gyökér/Nézet" #. module: account #: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" -msgstr "" +msgstr "OPEJ" #. module: account #: report:account.invoice:0 #: view:account.invoice:0 msgid "PRO-FORMA" -msgstr "Pro forma" +msgstr "PRO-FORMA" #. module: account #: selection:account.entries.report,move_line_state:0 #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "Nem egyező" +msgstr "Kiegyenlítetlen" #. module: account #: selection:account.move.line,centralisation:0 @@ -7816,7 +8390,7 @@ msgstr "Normál" #: model:ir.actions.act_window,name:account.action_email_templates #: model:ir.ui.menu,name:account.menu_email_templates msgid "Email Templates" -msgstr "" +msgstr "E-mail sablonok" #. module: account #: view:account.move.line:0 @@ -7844,29 +8418,29 @@ msgid "" "This field is used for payable and receivable journal entries. You can put " "the limit date for the payment of this line." msgstr "" -"Vevő és szállító tételeknél használt mező. Meg lehet adni a tételsor " +"Vásárló és beszállító tételeknél használt mező. Meg lehet adni a tételsor " "fizetési határidejét." #. module: account #: model:ir.ui.menu,name:account.menu_multi_currency msgid "Multi-Currencies" -msgstr "" +msgstr "Több pénznem" #. module: account #: field:account.model.line,date_maturity:0 msgid "Maturity Date" -msgstr "" +msgstr "Esedékesség kelte" #. module: account #: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" -msgstr "Kimenő számla napló" +msgstr "Kimenő, vásárlói számla napló" #. module: account #: model:ir.model,name:account.model_account_invoice_tax msgid "Invoice Tax" -msgstr "Adó" +msgstr "Számla adó" #. module: account #: code:addons/account/account_move_line.py:1185 @@ -7878,7 +8452,7 @@ msgstr "Nem adott meg darabszámot!" #: view:account.financial.report:0 #: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy msgid "Account Reports Hierarchy" -msgstr "" +msgstr "Számla kimutatások rangsor" #. module: account #: help:account.account.template,chart_template_id:0 @@ -7889,11 +8463,16 @@ msgid "" "few new accounts (You don't need to define the whole structure that is " "common to both several times)." msgstr "" +"Ez a lehetőség mező lehetővé teszi egy számla sablon hozzáillesztését egy " +"jellegzetes számlatükör sablonhoz, mely különbözhet az eredeti gyökér " +"fölérendeltektől, amihez tartozik. Ez lehetővé teszi olyan számlatükör " +"meghatározását mely másikat kibővít és kiegészíti egy pár új számlával (Nem " +"kell többször a mindegyikre jellemző teljes felépítést újra meghatároznia)." #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "" +msgstr "Nem párosított napló bejegyzések" #. module: account #: help:account.invoice.refund,date:0 @@ -7901,6 +8480,8 @@ msgid "" "This date will be used as the invoice date for credit note and period will " "be chosen accordingly!" msgstr "" +"Ez a dátum lesz használva mint számla dátum a jóváíráshoz és az időszak is " +"eszerint lesz választva!" #. module: account #: view:product.template:0 @@ -7914,6 +8495,8 @@ msgid "" "You have to set a code for the bank account defined on the selected chart of " "accounts." msgstr "" +"Be kell állítana egy kódot a kiválasztott számlatükrökön meghatározott " +"bankszámlához." #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile @@ -7936,7 +8519,7 @@ msgstr "Záró dátum" #: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" -msgstr "" +msgstr "Pénznem igazítás" #. module: account #: field:account.fiscalyear.close,fy_id:0 @@ -7954,6 +8537,8 @@ msgstr "Kiválasztott számlák érvénytelenítése" msgid "" "This field is used to generate legal reports: profit and loss, balance sheet." msgstr "" +"Ez a mező törvényes jelentések készítésére való: nyereség és veszteség, " +"egyenleg közlő." #. module: account #: selection:account.entries.report,month:0 @@ -7981,17 +8566,17 @@ msgstr "Számlatükör sablonok" msgid "" "The sequence field is used to order the resources from lower sequences to " "higher ones." -msgstr "" +msgstr "A sorrend mezőt használja az alsóbb rendűtől a felsőbb rendűig." #. module: account #: field:account.move.line,amount_residual_currency:0 msgid "Residual Amount in Currency" -msgstr "" +msgstr "A pénznemben visszamaradt összeg" #. module: account #: field:account.config.settings,sale_refund_sequence_prefix:0 msgid "Credit note sequence" -msgstr "" +msgstr "Jóváírás jegyzet sorrend" #. module: account #: model:ir.actions.act_window,name:account.action_validate_account_move @@ -8000,7 +8585,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "Tételek könyvelése" +msgstr "Napló tételek könyvelése" #. module: account #: selection:account.bank.statement.line,type:0 @@ -8010,12 +8595,12 @@ msgstr "Tételek könyvelése" #: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" -msgstr "Vevő" +msgstr "Vásárló" #. module: account #: field:account.financial.report,name:0 msgid "Report Name" -msgstr "" +msgstr "Jelentés neve" #. module: account #: model:account.account.type,name:account.data_account_type_cash @@ -8026,7 +8611,7 @@ msgstr "" #: code:addons/account/account.py:3092 #, python-format msgid "Cash" -msgstr "Pénztár" +msgstr "Készpénz pénztár" #. module: account #: field:account.fiscal.position.account,account_dest_id:0 @@ -8040,6 +8625,8 @@ msgid "" "Refund base on this type. You can not Modify and Cancel if the invoice is " "already reconciled" msgstr "" +"Visszatérítés ennek a típusnak az alapján. Nem tudja megváltoztatni és " +"visszavonni a már párosított számlát" #. module: account #: field:account.bank.statement.line,sequence:0 @@ -8052,22 +8639,22 @@ msgstr "" #: field:account.tax.code,sequence:0 #: field:account.tax.template,sequence:0 msgid "Sequence" -msgstr "Sorszám" +msgstr "Sorrend" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "Paypal számla" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "" +msgstr "Napló tétel száma" #. module: account #: view:account.financial.report:0 msgid "Parent Report" -msgstr "" +msgstr "Fölérendelt gyűjtő kimutatás" #. module: account #: constraint:account.account:0 @@ -8076,11 +8663,13 @@ msgid "" "Error!\n" "You cannot create recursive accounts." msgstr "" +"Hiba!\n" +"Nem hozhat létre visszatérő számlákat." #. module: account #: model:ir.model,name:account.model_cash_box_in msgid "cash.box.in" -msgstr "" +msgstr "cash.box.in" #. module: account #: help:account.invoice,move_id:0 @@ -8090,7 +8679,7 @@ msgstr "Kapcsolódás az automatikusan létrehozott könyvelési tételekhez" #. module: account #: model:ir.model,name:account.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account #: selection:account.config.settings,period:0 @@ -8113,19 +8702,19 @@ msgstr "Számított egyenleg" #: code:addons/account/static/src/js/account_move_reconciliation.js:89 #, python-format msgid "You must choose at least one record." -msgstr "" +msgstr "Választani kell legalább egy rekordot!" #. module: account #: field:account.account,parent_id:0 #: field:account.financial.report,parent_id:0 msgid "Parent" -msgstr "Gyűjtő fk.szla" +msgstr "Fölérendelt" #. module: account #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Profit" -msgstr "" +msgstr "Nyereség" #. module: account #: help:account.payment.term.line,days2:0 @@ -8160,19 +8749,19 @@ msgid "" "to the higher ones. The order is important if you have a tax with several " "tax children. In this case, the evaluation order is important." msgstr "" -"A sorszám mező szolgál az adósorok sorba rendezésére a legalacsonyabb " +"A sorrend mező szolgál az adósorok sorba rendezésére a legalacsonyabb " "sorszámútól a legmagasabbig. A sorrend fontos a több alárendelt adóval " "rendelkező adók esetében. Ebben az esetben az értékelési sorrend lényeges." #. module: account #: model:ir.model,name:account.model_account_cashbox_line msgid "CashBox Line" -msgstr "Pénzkazetta sor" +msgstr "Pénzkazetta tétel sor" #. module: account #: field:account.installer,charts:0 msgid "Accounting Package" -msgstr "" +msgstr "Könyvelési csomag" #. module: account #: report:account.third_party_ledger:0 @@ -8182,7 +8771,7 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_3rdparty_ledger_other #: model:ir.ui.menu,name:account.menu_account_partner_ledger msgid "Partner Ledger" -msgstr "Folyószámla karton" +msgstr "Partner folyószámla karton" #. module: account #: selection:account.tax.template,type:0 @@ -8202,22 +8791,22 @@ msgstr "Figyelem!" #: help:account.bank.statement,message_unread:0 #: help:account.invoice,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ha be van jelölve, akkor figyelje az új üzeneteket." #. module: account #: field:res.company,tax_calculation_rounding_method:0 msgid "Tax Calculation Rounding Method" -msgstr "" +msgstr "Adó számításhoz a kerekítés módja" #. module: account #: field:account.entries.report,move_line_state:0 msgid "State of Move Line" -msgstr "Tételsor állapota" +msgstr "Bizonylat tételsor állapota" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile msgid "Account move line reconcile" -msgstr "Tételpárosítás" +msgstr "Főkönyvi számla bizonylat tételpárosítás" #. module: account #: view:account.subscription.generate:0 @@ -8258,7 +8847,7 @@ msgstr "Partner" #. module: account #: help:account.change.currency,currency_id:0 msgid "Select a currency to apply on the invoice" -msgstr "Válassza ki az alkalmazandó új pénznemet" +msgstr "Válassza ki a számlázásnál alkalmazandó új pénznemet" #. module: account #: code:addons/account/account_invoice.py:901 @@ -8269,19 +8858,20 @@ msgstr "Nincsenek számlasorok!" #. module: account #: view:account.financial.report:0 msgid "Report Type" -msgstr "" +msgstr "Kimutatás típus" #. module: account #: help:account.open.closed.fiscalyear,fyear_id:0 msgid "" "Select Fiscal Year which you want to remove entries for its End of year " "entries journal" -msgstr "Válassza ki az üzleti évet, amelynek a nyitó tételeit törölni akarja" +msgstr "" +"Válassza ki az üzleti évet, amelynek a záró tételei közül törölni szeretne" #. module: account #: field:account.tax.template,type_tax_use:0 msgid "Tax Use In" -msgstr "Alkalmazási terület" +msgstr "Adó alkalmazási terület" #. module: account #: code:addons/account/account_bank_statement.py:382 @@ -8314,28 +8904,30 @@ msgstr "Automatikus tétel" msgid "" "Check this box if this account allows reconciliation of journal items." msgstr "" +"Jelölje be a négyzetet, ha ez a főkönyvi számla lehetővé tesz ia napló " +"bejegyzéseken a párosításokat." #. module: account #: report:account.analytic.account.inverted.balance:0 msgid "Inverted Analytic Balance -" -msgstr "Fordított gyűjtőkód kivonat -" +msgstr "Fordított analitikus gyűjtőkód kivonat -" #. module: account #: help:account.move.reconcile,opening_reconciliation:0 msgid "" "Is this reconciliation produced by the opening of a new fiscal year ?." -msgstr "" +msgstr "Ezt a párosítást egy új üzleti év nyitása hajtotta végre ?." #. module: account #: view:account.analytic.line:0 #: model:ir.actions.act_window,name:account.action_account_analytic_line_form msgid "Analytic Entries" -msgstr "Gyűjtőkód tételek" +msgstr "Analitikus gyűjtőkód tételek" #. module: account #: view:account.analytic.account:0 msgid "Associated Partner" -msgstr "Társult partner" +msgstr "Társított partner" #. module: account #: code:addons/account/account_invoice.py:1465 @@ -8346,7 +8938,7 @@ msgstr "Először partnert kell választani!" #. module: account #: field:account.invoice,comment:0 msgid "Additional Information" -msgstr "Egyéb megjegyzés" +msgstr "További információ" #. module: account #: field:account.invoice.report,residual:0 @@ -8384,7 +8976,7 @@ msgstr "A számla állapota nyitott." #: field:account.subscription,state:0 #: field:report.invoice.created,state:0 msgid "Status" -msgstr "Státusz" +msgstr "Állapot" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -8397,7 +8989,7 @@ msgstr "Gyűjtőkód karton" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "" +msgstr "Ehhez a vállalkozáshoz nincs üzleti adóügyi év meghatározva" #. module: account #: view:account.invoice:0 @@ -8407,7 +8999,7 @@ msgstr "Pro forma" #. module: account #: report:account.analytic.account.cost_ledger:0 msgid "J.C. /Move name" -msgstr "Naplókód/Megnevezés" +msgstr "Naplókód/Bizonylat megnevezés" #. module: account #: help:account.tax.template,include_base_amount:0 @@ -8422,13 +9014,13 @@ msgstr "" #: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" -msgstr "Bejövő jóváíró számla napló" +msgstr "Bejövő, beszállítói jóváíró számla napló" #. module: account #: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Kérem egy sorozat meghatározását a naplón." #. module: account #: help:account.tax.template,amount:0 @@ -8438,12 +9030,12 @@ msgstr "Százalék típusú adókra a %-ot 0-1 közötti számként adja meg." #. module: account #: view:account.analytic.account:0 msgid "Current Accounts" -msgstr "" +msgstr "Jelenlegi számlák" #. module: account #: view:account.invoice.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "Számla dátuma szerinti csoportosítása" #. module: account #: help:account.journal,user_id:0 @@ -8457,6 +9049,10 @@ msgid "" "recalls.\n" " This installs the module account_followup." msgstr "" +"Ez engedélyezi az automatikus leveleket a kiegyenlítetlen számlákra, több-" +"szintű visszahívással.\n" +" Ez a account_followup (számla_nyomon követés) modult " +"telepíti.." #. module: account #: field:account.automatic.reconcile,period_id:0 @@ -8489,22 +9085,24 @@ msgid "" "Total amount (in Company currency) for transactions held in secondary " "currency for this account." msgstr "" +"Teljes mennyiség (a vállalkozás pénznemében) a számlán második pénznemben " +"tartott tranzakciókra." #. module: account #: report:account.invoice:0 msgid "Net Total:" -msgstr "Nettó érték:" +msgstr "Teljes nettó érték:" #. module: account #: code:addons/account/wizard/account_report_common.py:158 #, python-format msgid "Select a starting and an ending period." -msgstr "" +msgstr "Válasszon egy induló és egy befejező időszakot." #. module: account #: field:account.config.settings,sale_sequence_next:0 msgid "Next invoice number" -msgstr "" +msgstr "Következő számla szám" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting @@ -8524,7 +9122,7 @@ msgstr "Árbevétel főkönyvi számla" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "" +msgstr "Módosított egyenleg" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form @@ -8548,6 +9146,9 @@ msgid "" "This wizard will remove the end of year journal entries of selected fiscal " "year. Note that you can run this wizard many times for the same fiscal year." msgstr "" +"Ez a varázsló a kiválasztott üzleti adóügyi évet lezáró könyvelési napló " +"tételeit fogja eltávolítani. Megjegyezzük, hogy ezt a varázslót többször is " +"elindíthatja ugyanarra az üzleti évre." #. module: account #: report:account.invoice:0 @@ -8598,14 +9199,16 @@ msgstr "Záró egyenleg" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "" +msgstr "Központi ellenszámla" #. module: account #: help:account.move.line,blocked:0 msgid "" "You can check this box to mark this journal item as a litigation with the " "associated partner" -msgstr "Bejelölheti ezt a négyzetet, hogy jelezze, hogy a tétel peresített." +msgstr "" +"Bejelölheti ezt a négyzetet, hogy jelezze a napló tételen, hogy a tétel " +"peresített a hozzá tartozó ügyféllel." #. module: account #: field:account.move.line,reconcile_partial_id:0 @@ -8616,12 +9219,12 @@ msgstr "Részleges párosítás" #. module: account #: model:ir.model,name:account.model_account_analytic_inverted_balance msgid "Account Analytic Inverted Balance" -msgstr "Fordított gyűjtőkód kivonat" +msgstr "Analitikus számla fordított gyűjtőkód kivonat" #. module: account #: model:ir.model,name:account.model_account_common_report msgid "Account Common Report" -msgstr "Általános kimutatás" +msgstr "Főkönyvi számla általános kimutatás" #. module: account #: view:account.invoice.refund:0 @@ -8633,6 +9236,12 @@ msgid "" "invoice will be created \n" " so that you can edit it." msgstr "" +"Használja ezt a lehetőséget ha törölni szeretné ezt és másikat létrehozni \n" +" helyette. Jóváíró számla lesz " +"létrehozva, érvényesítve és párosítva\n" +" a jelenlegi számlával. Egy szerkeszthető " +"új, tervezet, számla lesz\n" +" létrehozva." #. module: account #: model:process.transition,name:account.process_transition_filestatement0 @@ -8643,17 +9252,17 @@ msgstr "Bankkivonat automatikus importálása" #: code:addons/account/account_invoice.py:381 #, python-format msgid "Unknown Error!" -msgstr "" +msgstr "Ismeretlen hiba!" #. module: account #: model:ir.model,name:account.model_account_move_bank_reconcile msgid "Move bank reconcile" -msgstr "Bank egyeztetés" +msgstr "Banki bizonylat egyeztetés" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Alkalmaz" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -8665,7 +9274,7 @@ msgstr "Főkönyvi számlatípusok" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "" +msgstr "${object.company_id.name} Számla (Ref ${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1210 @@ -8674,6 +9283,8 @@ msgid "" "You cannot use this general account in this journal, check the tab 'Entry " "Controls' on the related journal." msgstr "" +"Nem használhatja ezt az általános főkönyvi számlát ebben a naplóban, " +"ellenőrizze az ide vonatkozó naplón a 'Beviteli felügyelet' fület." #. module: account #: field:account.account.type,report_type:0 @@ -8697,7 +9308,7 @@ msgstr "Párosítás" #. module: account #: view:account.tax.template:0 msgid "Keep empty to use the income account" -msgstr "-" +msgstr "Hagyja üressen a bevételi számla használatához" #. module: account #: view:account.invoice:0 @@ -8709,6 +9320,12 @@ msgid "" "You should press this button to re-open it and let it continue its normal " "process after having resolved the eventual exceptions it may have created." msgstr "" +"Ez a gomb csak akkor látszik, ha a Számla állapota 'fizetve' (a teljes " +"párosítást, kiegyenlítést mutatva) és automatán számolt 'párosítás' boolean " +"művelet Hamis (feltételezve, hogy ez már nem feltétel). Más szavakkal, a " +"számlát ismét párosítatlanná tette és ez már nem érthető úgy mint 'fizetve' " +"állapotú. Ezt a gombot kell megnyomnia ahhoz, hogy ismét megnyithassa és " +"megoldja a lehetséges felmerült körülményeket a folyamat normál elvégzéséhez." #. module: account #: model:ir.actions.act_window,help:account.action_account_journal_form @@ -8728,11 +9345,25 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson egy napló létrehozásához.\n" +"

\n" +" Egy napló az összes főkönyvi számlákkal kapcsolatos \n" +" pénzmozgások rögzítésére szolgál a\n" +" mindennapos üzletben.\n" +"

\n" +" Egy tipikus vállalkozásban mindegyik fizetési típushoz " +"hozzárendel\n" +" egy naplót (készpénzes, banki számlák, csekkek), egy " +"beszállítói napló, egy vásárlói napló\n" +" és egy a különféle információkra.\n" +"

\n" +" " #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state msgid "Fiscalyear Close state" -msgstr "Üzleti év zárása" +msgstr "Zárt állípotú üzleti év" #. module: account #: field:account.invoice.refund,journal_id:0 @@ -8747,7 +9378,7 @@ msgstr "Jóváíró számla napló" #: report:account.general.ledger_landscape:0 #: report:account.partner.balance:0 msgid "Filter By" -msgstr "Szűrés" +msgstr "Szűrés ezzel" #. module: account #: code:addons/account/wizard/account_period_close.py:51 @@ -8755,6 +9386,8 @@ msgstr "Szűrés" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" +"Egy időszak lezárásához, először le kell könyvelnie az ide vonatkozó napló " +"bejegyzéseket." #. module: account #: view:account.entries.report:0 @@ -8766,13 +9399,13 @@ msgstr "Vállalatszintű elemzés" #. module: account #: help:account.invoice,account_id:0 msgid "The partner account used for this invoice." -msgstr "Vevő/szállító főkönyvi számla" +msgstr "A számlához használt vevő/szállító főkönyvi számla" #. module: account #: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" -msgstr "" +msgstr "Adó %.2f%%" #. module: account #: field:account.tax.code,parent_id:0 @@ -8790,7 +9423,7 @@ msgstr "Fizetési feltétel sor" #: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" -msgstr "Bejövő számla napló" +msgstr "Bejövő, beszállítói számla napló" #. module: account #: field:account.invoice,amount_untaxed:0 @@ -8820,7 +9453,7 @@ msgstr "Fizetési határidő" #: model:ir.ui.menu,name:account.menu_account_supplier #: model:ir.ui.menu,name:account.menu_finance_payables msgid "Suppliers" -msgstr "Szállítók" +msgstr "Beszállítók" #. module: account #: view:account.journal:0 @@ -8839,7 +9472,7 @@ msgstr "" #. module: account #: view:account.tax.code:0 msgid "Statistics" -msgstr "Statisztika" +msgstr "Statisztikák" #. module: account #: field:account.analytic.chart,from_date:0 @@ -8854,6 +9487,9 @@ msgid "" "computed. Because it is space consuming, we do not allow to use it while " "doing a comparison." msgstr "" +"Ez a lehetőség több számlaegyenleg számítási részlethez enged betekintést. " +"Mivel ez sok helyet emészt fel, nem engedélyezzük hasonlítás használata " +"esetén." #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close @@ -8863,13 +9499,16 @@ msgstr "Üzleti év zárása" #. module: account #: sql_constraint:account.account:0 msgid "The code of the account must be unique per company !" -msgstr "A főkönyvi számla számának egyedinek kell lennie!" +msgstr "" +"A főkönyvi számla számának egyedinek kell lennie mindegyik vállalkozáshoz!" #. module: account #: help:product.category,property_account_expense_categ:0 #: help:product.template,property_account_expense:0 msgid "This account will be used to value outgoing stock using cost price." msgstr "" +"Ezt a számlát használja a kimenő raktárkészlet megbecsüléséhez a költség " +"értékek használatával." #. module: account #: view:account.invoice:0 @@ -8907,14 +9546,14 @@ msgstr "Engedélyezett számlák (üres, ha mindegyik)" #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "Értékesítési adó (%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 #: model:ir.actions.act_window,name:account.action_account_analytic_chart #: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 msgid "Chart of Analytic Accounts" -msgstr "Gyűjtőkód lista" +msgstr "Analitikus könyvelések számlatükre" #. module: account #: model:ir.actions.act_window,help:account.action_subscription_form @@ -8932,12 +9571,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új ismétlődő tétel létrehozásához.\n" +"

\n" +" Egy ismétlődő tétel keletkezik, ismétlődési alapon egy " +"megadott \n" +" dátumtól, pl. egy szerződés aláírására hivatkozva a vásárló " +"ügyféllel\n" +" vagy egy beszállítóval. Ilyen tételeket tud létrehozni a " +"rendszer\n" +" automatikus könyvelési feladásához.\n" +"

\n" +" " #. module: account #: view:account.journal:0 #: model:ir.ui.menu,name:account.menu_configuration_misc msgid "Miscellaneous" -msgstr "Egyéb" +msgstr "Egyebek" #. module: account #: help:res.partner,debit:0 @@ -8948,7 +9599,7 @@ msgstr "A vállalat összes tartozása a szállítóval szemben." #: model:process.node,name:account.process_node_analytic0 #: model:process.node,name:account.process_node_analyticcost0 msgid "Analytic Costs" -msgstr "Költségek" +msgstr "Analitikus költségek" #. module: account #: field:account.analytic.journal,name:0 @@ -8966,7 +9617,7 @@ msgstr "A(z) \"%s\" tétel nem érvényes!" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Smallest Text" -msgstr "" +msgstr "Legkisebb szöveg" #. module: account #: help:account.config.settings,module_account_check_writing:0 @@ -8974,11 +9625,14 @@ msgid "" "This allows you to check writing and printing.\n" " This installs the module account_check_writing." msgstr "" +"Ez lehetővé teszi az írás és nyomtatás ellenőrzését.\n" +" Ez account_check_writing (számla_ellenőrzés_írás) modult " +"telepíti." #. module: account #: model:res.groups,name:account.group_account_invoice msgid "Invoicing & Payments" -msgstr "" +msgstr "Számlázás & Kifizetések" #. module: account #: help:account.invoice,internal_number:0 @@ -8993,7 +9647,7 @@ msgstr "" #: model:account.account.type,name:account.data_account_type_expense #: model:account.financial.report,name:account.account_financial_report_expense0 msgid "Expense" -msgstr "Költség" +msgstr "Kiadások, költségek" #. module: account #: help:account.chart,fiscalyear:0 @@ -9006,13 +9660,15 @@ msgid "" "The amount expressed in an optional other currency if it is a multi-currency " "entry." msgstr "" -"Szabadon választott más pénznemben kifejezett összeg, ha a tétel devizás." +"Szabadon választott más pénznemben kifejezett összeg, ha a tétel több " +"pénznembeli devizás." #. module: account #: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" +"A főkönyvi számla bizonylat (%s) ehhez a központosításhoz visszaigazolt." #. module: account #: report:account.analytic.account.journal:0 @@ -9051,6 +9707,8 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" +"Itt választhatja ki a létrehozni kívánt jóváírás naplóját. Ha üresen hagyja " +"ezt a mezőt, akkor a jelenlegi számla naplóját fogja használni." #. module: account #: help:account.bank.statement.line,sequence:0 @@ -9073,23 +9731,23 @@ msgstr "Párosított tételek" #: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" -msgstr "" +msgstr "Rossz modell !" #. module: account #: view:account.tax.code.template:0 #: view:account.tax.template:0 msgid "Tax Template" -msgstr "" +msgstr "Adó sablon" #. module: account #: field:account.invoice.refund,period:0 msgid "Force period" -msgstr "Időszak" +msgstr "Időszak kényszerítése" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "Folyószámla kivonat nyomtatása" +msgstr "Partner folyószámla kivonat nyomtatása" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -9099,6 +9757,9 @@ msgid "" "some non legal fields or you must unreconcile first.\n" "%s." msgstr "" +"Nem hajtja végre ezt a módosítást egy párosított tételen. Egyes nem érvényes " +"tételt tud, vagy párosítatlanná kell tennie az egészet először.\n" +"%s." #. module: account #: help:account.financial.report,sign:0 @@ -9109,6 +9770,12 @@ msgid "" "accounts that are typically more credited than debited and that you would " "like to print as positive amounts in your reports; e.g.: Income account." msgstr "" +"Egy főkönyvi számlához, melyen több a tartozás mint a követelés és ezt " +"szeretné nyomtatni mint negatív összegeget a kimutatásain, akkor az előjelet " +"át kell változtatnia az egyenlegen; pl.: Kiadási, költség számla. Ez szintén " +"vonatkozik olyan számlákra, melyen több a követelés mint a tartozás és azt " +"mint pozitív összeget szeretné nyomtatni a kimutatásain; pl.: Bevételi, " +"vásárlói számla." #. module: account #: field:res.partner,contract_ids:0 @@ -9122,7 +9789,7 @@ msgstr "Szerződések" #: field:account.financial.report,credit:0 #: field:account.financial.report,debit:0 msgid "unknown" -msgstr "Ismeretlen" +msgstr "ismeretlen" #. module: account #: field:account.fiscalyear.close,journal_id:0 @@ -9141,14 +9808,14 @@ msgstr "" #: field:account.bank.statement,message_is_follower:0 #: field:account.invoice,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ez egy követő" #. module: account #: view:account.move:0 #: field:account.move,narration:0 #: field:account.move.line,narration:0 msgid "Internal Note" -msgstr "" +msgstr "Belső jegyzet" #. module: account #: constraint:account.account:0 @@ -9157,11 +9824,14 @@ msgid "" "You cannot select an account type with a deferral method different of " "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" +"Beállítási hiba!\n" +"Nem választhat \"Párosítatlan\" eltolási módtól eltérő főkönyvi számla " +"típust a \"Kiadási/Bevételi\" belső típusú számlákhoz." #. module: account #: field:account.config.settings,has_fiscal_year:0 msgid "Company has a fiscal year" -msgstr "" +msgstr "Vállalkozásnak van üzleti, adóügyi éve" #. module: account #: help:account.tax,child_depend:0 @@ -9177,6 +9847,7 @@ msgstr "" #, python-format msgid "You cannot deactivate an account that contains journal items." msgstr "" +"Nem hatástalaníthat olyan főkönyvi számlát, mely napló tételeket tartalmaz." #. module: account #: selection:account.tax,applicable_type:0 @@ -9203,7 +9874,7 @@ msgstr "Tételsorok" #. module: account #: model:ir.actions.act_window,name:account.action_open_journal_button msgid "Open Journal" -msgstr "Nem könyvelt tételek könyvelése" +msgstr "Napló megnyitása" #. module: account #: report:account.analytic.account.journal:0 @@ -9226,7 +9897,7 @@ msgstr "Címlet" #: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" -msgstr "Kimenő jóváíró számla napló" +msgstr "Kimenő, értékesítési jóváíró számla napló" #. module: account #: view:account.move:0 @@ -9243,6 +9914,11 @@ msgid "" "chart\n" " of accounts." msgstr "" +"Ha már egyszer a számla tervezetek le lettek igazolva, többé nem tudja\n" +" azokat módosítani. A számlák egyedi azonosítóval " +"lesznek \n" +" ellátva és napló bejegyzések készülnek a " +"számlatükrökben." #. module: account #: model:process.node,note:account.process_node_bankstatement0 @@ -9257,7 +9933,7 @@ msgstr "Üzleti év és időszakok zárása" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "Bejövő, beszerzési jóváíró számla napló" #. module: account #: view:account.analytic.line:0 @@ -9270,23 +9946,23 @@ msgstr "Termék információ" #: view:account.move.line:0 #: model:ir.ui.menu,name:account.next_id_40 msgid "Analytic" -msgstr "Gyűjtőnaplók" +msgstr "Anaitikus gyűjtőnaplók" #. module: account #: model:process.node,name:account.process_node_invoiceinvoice0 #: model:process.node,name:account.process_node_supplierinvoiceinvoice0 msgid "Create Invoice" -msgstr "Számla készítése" +msgstr "Számla létrehozás" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "Könyvelési adatok beállítása" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 msgid "Purchase Tax(%)" -msgstr "Előzetesen felszámított ÁFA(%)" +msgstr "Előzetesen felszámított beszerzési ÁFA(%)" #. module: account #: code:addons/account/account_invoice.py:901 @@ -9301,11 +9977,13 @@ msgid "" "Please check that the field 'Internal Transfers Account' is set on the " "payment method '%s'." msgstr "" +"Kérem ellenőrizze, hogy a 'Belső mozgások könyvelési számla' mező be legyen " +"állítva a '%s' fizetési feltételnél ." #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "" +msgstr "Részletek mutatása" #. module: account #: code:addons/account/account.py:3203 @@ -9319,14 +9997,14 @@ msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft invoices." msgstr "" -"A költségek a gyűjtőkódokból származnak. Ezek állítják elő a " -"számlatervezeteket." +"Analitikus költségek (időkimutatások, egyes megvásárolt termékek, ...) az " +"analitikus könyvelésből származnak. Ezek számla tervezeteket hoznak létre." #. module: account #: view:account.analytic.line:0 #: view:analytic.entries.report:0 msgid "My Entries" -msgstr "Tételeim" +msgstr "Bejegyzéseim" #. module: account #: help:account.invoice,state:0 @@ -9341,6 +10019,18 @@ msgid "" "related journal entries may or may not be reconciled. \n" "* The 'Cancelled' status is used when user cancel invoice." msgstr "" +" * A 'Tervezet' állapotot használja, miután egy felhasználó bevitt egy új, " +"még nem jóváhagyott Számlát. \n" +"* A 'Pro-forma' állapotú amikor a számla díjbekérő, Pro-forma; a számlának " +"még nincs száma. \n" +"* A 'Nyitott' állapotot akkor használja, ha a felhasználó számlát készít,és " +"egy számlaszámot hoz létre. Addig marad nyitott állapotú, amíg a számla nem " +"kerül kifizetésre. \n" +"* A 'Fizetve' állapot lesz beállítva automatikusan amint a számla " +"kifizetésre került. A hozzá kapcsolódó napló bejegyzések párosítása vagy " +"megtörténik vagy nem. \n" +"* A 'Visszavont' állapotot használja, ha a felhasználó érvényteleníti a " +"számlát." #. module: account #: field:account.period,date_stop:0 @@ -9360,7 +10050,7 @@ msgstr "Pénzügyi kimutatások" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 msgid "Liability View" -msgstr "" +msgstr "Felelősség nézet" #. module: account #: report:account.account.balance:0 @@ -9408,12 +10098,12 @@ msgstr "A partnerre hivatkozó vállalatok" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "Jóváírás igénylése" +msgstr "Jóváírás, visszatérítés igénylése" #. module: account #: view:account.move.line:0 msgid "Total credit" -msgstr "Követel összesen" +msgstr "Követelés összesen" #. module: account #: model:process.transition,note:account.process_transition_suppliervalidentries0 @@ -9433,18 +10123,18 @@ msgstr "Bizonylat: vevő folyószámla kivonat" #. module: account #: view:account.account.template:0 msgid "Receivale Accounts" -msgstr "Vevő számlák" +msgstr "Követelés (vevő) számlák" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 msgid "Supplier credit note sequence" -msgstr "" +msgstr "Beszállítők jóváírási sorrend" #. module: account #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "" +msgstr "Számla már párosítva volt." #. module: account #: help:account.config.settings,module_account_payment:0 @@ -9456,6 +10146,12 @@ msgid "" "payments.\n" " This installs the module account_payment." msgstr "" +"Ez lehetővé teszi hogy létrehozza és kezelje az átutalási megbízásait, egy " +"könnyű\n" +" * csatoló alapjaként a különböző automatikus fizetési " +"szerkezetekhez, és\n" +" * hatékonyabb kezelését a számla fizetéseknek.\n" +" Ez a account_payment (számla_kifizetés) modult telepíti.." #. module: account #: xsl:account.transfer:0 @@ -9466,7 +10162,7 @@ msgstr "Dokumentum" #: view:account.chart.template:0 #: field:account.chart.template,property_account_receivable:0 msgid "Receivable Account" -msgstr "Vevő főkönyvi számla" +msgstr "Bevételi (Vevő) főkönyvi számla" #. module: account #: code:addons/account/account_move_line.py:771 @@ -9474,6 +10170,8 @@ msgstr "Vevő főkönyvi számla" #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" +"A bejegyzések párosításához az összes bejegyzéshez ugyanaz a vállalkozás " +"szükséges." #. module: account #: field:account.account,balance:0 @@ -9518,12 +10216,12 @@ msgstr "Számla megjelenítése" #: model:account.account.type,name:account.data_account_type_payable #: selection:account.entries.report,type:0 msgid "Payable" -msgstr "Szállító" +msgstr "Szállítónak fizetendő" #. module: account #: view:board.board:0 msgid "Account Board" -msgstr "Tábla" +msgstr "Főkonyvi számla tábla" #. module: account #: view:account.model:0 @@ -9551,7 +10249,7 @@ msgstr "Szűrés" #: field:account.cashbox.line,number_closing:0 #: field:account.cashbox.line,number_opening:0 msgid "Number of Units" -msgstr "" +msgstr "Egységek száma" #. module: account #: model:process.node,note:account.process_node_manually0 @@ -9568,14 +10266,14 @@ msgstr "Kézi tétel" #: view:account.move.line:0 #: field:analytic.entries.report,move_id:0 msgid "Move" -msgstr "Bizonylat száma" +msgstr "Bizonylat" #. module: account #: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Érvénytelen lépés!" #. module: account #: view:account.bank.statement:0 @@ -9599,11 +10297,14 @@ msgid "" "The period is invalid. Either some periods are overlapping or the period's " "dates are not matching the scope of the fiscal year." msgstr "" +"Hiba!\n" +"Az időszak nem érvényes. Vagy az egyes időszakok átfedik egymást vagy az " +"időszakok nem egyeznek az üzleti év határidőivel." #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Ezzel a partnerrel nincs semmilyen lejárat." #. module: account #: help:account.tax,account_paid_id:0 @@ -9611,19 +10312,22 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." msgstr "" +"Számla beállítása ami alapértelmezetten a számlák adó tételeinek " +"visszatérítésére szolgál. Hagyja üresen, ha a költség számlát szeretné " +"használni." #. module: account #: help:account.addtmpl.wizard,cparent_id:0 msgid "" "Creates an account with the selected template under this existing parent." msgstr "" -"A kiválasztott sablonnal létrehoz egy főkönyvi számlát a már létező gyűjtő " -"főkönyvi számla alá." +"A kiválasztott sablonnal létrehoz egy főkönyvi számlát a már létező " +"fölérendelt gyűjtő főkönyvi számla alá." #. module: account #: report:account.invoice:0 msgid "Source" -msgstr "" +msgstr "Forrás" #. module: account #: selection:account.model.line,date_maturity:0 @@ -9637,8 +10341,8 @@ msgid "" "You have to define the bank account\n" "in the journal definition for reconciliation." msgstr "" -"A naplóban meg kell adnia a bankszámlát\n" -"az egyeztetéshez." +"A napló leírásban meg kell adnia a bankszámlát\n" +"az egyeztetéshez, párosításhoz." #. module: account #: help:account.journal,sequence_id:0 @@ -9646,11 +10350,13 @@ msgid "" "This field contains the information related to the numbering of the journal " "entries of this journal." msgstr "" +"Ez a mező tartalmazza ennek a naplónak a bejegyzéseihez tartozó számok " +"infoormációit." #. module: account #: field:account.invoice,sent:0 msgid "Sent" -msgstr "" +msgstr "Elküldött" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu @@ -9661,7 +10367,7 @@ msgstr "Általános kimutatás" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "Alapértelmezett értékesítési adó" #. module: account #: report:account.overdue:0 @@ -9672,7 +10378,7 @@ msgstr "Egyenleg :" #: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." -msgstr "" +msgstr "Nem tud létrehozni bizonylatot különboző vállalkozásokra." #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing @@ -9682,14 +10388,14 @@ msgstr "Időszakos feldolgozás" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "" +msgstr "Vásárlói és Beszállítói számlák" #. module: account #: model:process.node,note:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_paymentorderbank0 #: model:process.transition,name:account.process_transition_paymentreconcile0 msgid "Payment entries" -msgstr "Pénzügyi rendezés tételek" +msgstr "Pénzügyi rendezés tételei" #. module: account #: selection:account.entries.report,month:0 @@ -9713,7 +10419,7 @@ msgstr "Előjegyzés" #. module: account #: model:ir.model,name:account.model_account_analytic_balance msgid "Account Analytic Balance" -msgstr "Gyűjtőkód kivonat" +msgstr "Analitikus gyűjtőkód számlaegyenleg" #. module: account #: report:account.account.balance:0 @@ -9746,7 +10452,7 @@ msgstr "Záró időszak" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 msgid "Expense View" -msgstr "" +msgstr "Költség nézet" #. module: account #: field:account.move.line,date_maturity:0 @@ -9757,13 +10463,13 @@ msgstr "Fizetési határidő" #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "Azonnali, készpénzes fizetés" #. module: account #: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" -msgstr "" +msgstr " Központosítás" #. module: account #: help:account.journal,type:0 @@ -9774,12 +10480,18 @@ msgid "" "journals. Select 'Opening/Closing Situation' for entries generated for new " "fiscal years." msgstr "" +"Válassza az 'Értékesítés'-t a a vásárlói számlák naplóihoz. Válassza a " +"'Beszerzés'-t a beszállítói számlák naplóihoz. Válassza a 'Készpénz'-t vagy " +"a 'Bank'-ot olyan naplókhoz melyek a vásárlói vagy beszerzési fizetéseket " +"rögzítik. Válassza az 'Általános'-t az egyéb műveletek naplózásához. " +"Válassza 'Nyitó/Záró' helyzetet olyan tételekhez amit új üzleti év " +"generálásához használ." #. module: account #: view:account.subscription:0 #: model:ir.model,name:account.model_account_subscription msgid "Account Subscription" -msgstr "Előjegyzés" +msgstr "Főkönyvi számla előjegyzés" #. module: account #: report:account.overdue:0 @@ -9827,6 +10539,8 @@ msgid "" "It indicates that the invoice has been paid and the journal entry of the " "invoice has been reconciled with one or several journal entries of payment." msgstr "" +"Ez jelzi, hogy a számla ki lett fizetve és a számla napló bejegyzése " +"párosítva lett a fizetés egy vagy több napló bejegyzésével." #. module: account #: view:account.invoice:0 @@ -9846,7 +10560,7 @@ msgstr "Készpénz befizetése" #: view:account.entries.report:0 #: view:account.move.line:0 msgid "Unreconciled" -msgstr "Rendezetlen" +msgstr "Rendezetlen, párosítatlan" #. module: account #: code:addons/account/account_invoice.py:922 @@ -9857,7 +10571,7 @@ msgstr "Hibás összesen!" #. module: account #: field:account.journal,sequence_id:0 msgid "Entry Sequence" -msgstr "Sorszámozás" +msgstr "Bevitel sorszámozás" #. module: account #: model:ir.actions.act_window,help:account.action_account_period_tree @@ -9892,12 +10606,12 @@ msgstr "Gyűjtőkód karton (csak mennyiségi)" #: model:process.transition,name:account.process_transition_analyticinvoice0 #: model:process.transition,name:account.process_transition_supplieranalyticcost0 msgid "From analytic accounts" -msgstr "Gyűjtőkódokból" +msgstr "Analitikus gyűjtőkódokból" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Állítsa be az üzleti, adóügyi évét" #. module: account #: field:account.period,name:0 @@ -9911,6 +10625,8 @@ msgid "" "Selected invoice(s) cannot be cancelled as they are already in 'Cancelled' " "or 'Done' state." msgstr "" +"A kiválasztott számlá(ka)t nem lehet visszavonni mivel már 'Visszavont' vagy " +"'Elkészített' állapotú." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -9937,7 +10653,7 @@ msgstr "Könyvelési tételsorok" #. module: account #: view:accounting.report:0 msgid "Comparison" -msgstr "" +msgstr "Összehasonlítás" #. module: account #: code:addons/account/account_move_line.py:1119 @@ -9947,6 +10663,9 @@ msgid "" "some non legal fields or you must unconfirm the journal entry first.\n" "%s." msgstr "" +"Nem hagyhatja végre ezt a módosítást egy jóváhagyott bejegyzésen. Csak nem " +"törvényes mezőket változtathat meg vagy a naplót vissza kell vonni először.\n" +"%s." #. module: account #: help:account.config.settings,module_account_budget:0 @@ -9957,11 +10676,18 @@ msgid "" "analytic account.\n" " This installs the module account_budget." msgstr "" +"Ez lehetővé teszi a könyvelő számára az analitikus és átlátható " +"költségvetést.\n" +" Ha már a mester költségvetés és a költségvetés meg lett " +"határozva,\n" +" a projekt irányító beállíthatja a tervezett költségeket " +"mindegyik analitikus könyvelési számlára.\n" +" Ez a account_budget (számla_költség) modult telepíti.." #. module: account #: field:account.bank.statement.line,name:0 msgid "OBI" -msgstr "" +msgstr "OBI" #. module: account #: help:res.partner,property_account_payable:0 @@ -9987,7 +10713,7 @@ msgstr "Másodlagos pénznem" #. module: account #: model:ir.model,name:account.model_validate_account_move msgid "Validate Account Move" -msgstr "Könyvelési tételek jóváhagyása" +msgstr "Könyvelési tételek bizonylatának jóváhagyása" #. module: account #: field:account.account,credit:0 @@ -10011,7 +10737,7 @@ msgstr "Könyvelési tételek jóváhagyása" #: report:account.vat.declaration:0 #: field:report.account.receivable,credit:0 msgid "Credit" -msgstr "Követel" +msgstr "Követelés" #. module: account #: view:account.invoice:0 @@ -10032,7 +10758,7 @@ msgstr "Kontírozási modell" #: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." -msgstr "" +msgstr "Előbb van az induó időszak és utána a záró időszak." #. module: account #: field:account.invoice,number:0 @@ -10053,7 +10779,7 @@ msgstr "Általános" #: field:account.invoice.report,price_total:0 #: field:account.invoice.report,user_currency_price_total:0 msgid "Total Without Tax" -msgstr "Nettó érték" +msgstr "Nettó, adó nélküli érték" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -10111,13 +10837,13 @@ msgstr "Április" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 msgid "Profit (Loss) to report" -msgstr "" +msgstr "Nyereség (Veszteség) a kimutatásba" #. module: account #: code:addons/account/account_invoice.py:379 #, python-format msgid "There is no Sale/Purchase Journal(s) defined." -msgstr "" +msgstr "Nincs Értékesítés/Beszerzés napló(k) meghatározva." #. module: account #: view:account.move.line.reconcile.select:0 @@ -10127,18 +10853,18 @@ msgstr "Megnyitás a párosításhoz" #. module: account #: field:account.account,parent_left:0 msgid "Parent Left" -msgstr "Bal szülő" +msgstr "Bal fölérendelt szülő alkalmazás szabályok" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Title 2 (bold)" -msgstr "" +msgstr "Címmező 2 (kövér)" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree2 #: model:ir.ui.menu,name:account.menu_action_invoice_tree2 msgid "Supplier Invoices" -msgstr "Bejövő számlák" +msgstr "Bejövő, beszállítói számlák" #. module: account #: view:account.analytic.line:0 @@ -10174,7 +10900,7 @@ msgstr "Könyvelési időszak" #. module: account #: view:account.subscription:0 msgid "Remove Lines" -msgstr "Sorok eltávolítása" +msgstr "Tételsorok eltávolítása" #. module: account #: selection:account.account,type:0 @@ -10195,7 +10921,7 @@ msgstr "Belső típus" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Előzőleg létrehozott bejegyzések" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running @@ -10269,19 +10995,19 @@ msgstr "Eredeti adó" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequences" -msgstr "Üzleti év sorszámok" +msgstr "Üzleti év sorrendek" #. module: account #: selection:account.financial.report,display_detail:0 msgid "No detail" -msgstr "" +msgstr "Nincsenek részletek" #. module: account #: field:account.account,unrealized_gain_loss:0 #: model:ir.actions.act_window,name:account.action_account_gain_loss #: model:ir.ui.menu,name:account.menu_unrealized_gains_losses msgid "Unrealized Gain or Loss" -msgstr "" +msgstr "Nem realizált Nyereség vagy veszteség" #. module: account #: view:account.move:0 @@ -10293,12 +11019,12 @@ msgstr "Állapotok" #: help:product.category,property_account_income_categ:0 #: help:product.template,property_account_income:0 msgid "This account will be used to value outgoing stock using sale price." -msgstr "" +msgstr "Ez a főkönyvi számla értékeli a kimenő árukat az eladási ár alapján." #. module: account #: field:account.invoice,check_total:0 msgid "Verification Total" -msgstr "Számla végösszeg" +msgstr "Számla végösszeg ellenőrzés" #. module: account #: report:account.analytic.account.balance:0 @@ -10310,23 +11036,23 @@ msgstr "Számla végösszeg" #: field:report.account_type.sales,amount_total:0 #: field:report.invoice.created,amount_total:0 msgid "Total" -msgstr "Összesen" +msgstr "Bruttó érték összesen" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "" +msgstr "Nem lehet %s tervezet/proforma/érvénytelenített számla." #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Visszatérítés analitikai adógyűjtő számla" #. module: account #: view:account.move.bank.reconcile:0 msgid "Open for Bank Reconciliation" -msgstr "Megnyitás a bank egyeztetéshez" +msgstr "Megnyitás a bank egyeztetéshez, párosításhoz" #. module: account #: field:account.account,company_id:0 @@ -10392,7 +11118,7 @@ msgstr "Esedékesség kelte" #: field:cash.box.in,name:0 #: field:cash.box.out,name:0 msgid "Reason" -msgstr "" +msgstr "Indoklás" #. module: account #: selection:account.partner.ledger,filter:0 @@ -10420,12 +11146,12 @@ msgstr "Havi időszakok létrehozása" #. module: account #: field:account.tax.code.template,sign:0 msgid "Sign For Parent" -msgstr "Összegzésnél használt előjel" +msgstr "Fölérendeltekhez használt előjel" #. module: account #: model:ir.model,name:account.model_account_balance_report msgid "Trial Balance Report" -msgstr "Főkönyvi kivonat" +msgstr "Próbamérleg kimutatás" #. module: account #: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree @@ -10450,22 +11176,26 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disable" msgstr "" +"Ha párosítatlanná teszi a tranzakciókat, akkor a tranzakciókhoz kapcsolt " +"tranzakciókat is ellenőriznie kell, mert azok nem lesznek kiiktatva" #. module: account #: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" -msgstr "" +msgstr "Lehetetlen megváltoztatni az adót!" #. module: account #: constraint:account.bank.statement:0 msgid "The journal and period chosen have to belong to the same company." msgstr "" +"A kiválasztott naplónak és időszaknak ugyanahhoz a vállalkozáshoz kell " +"tartoznia." #. module: account #: view:account.invoice:0 msgid "Invoice lines" -msgstr "Számlasorok" +msgstr "Számla tételsorok" #. module: account #: field:account.chart,period_to:0 @@ -10475,7 +11205,7 @@ msgstr "Záró időszak" #. module: account #: sql_constraint:account.journal:0 msgid "The code of the journal must be unique per company !" -msgstr "A napló kódjának egyedinek kell lennie!" +msgstr "A napló kódjának egyedinek kell lennie mindegyik vállalathoz!" #. module: account #: model:ir.actions.act_window,help:account.action_account_invoice_report_all @@ -10484,6 +11214,9 @@ msgid "" "customer. The tool search can also be used to personalise your Invoices " "reports and so, match this analysis to your needs." msgstr "" +"Ebből a kimutatásból, áttekintheti az ehhez a partnerhez tartozó számlázott " +"összegeket. A kereső eszközzel egyénivé teheti a Számla kimutatásait és így, " +"az a kívánsága szerinti lesz." #. module: account #: view:account.partner.reconcile.process:0 @@ -10494,7 +11227,7 @@ msgstr "A következő partnerre lép" #: view:account.automatic.reconcile:0 #: view:account.move.line.reconcile.writeoff:0 msgid "Write-Off Move" -msgstr "Különbözet leírása" +msgstr "Különbözet bizonylat leírása" #. module: account #: model:process.node,note:account.process_node_paidinvoice0 @@ -10504,7 +11237,7 @@ msgstr "A számla állapota kész." #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Vásárlói fizetési nyomon követések kezelése" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -10514,7 +11247,7 @@ msgstr "Főkönyvi számlánkénti értékesítési kimutatás" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account msgid "Accounts Fiscal Position" -msgstr "ÁFA pozíció" +msgstr "Főkönyvi számla költségvetési ÁFA pozíció" #. module: account #: report:account.invoice:0 @@ -10526,7 +11259,7 @@ msgstr "ÁFA pozíció" #: selection:report.invoice.created,type:0 #, python-format msgid "Supplier Invoice" -msgstr "Bejövő számla" +msgstr "Beszállítók bejövő számlái" #. module: account #: field:account.account,debit:0 @@ -10555,18 +11288,18 @@ msgstr "Tartozik" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Title 3 (bold, smaller)" -msgstr "" +msgstr "Címmező 3 (kövér, kisebb)" #. module: account #: view:account.invoice:0 #: field:account.invoice,invoice_line:0 msgid "Invoice Lines" -msgstr "Számlasorok" +msgstr "Számla téetelsorok" #. module: account #: help:account.model.line,quantity:0 msgid "The optional quantity on entries." -msgstr "" +msgstr "A tételek mennyiségi lehetőségei." #. module: account #: field:account.automatic.reconcile,reconciled:0 @@ -10576,13 +11309,13 @@ msgstr "Párosított tranzakciók" #. module: account #: model:ir.model,name:account.model_report_account_receivable msgid "Receivable accounts" -msgstr "Vevő számlák" +msgstr "Vásárlóktól követelés számlák" #. module: account #: code:addons/account/account_move_line.py:783 #, python-format msgid "Already reconciled." -msgstr "" +msgstr "Már párosítottak." #. module: account #: selection:account.model.line,date_maturity:0 @@ -10597,7 +11330,7 @@ msgstr "Tartomány" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "" +msgstr "Beszerzési naplóval összefüggő analitikai napló tételei" #. module: account #: help:account.account,type:0 @@ -10608,6 +11341,11 @@ msgid "" "payable/receivable are for partners accounts (for debit/credit " "computations), closed for depreciated accounts." msgstr "" +"A 'Belső típus' a különböző elérhető számla tulajdonságokat tartalmazza: " +"nézetnek nem lehet napló bejegyzései, egyeztetett számlák melyek " +"tartalmazhatnak al-számlákat a több szintes vállalati felépítésnél, " +"fizetendők/követelések a fölérendelt főkönyvi számlákhoz (tartozik/követel " +"számításokhoz), lezárt a leértékelt számlákhoz." #. module: account #: report:account.account.balance:0 @@ -10616,23 +11354,23 @@ msgstr "" #: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" -msgstr "Amelyeken van mozgás" +msgstr "Amelyeken van bizonylata" #. module: account #: view:account.tax.code.template:0 msgid "Account Tax Code Template" -msgstr "Adógyűjtő sablon" +msgstr "Főkönyvi számla adógyűjtő sablon" #. module: account #: model:process.node,name:account.process_node_manually0 msgid "Manually" -msgstr "Manuálisan" +msgstr "Kézzel" #. module: account #: help:account.move,balance:0 msgid "" "This is a field only used for internal purpose and shouldn't be displayed" -msgstr "" +msgstr "Ez a mező belső használatra és nem szabad megjeleníteni" #. module: account #: selection:account.entries.report,month:0 @@ -10646,13 +11384,14 @@ msgstr "December" #. module: account #: view:account.invoice.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "Csoportosítás számla dátuma alapján" #. module: account #: code:addons/account/account_analytic_line.py:99 #, python-format msgid "There is no income account defined for this product: \"%s\" (id:%d)." msgstr "" +"Nincs bevételi számla meghatározva ehhez a termékhez: \"%s\" (id:%d)." #. module: account #: model:ir.actions.act_window,name:account.action_aged_receivable_graph @@ -10668,13 +11407,15 @@ msgstr "Alkalmazhatóság" #. module: account #: help:account.move.line,currency_id:0 msgid "The optional other currency if it is a multi-currency entry." -msgstr "Szabadon választott más pénznem, ha a tétel devizás." +msgstr "Szabadon választott más pénznem, ha a tétel több-devizás." #. module: account #: model:process.transition,note:account.process_transition_invoiceimport0 msgid "" "Import of the statement in the system from a supplier or customer invoice" -msgstr "Bejövő vagy kimenő számlából kivonat importálása a rendszerbe" +msgstr "" +"Beszállítói bejövő vagy vásárlói kimenő számlából kivonat importálása a " +"rendszerbe" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing @@ -10685,7 +11426,7 @@ msgstr "Számlázás" #: view:account.account:0 #: view:account.analytic.account:0 msgid "Parent Account" -msgstr "Gyűjtő főkönyvi számla" +msgstr "Fölérendelt gyűjtő főkönyvi számla" #. module: account #: view:report.account.receivable:0 @@ -10695,7 +11436,7 @@ msgstr "Típusonkénti főkönyvi számlák" #. module: account #: model:ir.model,name:account.model_account_analytic_chart msgid "Account Analytic Chart" -msgstr "Gyűjtőkód lista" +msgstr "Analitikai gyűjtőkód lista" #. module: account #: help:account.invoice,residual:0 @@ -10705,7 +11446,7 @@ msgstr "A számla végösszegéből még nem rendezett rész." #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "" +msgstr "Bejegyzések rendezése ezzel" #. module: account #: code:addons/account/account_invoice.py:1546 @@ -10714,6 +11455,7 @@ msgid "" "The selected unit of measure is not compatible with the unit of measure of " "the product." msgstr "" +"A kiválasztott mértékegység nem kompatibilis a termék mértékegységével." #. module: account #: view:account.fiscal.position:0 @@ -10737,6 +11479,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson egy új adó kód létrehozásához.\n" +"

\n" +" Országtól függően, az adó kód egy kitöltendő cella a \n" +" törvényes adóbevallásában. A rendszer lehetővé teszi az adó\n" +" felépítésének és az adók kiszámításának meghatározását ami " +"\n" +" rögzítésre kerül egy vagy több adó kódhoz.\n" +"

\n" +" " #. module: account #: selection:account.entries.report,month:0 @@ -10763,6 +11515,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Válassza ki a kitölteni kívánt időszakot és naplót.\n" +"

\n" +" Ezt a nézetet használja a könyvelő a gyors rendszer beviteli " +"\n" +" rögzítéshez. Ha egy beszállítói számlát szeretne rögzíteni,\n" +" akkor a kiadások főkönyvi számlánál kezdje a tétel " +"rögzítését.\n" +" A rendszer fel fogja automatikusan ajánlani az erre a " +"számlára,\n" +" és az ellenszámlára \"Fizetendő főkönyvi számla\", adót.\n" +"

\n" +" " #. module: account #: help:account.invoice.line,account_id:0 @@ -10773,7 +11538,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Install more chart templates" -msgstr "" +msgstr "Több számlatükör telepítése" #. module: account #: report:account.general.journal:0 @@ -10793,7 +11558,7 @@ msgstr "Számla keresése" #: code:addons/account/account_invoice.py:1159 #, python-format msgid "Refund" -msgstr "Jóváíró számla" +msgstr "Visszatérítés" #. module: account #: model:ir.model,name:account.model_res_partner_bank @@ -10823,22 +11588,26 @@ msgid "" "You cannot remove/deactivate an account which is set on a customer or " "supplier." msgstr "" +"Nem tudja eltávolítani/inaktiválni azt a számlát, mely már be lett állítva " +"egy vásárlóhoz vagy beszállítóhoz." #. module: account #: model:ir.model,name:account.model_validate_account_move_lines msgid "Validate Account Move Lines" -msgstr "Könyvelési tételsorok jóváhagyása" +msgstr "Könyvelési bizonylat tételsorok jóváhagyása" #. module: account #: help:res.partner,property_account_position:0 msgid "" "The fiscal position will determine taxes and accounts used for the partner." msgstr "" +"Az ÁFA pozíció meghatározza a partnerre vonatkozó adókat és főkönyvi " +"számlákat." #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 msgid "Invoice's state is Done." -msgstr "A számla állapota kész." +msgstr "A számla állapota, kész." #. module: account #: model:process.transition,note:account.process_transition_reconcilepaid0 @@ -10849,7 +11618,7 @@ msgstr "Amint a párosítás elkészül, a számla rendezettnek minősül." #: code:addons/account/wizard/account_change_currency.py:59 #, python-format msgid "New currency is not configured properly." -msgstr "" +msgstr "Az új pénznem nem megfelelően beállított." #. module: account #: view:account.account.template:0 @@ -10859,18 +11628,18 @@ msgstr "Főkönyvi számla sablonok keresése" #. module: account #: view:account.invoice.tax:0 msgid "Manual Invoice Taxes" -msgstr "Adók" +msgstr "Kézzel megadott adók a számlán" #. module: account #: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." -msgstr "" +msgstr "A beszállító fizetési feltételének nincs fizetési feltétel tétele." #. module: account #: field:account.account,parent_right:0 msgid "Parent Right" -msgstr "Jobb szülő" +msgstr "Jobb fölérendelt szülő alkalmazás szabályok" #. module: account #. openerp-web @@ -10878,7 +11647,7 @@ msgstr "Jobb szülő" #: code:addons/account/static/src/js/account_move_reconciliation.js:80 #, python-format msgid "Never" -msgstr "" +msgstr "Soha" #. module: account #: model:ir.model,name:account.model_account_addtmpl_wizard @@ -10894,26 +11663,28 @@ msgstr "account.addtmpl.wizard" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Partner's" -msgstr "Vevő/szállító számlák" +msgstr "Partnerek" #. module: account #: field:account.account,note:0 msgid "Internal Notes" -msgstr "" +msgstr "Belső jegyzetek" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear #: view:ir.sequence:0 #: model:ir.ui.menu,name:account.menu_action_account_fiscalyear msgid "Fiscal Years" -msgstr "Üzleti év" +msgstr "Üzleti évek" #. module: account #: help:account.analytic.journal,active:0 msgid "" "If the active field is set to False, it will allow you to hide the analytic " "journal without removing it." -msgstr "Ha az aktív mező nincs bejelölve, nem használható a gyűjtőnapló." +msgstr "" +"Ha az aktív mező hamis, akkor eltüntetheti az analitikus naplót annak " +"törlése nélkül." #. module: account #: field:account.analytic.line,ref:0 @@ -10924,13 +11695,13 @@ msgstr "Hiv." #: field:account.use.model,model:0 #: model:ir.model,name:account.model_account_model msgid "Account Model" -msgstr "Modell" +msgstr "Főkönyvi számla modell" #. module: account #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Loss" -msgstr "" +msgstr "Veszteség" #. module: account #: selection:account.entries.report,month:0 @@ -10945,7 +11716,7 @@ msgstr "Február" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_closing:0 msgid "Closing Unit Numbers" -msgstr "Záró darabszám" +msgstr "Záró egység számok" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -10960,7 +11731,7 @@ msgstr "Bankszámla" #: model:ir.actions.act_window,name:account.action_account_central_journal #: model:ir.model,name:account.model_account_central_journal msgid "Account Central Journal" -msgstr "Központi napló" +msgstr "Főkönyvi számla központi napló" #. module: account #: report:account.overdue:0 @@ -11002,7 +11773,7 @@ msgstr "Beszerzés főkönyvi számla a terméksablonban" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "Vásárló fizetési feltétele" #. module: account #: help:accounting.report,label_filter:0 @@ -11010,11 +11781,13 @@ msgid "" "This label will be displayed on report to show the balance computed for the " "given comparison filter." msgstr "" +"Ez a címke lesz feltüntetve a kimutatásokon a megadott összehasonlító szűrő " +"szerint kiszámított egyenleg megmutatásához." #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round per line" -msgstr "" +msgstr "Tételenkénti kerekítés" #. module: account #: help:account.move.line,amount_residual_currency:0 diff --git a/addons/account/i18n/id.po b/addons/account/i18n/id.po index d4003f4d96a..e88f5d20880 100644 --- a/addons/account/i18n/id.po +++ b/addons/account/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/is.po b/addons/account/i18n/is.po index 27a66ba3026..2d39a7fda04 100644 --- a/addons/account/i18n/is.po +++ b/addons/account/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/it.po b/addons/account/i18n/it.po index 713ad142033..6a5d34f05fc 100644 --- a/addons/account/i18n/it.po +++ b/addons/account/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ja.po b/addons/account/i18n/ja.po index 4be59c5b20c..f6848c652cc 100644 --- a/addons/account/i18n/ja.po +++ b/addons/account/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -45,7 +45,7 @@ msgstr "仕訳帳エントリーの消し込み" #: view:account.bank.statement:0 #: view:account.move.line:0 msgid "Account Statistics" -msgstr "アカウントの統計情報" +msgstr "勘定統計" #. module: account #: view:account.invoice:0 @@ -103,7 +103,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "消し込み" +msgstr "消込" #. module: account #: field:account.bank.statement,name:0 @@ -166,7 +166,7 @@ msgstr "" #: field:account.fiscal.position.account,account_src_id:0 #: field:account.fiscal.position.account.template,account_src_id:0 msgid "Account Source" -msgstr "元アカウント" +msgstr "元勘定" #. module: account #: model:ir.actions.act_window,help:account.action_account_period @@ -200,7 +200,7 @@ msgstr "列ラベル" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "勘定コードで使用する桁数" #. module: account #: help:account.analytic.journal,type:0 @@ -224,7 +224,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_tax_template_form #: model:ir.ui.menu,name:account.menu_action_account_tax_template_form msgid "Tax Templates" -msgstr "税金テンプレート" +msgstr "税テンプレート" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_select @@ -249,7 +249,7 @@ msgstr "検証済" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "" +msgstr "収益ビュー" #. module: account #: help:account.account,user_type:0 @@ -264,7 +264,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "次のクレジットノート番号" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -273,6 +273,8 @@ msgid "" "sales, purchase, expense, contra, etc.\n" " This installs the module account_voucher." msgstr "" +"銀行や現金、販売、仕入、費用、契約など証票記入のすべての基本的な要件を含みます。\n" +" account_voucherモジュールがインストールされます。" #. module: account #: model:ir.actions.act_window,name:account.action_account_use_model_create_entry @@ -304,6 +306,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして顧客返金を登録してください。\n" +"

\n" +" 返金は請求書を完全または部分的にクレジットする文書です。\n" +"

\n" +" 顧客返金をマニュアルで登録する代わりに、関連する顧客請求書から直接生成することもできます。\n" +"

\n" +" " #. module: account #: help:account.installer,charts:0 @@ -315,7 +325,7 @@ msgstr "あなたの国に基づき、あなたの会社の会計ニーズに可 #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "消し込みなしアカウント" +msgstr "" #. module: account #: field:account.config.settings,module_account_budget:0 @@ -340,7 +350,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "" +msgstr "多通貨を許可" #. module: account #: code:addons/account/account_invoice.py:77 @@ -361,12 +371,12 @@ msgstr "6月" #: code:addons/account/wizard/account_automatic_reconcile.py:148 #, python-format msgid "You must select accounts to reconcile." -msgstr "" +msgstr "消込する勘定科目を選択してください。" #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "分析会計を使用。" #. module: account #: view:account.invoice:0 @@ -374,7 +384,7 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "営業担当者" #. module: account #: view:account.bank.statement:0 @@ -396,7 +406,7 @@ msgstr "作成日" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "仕入返金" +msgstr "購買返金" #. module: account #: selection:account.journal,type:0 @@ -411,7 +421,7 @@ msgstr "明細入力に使用される通貨" #. module: account #: field:account.journal,default_debit_account_id:0 msgid "Default Debit Account" -msgstr "デフォルト借方アカウント" +msgstr "デフォルト借方勘定" #. module: account #: view:account.move:0 @@ -429,6 +439,10 @@ msgid "" "this box, you will be able to do invoicing & payments,\n" " but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"企業や個人が所有する資産を管理します。\n" +" 資産で発生した減価償却費を追跡、口座の動きを作成します。\n" +" account_assetモジュールがインストールされます。\n" +" このボックスをチェックしない場合も請求と支払いはできますが、仕訳項目や勘定科目には影響しません。" #. module: account #: help:account.bank.statement.line,name:0 @@ -440,7 +454,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "期間:" #. module: account #: field:account.account.template,chart_template_id:0 @@ -453,7 +467,7 @@ msgstr "チャートテンプレート" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" -msgstr "" +msgstr "変更:払い戻しを作成して、消し込みと新たなドラフト請求書を作成" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -467,6 +481,9 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"「明細ごとに丸め」を選択すると最初に購入/販売注文書や請求書の各行に対して税額の計算と丸めを行い、次にこれらを加算して合計金額とします。「全体で丸め」を選" +"択すると購入/販売注文書や請求書の各行に対して税額の計算を行い、最終的にこれらの合計金額を丸めます。\r\n" +"税込みで販売する場合は、税込み行を加算した金額と合計が一致するように「明細ごとに丸め」を選択します。" #. module: account #: model:ir.model,name:account.model_wizard_multi_charts_accounts @@ -481,7 +498,7 @@ msgstr "オプションの他の通貨で表現された金額" #. module: account #: view:account.journal:0 msgid "Available Coins" -msgstr "" +msgstr "利用可能な硬貨" #. module: account #: field:accounting.report,enable_filter:0 @@ -539,7 +556,7 @@ msgstr "" #. module: account #: field:account.bank.statement,account_id:0 msgid "Account used in this journal" -msgstr "この仕訳帳で使用されるアカウント" +msgstr "この仕訳帳で使用される勘定" #. module: account #: help:account.aged.trial.balance,chart_account_id:0 @@ -572,7 +589,7 @@ msgstr "" #. module: account #: field:account.automatic.reconcile,unreconciled:0 msgid "Not reconciled transactions" -msgstr "未消し込み取引" +msgstr "未消込トランザクション" #. module: account #: report:account.general.ledger:0 @@ -585,13 +602,13 @@ msgstr "相手方" #: field:account.fiscal.position,tax_ids:0 #: field:account.fiscal.position.template,tax_ids:0 msgid "Tax Mapping" -msgstr "税金のマッピング" +msgstr "税マッピング" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state #: model:ir.ui.menu,name:account.menu_wizard_fy_close_state msgid "Close a Fiscal Year" -msgstr "会計年度を閉じる" +msgstr "会計年度締" #. module: account #: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 @@ -608,7 +625,7 @@ msgstr "" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "仕訳の小数点精度" #. module: account #: selection:account.config.settings,period:0 @@ -639,7 +656,7 @@ msgstr "" #: view:account.fiscal.position:0 #: view:account.fiscal.position.template:0 msgid "Taxes Mapping" -msgstr "税金マッピング" +msgstr "税マッピング" #. module: account #: report:account.central.journal:0 @@ -661,7 +678,7 @@ msgstr "" #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "収益勘定" #. module: account #: code:addons/account/account_move_line.py:1156 @@ -672,7 +689,7 @@ msgstr "所定の日付のために期間が見つからないか、複数の期 #. module: account #: model:ir.model,name:account.model_report_account_type_sales msgid "Report of the Sales by Account Type" -msgstr "アカウントタイプ別売上レポート" +msgstr "勘定タイプ別売上レポート" #. module: account #: code:addons/account/account.py:3201 @@ -702,12 +719,12 @@ msgstr "期間を閉じる" #. module: account #: model:ir.model,name:account.model_account_common_partner_report msgid "Account Common Partner Report" -msgstr "アカウント共有パートナレポート" +msgstr "勘定共通取引先レポート" #. module: account #: field:account.fiscalyear.close,period_id:0 msgid "Opening Entries Period" -msgstr "開始エントリーの期間" +msgstr "期初仕訳期間" #. module: account #: model:ir.model,name:account.model_account_journal_period @@ -739,17 +756,17 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" -msgstr "売掛金" +msgstr "売掛金勘定" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "あなたの会社の銀行口座を設定" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "返金を作成" #. module: account #: constraint:account.move.line:0 @@ -766,7 +783,7 @@ msgstr "総勘定元帳レポート" #. module: account #: view:account.invoice:0 msgid "Re-Open" -msgstr "再度開く" +msgstr "再開" #. module: account #: view:account.use.model:0 @@ -790,7 +807,7 @@ msgstr "請求書印刷" msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." -msgstr "" +msgstr "すでに消し込みされている請求書は %s できないため、最初に未消し込みにする必要があります。請求の払い戻しのみできます。" #. module: account #: selection:account.financial.report,display_detail:0 @@ -860,7 +877,7 @@ msgstr "アカウントサブスクリプション行" #. module: account #: help:account.invoice,reference:0 msgid "The partner reference of this invoice." -msgstr "請求書のパートナ参照" +msgstr "この請求書の取引先参照" #. module: account #: view:account.invoice.report:0 @@ -871,7 +888,7 @@ msgstr "仕入先請求書と返金" #: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "エントリは既に消込済みです。" #. module: account #: view:account.move.line.unreconcile.select:0 @@ -883,12 +900,12 @@ msgstr "未消し込み" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "アカウント分析仕訳帳" +msgstr "勘定分析仕訳帳" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Eメールで送信" #. module: account #: help:account.central.journal,amount_currency:0 @@ -898,7 +915,7 @@ msgstr "" msgid "" "Print Report with the currency column if the currency differs from the " "company currency." -msgstr "" +msgstr "会社の通貨と異なる場合は通貨欄を使用してレポートを印刷します。" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -908,7 +925,7 @@ msgstr "J.C. / Move 名前" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "勘定コードと名前" #. module: account #: selection:account.entries.report,month:0 @@ -938,6 +955,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 仕訳項目は見つかりません。\n" +"

\n" +" " #. module: account #: code:addons/account/account.py:1677 @@ -984,7 +1005,7 @@ msgstr "期日" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "" +msgstr "仕入仕訳帳" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid @@ -1007,7 +1028,7 @@ msgstr "合計金額" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "" +msgstr "仕入先から提供される請求書の参照" #. module: account #: selection:account.account,type:0 @@ -1042,7 +1063,7 @@ msgstr "仕訳帳の一元化" #. module: account #: selection:account.journal,type:0 msgid "Sale Refund" -msgstr "売上返金" +msgstr "販売返金" #. module: account #: model:process.node,note:account.process_node_accountingstatemententries0 @@ -1094,7 +1115,7 @@ msgstr "コード" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "機能" #. module: account #: code:addons/account/account.py:2346 @@ -1112,7 +1133,7 @@ msgstr "分析仕訳帳がありません。" #: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance #: model:ir.ui.menu,name:account.menu_account_partner_balance_report msgid "Partner Balance" -msgstr "パートナ残高" +msgstr "取引先残高" #. module: account #: model:ir.actions.act_window,help:account.action_account_gain_loss @@ -1139,14 +1160,14 @@ msgstr "アカウント名" #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "" +msgstr "前回の期末残高で開始" #. module: account #: help:account.tax.code,notprintable:0 msgid "" "Check this box if you don't want any tax related to this tax code to appear " "on invoices" -msgstr "" +msgstr "請求書に表示される税コードに関連する税を必要としない場合は、このボックスをチェックします。" #. module: account #: field:report.account.receivable,name:0 @@ -1173,7 +1194,7 @@ msgstr "これらのタイプはあなたの国に従って定義されていま #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "返金 " #. module: account #: code:addons/account/account_analytic_line.py:90 @@ -1201,7 +1222,7 @@ msgstr "キャッシュレジスタ" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "売上返金仕訳帳" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1220,6 +1241,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして新しいキャッシュログを作成してください。\n" +"

\n" +" " +"キャッシュレジスタは現金仕訳帳の記入を管理します。この機能は日常的な現金支払いを簡単にします。キャッシュボックス内の残高を入力した後で、入金や出金があった" +"時に入力します。\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_bank @@ -1237,7 +1266,7 @@ msgstr "期首日" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "返金" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 @@ -1247,7 +1276,7 @@ msgstr "取引明細書の確認" #. module: account #: view:account.tax:0 msgid "Account Tax" -msgstr "税金アカウント" +msgstr "勘定税" #. module: account #: help:account.account,foreign_balance:0 @@ -1271,7 +1300,7 @@ msgstr "貸方の一元化" #: model:ir.actions.act_window,name:account.action_account_tax_code_template_form #: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form msgid "Tax Code Templates" -msgstr "税金コードテンプレート" +msgstr "税コードテンプレート" #. module: account #: constraint:account.move.line:0 @@ -1283,7 +1312,7 @@ msgstr "" #. module: account #: view:account.invoice.cancel:0 msgid "Cancel Invoices" -msgstr "請求書のキャンセル" +msgstr "請求書取消" #. module: account #: help:account.journal,code:0 @@ -1293,7 +1322,7 @@ msgstr "コードはレポート上に表示されます。" #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "仕入時にかかる税金" +msgstr "購買で使用する税" #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1302,7 +1331,7 @@ msgstr "仕入時にかかる税金" #: field:account.tax.template,tax_code_id:0 #: model:ir.model,name:account.model_account_tax_code msgid "Tax Code" -msgstr "税金コード" +msgstr "税コード" #. module: account #: field:account.account,currency_mode:0 @@ -1381,7 +1410,7 @@ msgstr "ドラフトサブスクリプション" #: model:ir.model,name:account.model_account_account #: field:report.account.sales,account_id:0 msgid "Account" -msgstr "アカウント" +msgstr "勘定科目" #. module: account #: field:account.tax,include_base_amount:0 @@ -1419,7 +1448,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_tax_report #: model:ir.ui.menu,name:account.next_id_27 msgid "Taxes" -msgstr "税金" +msgstr "税" #. module: account #: code:addons/account/wizard/account_financial_report.py:70 @@ -1441,7 +1470,7 @@ msgstr "アカウントのテンプレート" #. module: account #: view:account.tax.code.template:0 msgid "Search tax template" -msgstr "税金テンプレート検索" +msgstr "税テンプレート検索" #. module: account #: view:account.move.reconcile:0 @@ -1454,7 +1483,7 @@ msgstr "エントリーの消し込み" #: model:ir.actions.report.xml,name:account.account_overdue #: view:res.company:0 msgid "Overdue Payments" -msgstr "期限超過の支払い" +msgstr "滞納" #. module: account #: report:account.third_party_ledger:0 @@ -1476,7 +1505,7 @@ msgstr "レポートオプション" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "締対象会計年度" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 @@ -1486,12 +1515,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_entries_report msgid "Journal Items Analysis" -msgstr "仕訳帳項目分析" +msgstr "仕訳項目分析" #. module: account #: model:ir.ui.menu,name:account.next_id_22 msgid "Partners" -msgstr "パートナ" +msgstr "取引先" #. module: account #: help:account.bank.statement,state:0 @@ -1504,7 +1533,7 @@ msgstr "" #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "請求書ステータス" #. module: account #: view:account.bank.statement:0 @@ -1518,7 +1547,7 @@ msgstr "銀行取引明細書" #. module: account #: field:res.partner,property_account_receivable:0 msgid "Account Receivable" -msgstr "売掛金" +msgstr "売掛金勘定" #. module: account #: code:addons/account/account.py:612 @@ -1536,7 +1565,7 @@ msgstr "" #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" -msgstr "残高が0ではありません。" +msgstr "残高があるもの(<>0)" #. module: account #: code:addons/account/account.py:1483 @@ -1549,7 +1578,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Search Taxes" -msgstr "税金検索" +msgstr "税検索" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger @@ -1590,7 +1619,7 @@ msgstr "桁数" #. module: account #: field:account.journal,entry_posted:0 msgid "Skip 'Draft' State for Manual Entries" -msgstr "手動入力のため、ドラフト状態をスキップします。" +msgstr "マニュアル入力につき「ドラフト」状態をスキップ" #. module: account #: code:addons/account/report/common_report_header.py:92 @@ -1607,7 +1636,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "" +msgstr "請求と支払い" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -1646,7 +1675,7 @@ msgstr "事例コード" #. module: account #: field:account.config.settings,company_footer:0 msgid "Bank accounts footer preview" -msgstr "" +msgstr "銀行口座のフッタをプレビュー" #. module: account #: selection:account.account,type:0 @@ -1657,7 +1686,7 @@ msgstr "" #: selection:account.fiscalyear,state:0 #: selection:account.period,state:0 msgid "Closed" -msgstr "閉じた" +msgstr "クローズ" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries @@ -1687,7 +1716,7 @@ msgstr "非課税" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "詳細設定" #. module: account #: view:account.bank.statement:0 @@ -1697,19 +1726,19 @@ msgstr "銀行明細の検索" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "未転記仕訳帳項目" +msgstr "未転記仕訳項目" #. module: account #: view:account.chart.template:0 #: field:account.chart.template,property_account_payable:0 msgid "Payable Account" -msgstr "買掛金" +msgstr "買掛金勘定" #. module: account #: field:account.tax,account_paid_id:0 #: field:account.tax.template,account_paid_id:0 msgid "Refund Tax Account" -msgstr "返金税金アカウント" +msgstr "返金税勘定" #. module: account #: model:ir.model,name:account.model_ir_sequence @@ -1788,7 +1817,7 @@ msgstr "会計年度の順序" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "分析会計" #. module: account #: report:account.overdue:0 @@ -1807,18 +1836,21 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"「明細ごとに丸め」を選択すると最初に購入/販売注文書や請求書の各行に対して税額の計算と丸めを行い、次にこれらを加算して合計金額とします。「全体で丸め」を選" +"択すると購入/販売注文書や請求書の各行に対して税額の計算を行い、最終的にこれらの合計金額を丸めます。\r\n" +"税込みで販売する場合は、税込み行を加算した金額と合計が一致するように「明細ごとに丸め」を選択します。" #. module: account #: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all #: view:report.account_type.sales:0 msgid "Sales by Account Type" -msgstr "アカウントタイプ別売上" +msgstr "勘定タイプ別売上" #. module: account #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15日以内" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing @@ -1861,6 +1893,8 @@ msgid "" "Select a configuration package to setup automatically your\n" " taxes and chart of accounts." msgstr "" +"税および勘定科目表を自動設定するための設定パッケージを\n" +" 選択してください。" #. module: account #: view:account.analytic.account:0 @@ -1876,7 +1910,7 @@ msgstr "" #: report:account.journal.period.print.sale.purchase:0 #: view:account.tax.template:0 msgid "Tax Declaration" -msgstr "税金申告" +msgstr "税申告" #. module: account #: help:account.journal.period,active:0 @@ -1898,18 +1932,18 @@ msgstr "売掛金と買掛金" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "" +msgstr "支払指図を管理" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "期間" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,last_closing_balance:0 msgid "Last Closing Balance" -msgstr "" +msgstr "前回の期末残高" #. module: account #: model:ir.model,name:account.model_account_common_journal_report @@ -1919,7 +1953,7 @@ msgstr "アカウント共通の仕訳帳レポート" #. module: account #: selection:account.partner.balance,display_partner:0 msgid "All Partners" -msgstr "全パートナ" +msgstr "全取引先" #. module: account #: view:account.analytic.chart:0 @@ -1941,7 +1975,7 @@ msgstr "顧客の参照:" #: help:account.tax.template,ref_tax_code_id:0 #: help:account.tax.template,tax_code_id:0 msgid "Use this code for the tax declaration." -msgstr "" +msgstr "このコードは税申告のために使用します。" #. module: account #: help:account.period,special:0 @@ -1961,7 +1995,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "仕入先に小切手で支払う" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -1984,6 +2018,11 @@ msgid "" "useful because it enables you to preview at any time the tax that you owe at " "the start and end of the month or quarter." msgstr "" +"このメニューでは請求書や支払いに基づいた税申告書を印刷します。\r\n" +"会計年度のひとつ、または複数の期間を選択します。\r\n" +"税申告に必要な情報はOpenERPが請求書(国によっては支払い)から自動的に生成します。\r\n" +"このデータはリアルタイムで更新されます。\r\n" +"月または四半期の開始と終了に支払い義務のある税金をいつでもプレビューできるため非常に役立ちます。" #. module: account #: code:addons/account/account.py:409 @@ -2112,11 +2151,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして銀行取引明細書を登録してください。\n" +"

\n" +" " +"銀行取引明細書は一定の期間に渡って銀行口座に発生するすべての金融取引の要約です。あなたは、これを銀行から定期的に受け取るべきです。\n" +"

\n" +" OpenERPは関連する販売または購買の請求書と取引明細書を直接に擦り合わせることができます。\n" +"

\n" +" " #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "デフォルトの企業通貨" #. module: account #: field:account.invoice,move_id:0 @@ -2147,7 +2195,7 @@ msgstr "売上 / 仕入仕訳帳" #: view:account.analytic.account:0 #: field:account.invoice.tax,account_analytic_id:0 msgid "Analytic account" -msgstr "分析アカウント" +msgstr "分析勘定" #. module: account #: code:addons/account/account_bank_statement.py:406 @@ -2200,7 +2248,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "" +msgstr "仕訳帳:" #. module: account #: sql_constraint:account.fiscal.position.tax:0 @@ -2211,7 +2259,7 @@ msgstr "" #: view:account.tax:0 #: view:account.tax.template:0 msgid "Tax Definition" -msgstr "税金の定義" +msgstr "税定義" #. module: account #: view:account.config.settings:0 @@ -2241,7 +2289,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "資産管理" #. module: account #: view:account.account:0 @@ -2255,7 +2303,7 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" -msgstr "買掛金" +msgstr "買掛金勘定" #. module: account #: constraint:account.move.line:0 @@ -2281,7 +2329,7 @@ msgstr "アクティブ項目にFalseが設定されている場合、それを #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "売上仕訳帳に関連した分析仕訳帳項目" +msgstr "売上仕訳帳に紐づく分析仕訳項目" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -2334,7 +2382,7 @@ msgstr "エントリーを開く" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "" +msgstr "次の仕入先クレジットノート番号" #. module: account #: field:account.automatic.reconcile,account_ids:0 @@ -2385,7 +2433,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "" +msgstr "仕入先請求書の合計を確認" #. module: account #: selection:account.invoice,state:0 @@ -2453,12 +2501,12 @@ msgstr "動作中" #: field:product.category,property_account_income_categ:0 #: field:product.template,property_account_income:0 msgid "Income Account" -msgstr "損益勘定" +msgstr "収益勘定" #. module: account #: help:account.config.settings,default_sale_tax:0 msgid "This sale tax will be assigned by default on new products." -msgstr "" +msgstr "販売税はデフォルトで新製品に割り当てられます。" #. module: account #: report:account.general.ledger_landscape:0 @@ -2629,17 +2677,17 @@ msgstr "請求書のドラフト状態" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "勘定属性" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "ドラフト返金を作成" #. module: account #: view:account.partner.reconcile.process:0 msgid "Partner Reconciliation" -msgstr "パートナ消し込み" +msgstr "取引先消込" #. module: account #: view:account.analytic.line:0 @@ -2650,7 +2698,7 @@ msgstr "" #: field:account.tax,tax_code_id:0 #: view:account.tax.code:0 msgid "Account Tax Code" -msgstr "税金コードアカウント" +msgstr "勘定税コード" #. module: account #: model:account.payment.term,name:account.account_payment_term_advance @@ -2721,7 +2769,7 @@ msgstr "" #. module: account #: field:product.template,supplier_taxes_id:0 msgid "Supplier Taxes" -msgstr "仕入先税金" +msgstr "仕入先税" #. module: account #: view:res.partner:0 @@ -2747,6 +2795,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして仕訳記入を登録してください。\n" +"

\n" +" 仕訳記入はそれぞれが貸方か借方の取引からなる、いくつかの仕訳項目で構成されます。\n" +"

\n" +" OpenERPは請求書や返金、仕入先支払い、銀行取引明細書などの会計文書ごとにひとつの仕訳記入を自動で登録します。\n" +" したがって、その他の操作についてはマニュアルで仕訳記入しなければなりません。\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -2762,7 +2819,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "" +msgstr "次の仕入先請求書番号" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -2793,7 +2850,7 @@ msgstr "アカウント移動行の消し込み(償却)" #: view:account.tax:0 #: model:ir.model,name:account.model_account_tax msgid "Tax" -msgstr "税金" +msgstr "税" #. module: account #: view:account.analytic.account:0 @@ -2805,13 +2862,13 @@ msgstr "税金" #: field:account.move.line,analytic_account_id:0 #: field:account.move.line.reconcile.writeoff,analytic_id:0 msgid "Analytic Account" -msgstr "分析アカウント" +msgstr "分析勘定" #. module: account #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "デフォルト消費税(購入)" #. module: account #: view:account.account:0 @@ -2928,7 +2985,7 @@ msgstr "支払済 / 消し込み済" #: field:account.tax,ref_base_code_id:0 #: field:account.tax.template,ref_base_code_id:0 msgid "Refund Base Code" -msgstr "基本コードの返金" +msgstr "返金基本コード" #. module: account #: model:ir.actions.act_window,name:account.action_bank_statement_tree @@ -2973,14 +3030,14 @@ msgstr "親チャートテンプレート" #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 msgid "Parent Tax Account" -msgstr "親税金アカウント" +msgstr "親税勘定" #. module: account #: view:account.aged.trial.balance:0 #: model:ir.actions.act_window,name:account.action_account_aged_balance_view #: model:ir.ui.menu,name:account.menu_aged_trial_balance msgid "Aged Partner Balance" -msgstr "パートナ残高年齢表" +msgstr "取引先残高年齢表" #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 @@ -3051,7 +3108,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Accounting Period" -msgstr "" +msgstr "会計期間" #. module: account #: field:account.config.settings,sale_journal_id:0 @@ -3086,7 +3143,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_tax_code_list #: model:ir.ui.menu,name:account.menu_action_tax_code_list msgid "Tax codes" -msgstr "税金コード" +msgstr "税コード" #. module: account #: view:account.account:0 @@ -3118,7 +3175,7 @@ msgstr "8月" #. module: account #: field:accounting.report,debit_credit:0 msgid "Display Debit/Credit Columns" -msgstr "" +msgstr "借方/貸方欄を表示" #. module: account #: selection:account.entries.report,month:0 @@ -3232,7 +3289,7 @@ msgstr "" #. module: account #: field:account.partner.ledger,page_split:0 msgid "One Partner Per Page" -msgstr "ページ毎に1パートナ" +msgstr "ページ毎に1取引先" #. module: account #: field:account.account,child_parent_ids:0 @@ -3297,7 +3354,7 @@ msgstr "条件" #. module: account #: field:account.chart.template,tax_template_ids:0 msgid "Tax Template List" -msgstr "税金テンプレートリスト" +msgstr "税テンプレートリスト" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal @@ -3331,7 +3388,7 @@ msgstr "アカウントコードのために使用される数字の桁数" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "仕入先支払条件" #. module: account #: view:account.fiscalyear:0 @@ -3347,7 +3404,7 @@ msgstr "常に" #: field:account.config.settings,module_account_accountant:0 msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." -msgstr "" +msgstr "完全な会計機能:仕訳、法的な計算書、勘定科目表など。" #. module: account #: view:account.analytic.line:0 @@ -3369,7 +3426,7 @@ msgstr "モデル" #. module: account #: help:account.invoice.tax,base_code_id:0 msgid "The account basis of the tax declaration." -msgstr "税金申告の会計基準" +msgstr "税申告の会計基準" #. module: account #: selection:account.account,type:0 @@ -3404,7 +3461,7 @@ msgstr "電子ファイル" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "消込参照" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 @@ -3414,12 +3471,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_tax_code_template msgid "Tax Code Template" -msgstr "税金コードテンプレート" +msgstr "税コードテンプレート" #. module: account #: model:ir.model,name:account.model_account_partner_ledger msgid "Account Partner Ledger" -msgstr "アカウントパートナ元帳" +msgstr "勘定取引先元帳" #. module: account #: model:email.template,body_html:account.email_template_edi_invoice @@ -3603,7 +3660,7 @@ msgstr "仕訳帳" #. module: account #: field:account.partner.reconcile.process,to_reconcile:0 msgid "Remaining Partners" -msgstr "存続パートナ" +msgstr "存続取引先" #. module: account #: view:account.subscription:0 @@ -3632,7 +3689,7 @@ msgstr "会計アプリケーションの設定" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration msgid "Account Tax Declaration" -msgstr "" +msgstr "税申告を報告" #. module: account #: help:account.bank.statement,name:0 @@ -3664,7 +3721,7 @@ msgstr "期首残高" #: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" -msgstr "パートナが定義されていません。" +msgstr "取引先の定義がありません。" #. module: account #: model:ir.actions.act_window,name:account.action_account_period_close @@ -3677,7 +3734,7 @@ msgstr "期間を閉じる" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "期首小計" #. module: account #: constraint:account.move.line:0 @@ -3711,6 +3768,8 @@ msgid "" "quotations with a button \"Pay with Paypal\" in automated emails or through " "the OpenERP portal." msgstr "" +"クレジットカードなどでオンライン決済を受信するためのPayPalアカウント(電子メール)を設定した場合、顧客は「PayPalで支払い」ボタンにより自動化さ" +"れた電子メールやOpenERPポータルを通じて請求書や見積書の支払いができるようになります。" #. module: account #: code:addons/account/account_move_line.py:536 @@ -3770,7 +3829,7 @@ msgid "" " waiting for the document to be issued " "by\n" " your supplier/customer." -msgstr "" +msgstr "仕入先/顧客が文書を発行するのを待って、この貸方票を直接または草案にして編集と検証ができます。" #. module: account #: view:validate.account.move.lines:0 @@ -3836,6 +3895,15 @@ msgid "" "

\n" " " msgstr "" +"

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

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

\n" +" 顧客との議論は各請求書の下部に自動で表示されます。\n" +"

\n" +" " #. module: account #: field:account.tax.code,name:0 @@ -3853,7 +3921,7 @@ msgstr "ドラフト請求書" #. module: account #: view:account.config.settings:0 msgid "Options" -msgstr "" +msgstr "オプション" #. module: account #: field:account.aged.trial.balance,period_length:0 @@ -3876,7 +3944,7 @@ msgstr "売上 / 仕入仕訳帳印刷" #. module: account #: view:account.installer:0 msgid "Continue" -msgstr "" +msgstr "次へ" #. module: account #: view:account.invoice.report:0 @@ -3907,12 +3975,12 @@ msgstr "" #. module: account #: field:account.invoice.tax,tax_amount:0 msgid "Tax Code Amount" -msgstr "税金コード金額" +msgstr "税コード金額" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "未消し込み仕訳帳項目" +msgstr "未消込仕訳項目" #. module: account #: selection:account.account.type,close_method:0 @@ -3922,7 +3990,7 @@ msgstr "詳細" #. module: account #: help:account.config.settings,default_purchase_tax:0 msgid "This purchase tax will be assigned by default on new products." -msgstr "" +msgstr "購入税はデフォルトで新製品に割り当てられます。" #. module: account #: report:account.invoice:0 @@ -3959,7 +4027,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process msgid "Reconcilation Process partner by partner" -msgstr "パートナ毎のパートナ消し込みプロセス" +msgstr "取引先毎の消込プロセス" #. module: account #: view:account.chart:0 @@ -4092,7 +4160,7 @@ msgstr "適用可能(Pythonコードによって計算)でない場合は、 #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "仕入先請求書の合計を確認" #. module: account #: view:account.tax:0 @@ -4130,7 +4198,7 @@ msgstr "分析行検索" #. module: account #: field:res.partner,property_account_payable:0 msgid "Account Payable" -msgstr "買掛金" +msgstr "買掛金勘定" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:88 @@ -4190,7 +4258,7 @@ msgstr "" #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 msgid "Name" -msgstr "名前" +msgstr "名称" #. module: account #: code:addons/account/installer.py:115 @@ -4261,7 +4329,7 @@ msgstr "選択された会計年度、期間、または勘定科目表は同じ msgid "" "Check this box if you don't want any tax related to this tax Code to appear " "on invoices." -msgstr "" +msgstr "請求書に表示される税コードに関連する税を必要としない場合は、このボックスをチェックします。" #. module: account #: code:addons/account/account_move_line.py:1058 @@ -4343,7 +4411,7 @@ msgstr "定期的行" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "パートナの表示" +msgstr "取引先表示" #. module: account #: view:account.invoice:0 @@ -4358,7 +4426,7 @@ msgstr "資産" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "" +msgstr "会計と財務" #. module: account #: view:account.invoice.confirm:0 @@ -4375,7 +4443,7 @@ msgstr "平均レート" #: field:account.common.account.report,display_account:0 #: field:account.report.general.ledger,display_account:0 msgid "Display Accounts" -msgstr "アカウントの表示" +msgstr "表示対象勘定" #. module: account #: view:account.state.open:0 @@ -4385,7 +4453,7 @@ msgstr "(請求書を開く場合は、それは未消し込みでなければ #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "請求書税分析勘定" #. module: account #: field:account.chart,period_from:0 @@ -4397,7 +4465,7 @@ msgstr "期首日" #: field:account.tax.template,name:0 #: report:account.vat.declaration:0 msgid "Tax Name" -msgstr "税金名称" +msgstr "税名称" #. module: account #: view:account.config.settings:0 @@ -4422,7 +4490,7 @@ msgstr "分析的な残高" msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" -msgstr "" +msgstr "この支払い条件は受注と顧客請求でデフォルトの代わりに使用されます。" #. module: account #: view:account.config.settings:0 @@ -4441,7 +4509,7 @@ msgstr "アクティブ項目がFalseに設定されている場合、それを #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "記帳済仕訳帳項目" +msgstr "記帳済仕訳項目" #. module: account #: field:account.move.line,blocked:0 @@ -4451,7 +4519,7 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Search Tax Templates" -msgstr "税金テンプレート検索" +msgstr "税テンプレート検索" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation @@ -4464,7 +4532,7 @@ msgid "" "As an example, a decimal precision of 2 will allow journal entries like: " "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." -msgstr "" +msgstr "例として、小数点以下2桁が9.99 EURとなるのに対し、小数点以下4桁は0.0231 EURのようになります。" #. module: account #: field:account.account,shortcut:0 @@ -4486,7 +4554,7 @@ msgstr "ショートカット" #: field:report.account.receivable,type:0 #: field:report.account_type.sales,user_type:0 msgid "Account Type" -msgstr "アカウントタイプ" +msgstr "勘定科目タイプ" #. module: account #: view:account.bank.statement:0 @@ -4526,6 +4594,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして新しい銀行口座を開設します。\n" +"

\n" +" 報告書のフッタに表示されるあなたの会社の銀行口座の設定と選択を行います。\n" +"

\n" +" OpenERPの会計アプリを使用する場合、これらのデータに基づいた勘定科目と仕訳は自動的に作成されます。\n" +"

\n" +" " #. module: account #: constraint:account.tax.code.template:0 @@ -4587,7 +4663,7 @@ msgstr "PayPalアカウント" #. module: account #: view:account.entries.report:0 msgid "Acc.Type" -msgstr "アカウントタイプ" +msgstr "勘定科目タイプ" #. module: account #: selection:account.journal,type:0 @@ -4659,7 +4735,7 @@ msgstr "オンライン支払を受けるためのPayPalユーザ名(通常は #: code:addons/account/report/common_report_header.py:68 #, python-format msgid "All Posted Entries" -msgstr "全ての記帳済エントリー" +msgstr "全記帳済エントリ" #. module: account #: field:report.aged.receivable,name:0 @@ -4686,7 +4762,7 @@ msgstr "" #. module: account #: selection:account.move.line,state:0 msgid "Balanced" -msgstr "" +msgstr "貸借一致" #. module: account #: model:process.node,note:account.process_node_importinvoice0 @@ -4704,7 +4780,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart msgid "Set Your Accounting Options" -msgstr "" +msgstr "会計オプションを設定" #. module: account #: model:ir.model,name:account.model_account_chart @@ -4714,7 +4790,7 @@ msgstr "会計表" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "" +msgstr "支払参照" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -4783,7 +4859,7 @@ msgstr "クレジットノート" #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "" +msgstr "調整する仕訳項目" #. module: account #: model:ir.model,name:account.model_account_tax_template @@ -4803,7 +4879,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Tax Computation" -msgstr "" +msgstr "税計算" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4830,7 +4906,7 @@ msgstr "モデルからエントリーを作成" #: field:account.account,reconcile:0 #: field:account.account.template,reconcile:0 msgid "Allow Reconciliation" -msgstr "消し込みの許可" +msgstr "消込許可" #. module: account #: constraint:account.account:0 @@ -4900,12 +4976,12 @@ msgstr "" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Cancelled" -msgstr "キャンセル済" +msgstr "取消済" #. module: account #: help:account.config.settings,group_proforma_invoices:0 msgid "Allows you to put invoices in pro-forma state." -msgstr "" +msgstr "請求書を試算状態にできます。" #. module: account #: view:account.journal:0 @@ -4918,7 +4994,7 @@ msgstr "" msgid "" "It adds the currency column on report if the currency differs from the " "company currency." -msgstr "" +msgstr "会社の通貨と異なる場合はレポートに通貨欄を追加します。" #. module: account #: code:addons/account/account.py:3394 @@ -4953,7 +5029,7 @@ msgstr "確認済" #. module: account #: report:account.invoice:0 msgid "Cancelled Invoice" -msgstr "キャンセル済請求書" +msgstr "取消済請求書" #. module: account #: view:account.invoice:0 @@ -4974,7 +5050,7 @@ msgstr "" #: field:account.tax,ref_tax_code_id:0 #: field:account.tax.template,ref_tax_code_id:0 msgid "Refund Tax Code" -msgstr "税金コードの返金" +msgstr "返金税コード" #. module: account #: view:account.invoice:0 @@ -4984,7 +5060,7 @@ msgstr "" #. module: account #: field:account.chart.template,property_account_income:0 msgid "Income Account on Product Template" -msgstr "製品テンプレート上の損益勘定" +msgstr "製品テンプレート上の収益勘定" #. module: account #: help:account.journal.period,state:0 @@ -5067,7 +5143,7 @@ msgstr "確認" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "または" #. module: account #: view:account.invoice.report:0 @@ -5095,7 +5171,7 @@ msgstr "請求書が支払われる先の銀行口座番号。顧客請求書や #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 msgid "Partners Reconciled Today" -msgstr "本日パートナ消し込み済" +msgstr "本日消込の取引先" #. module: account #: help:account.invoice.tax,tax_code_id:0 @@ -5117,7 +5193,7 @@ msgstr "支払済" #. module: account #: field:account.invoice,tax_line:0 msgid "Tax Lines" -msgstr "税金行" +msgstr "税明細" #. module: account #: help:account.move.line,statement_id:0 @@ -5134,7 +5210,7 @@ msgstr "ドラフト請求書は検証されます。 " msgid "" "Set the account that will be set by default on invoice tax lines for " "invoices. Leave empty to use the expense account." -msgstr "" +msgstr "請求書の税明細にデフォルトで設定される勘定を設定します。交際費で使用する場合は空白のままにします。" #. module: account #: code:addons/account/account.py:890 @@ -5150,7 +5226,7 @@ msgstr "レビューすべき仕訳帳エントリー" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round Globally" -msgstr "" +msgstr "全体で丸め" #. module: account #: view:account.bank.statement:0 @@ -5170,6 +5246,8 @@ msgid "" "Please verify the price of the invoice !\n" "The encoded total does not match the computed total." msgstr "" +"請求書の金額をご確認ください。\n" +"ご入力の合計金額が計算された合計金額と合致しません。" #. module: account #: field:account.account,active:0 @@ -5179,13 +5257,13 @@ msgstr "" #: field:account.payment.term,active:0 #: field:account.tax,active:0 msgid "Active" -msgstr "アクティブ" +msgstr "有効" #. module: account #: view:account.bank.statement:0 #: field:account.journal,cash_control:0 msgid "Cash Control" -msgstr "" +msgstr "現金管理" #. module: account #: field:account.analytic.balance,date2:0 @@ -5232,7 +5310,7 @@ msgstr "このビューから財務分析を行います。これは期間毎に #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "" +msgstr "財務管理者" #. module: account #: field:account.journal,group_invoice_lines:0 @@ -5242,7 +5320,7 @@ msgstr "グループ請求書行" #. module: account #: view:account.automatic.reconcile:0 msgid "Close" -msgstr "閉じる" +msgstr "完了済" #. module: account #: field:account.bank.statement.line,move_ids:0 @@ -5265,7 +5343,7 @@ msgstr "消費税申告アカウント" msgid "" "If you do not check this box, you will be able to do invoicing & payments, " "but not accounting (Journal Items, Chart of Accounts, ...)" -msgstr "" +msgstr "このボックスをチェックしない場合も請求と支払いは行いますが、仕訳項目や勘定科目には影響しません。" #. module: account #: view:account.period:0 @@ -5285,12 +5363,12 @@ msgstr "テンプレート" #. module: account #: field:account.invoice.tax,name:0 msgid "Tax Description" -msgstr "税金説明" +msgstr "税詳細" #. module: account #: field:account.tax,child_ids:0 msgid "Child Tax Accounts" -msgstr "子税金アカウント" +msgstr "子税勘定" #. module: account #: help:account.tax,price_include:0 @@ -5333,7 +5411,7 @@ msgstr "分析残高 -" #: field:account.vat.declaration,target_move:0 #: field:accounting.report,target_move:0 msgid "Target Moves" -msgstr "ターゲットの移動" +msgstr "対象仕訳" #. module: account #: code:addons/account/account.py:1454 @@ -5346,7 +5424,7 @@ msgstr "" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_opening:0 msgid "Opening Unit Numbers" -msgstr "" +msgstr "期首数量" #. module: account #: field:account.subscription,period_type:0 @@ -5441,13 +5519,13 @@ msgstr "月" #: view:account.move.line:0 #: field:account.partner.reconcile.process,next_partner_id:0 msgid "Next Partner to Reconcile" -msgstr "調整の次のパートナー" +msgstr "次に消込する取引先" #. module: account #: field:account.invoice.tax,account_id:0 #: field:account.move.line,tax_code_id:0 msgid "Tax Account" -msgstr "税金アカウント" +msgstr "税勘定" #. module: account #: model:account.financial.report,name:account.account_financial_report_balancesheet0 @@ -5461,7 +5539,7 @@ msgstr "貸借対照表" #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "損益(損益勘定)" +msgstr "損益計算書(収益勘定)" #. module: account #: field:account.journal,allow_date:0 @@ -5537,7 +5615,7 @@ msgstr "金額" #: code:addons/account/wizard/account_fiscalyear_close.py:41 #, python-format msgid "End of Fiscal Year Entry" -msgstr "会計年度エントリーの最後" +msgstr "会計年度締仕訳" #. module: account #: model:process.transition,name:account.process_transition_customerinvoice0 @@ -5577,7 +5655,7 @@ msgstr "" #. module: account #: field:account.journal,update_posted:0 msgid "Allow Cancelling Entries" -msgstr "エントリーのキャンセル許可" +msgstr "エントリの取消許可" #. module: account #: code:addons/account/wizard/account_use_model.py:44 @@ -5598,7 +5676,7 @@ msgstr "親の係数" #. module: account #: report:account.partner.balance:0 msgid "(Account/Partner) Name" -msgstr "アカウント / パートナ名" +msgstr "(勘定/取引先)名称" #. module: account #: field:account.partner.reconcile.process,progress:0 @@ -5634,7 +5712,7 @@ msgstr "基本金額に含む" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "仕入先請求書番号" #. module: account #: help:account.payment.term.line,days:0 @@ -5677,7 +5755,7 @@ msgstr "期首日" #. module: account #: model:account.account.type,name:account.account_type_asset_view1 msgid "Asset View" -msgstr "" +msgstr "資産ビュー" #. module: account #: model:ir.model,name:account.model_account_common_account_report @@ -5695,7 +5773,7 @@ msgstr "アカウント共通アカウントレポート" #: selection:account.period,state:0 #: selection:report.invoice.created,state:0 msgid "Open" -msgstr "開く" +msgstr "オープン" #. module: account #: view:account.config.settings:0 @@ -5715,12 +5793,12 @@ msgstr "" #: field:account.partner.ledger,initial_balance:0 #: field:account.report.general.ledger,initial_balance:0 msgid "Include Initial Balances" -msgstr "期首残高を含む" +msgstr "期初残高を含む" #. module: account #: view:account.invoice.tax:0 msgid "Tax Codes" -msgstr "税金コード" +msgstr "税コード" #. module: account #: selection:account.invoice,type:0 @@ -5750,7 +5828,7 @@ msgstr "年度エントリー仕訳帳の末尾" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "ドラフト返金 " #. module: account #: view:cash.box.in:0 @@ -5820,7 +5898,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_analytic_account_form #: model:ir.ui.menu,name:account.account_analytic_def_account msgid "Analytic Accounts" -msgstr "分析アカウント" +msgstr "分析勘定" #. module: account #: view:account.invoice.report:0 @@ -5838,7 +5916,7 @@ msgstr "通貨金額" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round per Line" -msgstr "" +msgstr "明細ごとに丸め" #. module: account #: report:account.analytic.account.balance:0 @@ -5875,7 +5953,7 @@ msgstr "支払いエントリーは消し込みの第2の入力です。" msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" -msgstr "" +msgstr "この支払い条件は発注と仕入先請求でデフォルトの代わりに使用されます。" #. module: account #: help:account.automatic.reconcile,power:0 @@ -5899,7 +5977,7 @@ msgstr "会計ポジションテンプレート" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "ドラフト返金" #. module: account #: view:account.analytic.chart:0 @@ -5916,7 +5994,7 @@ msgstr "チャートを開く" #: field:account.print.journal,amount_currency:0 #: field:account.report.general.ledger,amount_currency:0 msgid "With Currency" -msgstr "通貨で" +msgstr "通貨表示" #. module: account #: view:account.bank.statement:0 @@ -5959,13 +6037,13 @@ msgstr "アカウント自動消し込み" #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "仕訳帳項目" +msgstr "仕訳項目" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close #: model:ir.ui.menu,name:account.menu_wizard_fy_close msgid "Generate Opening Entries" -msgstr "開始エントリーの生成" +msgstr "期初仕訳生成" #. module: account #: help:account.tax,type:0 @@ -6146,7 +6224,7 @@ msgstr "行数" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "" +msgstr "(更新)" #. module: account #: field:account.aged.trial.balance,filter:0 @@ -6186,13 +6264,13 @@ msgstr "期首残高と取引行を基本に計算された残高" #. module: account #: field:account.journal,loss_account_id:0 msgid "Loss Account" -msgstr "" +msgstr "損失勘定" #. module: account #: field:account.tax,account_collected_id:0 #: field:account.tax.template,account_collected_id:0 msgid "Invoice Tax Account" -msgstr "請求書税金アカウント" +msgstr "請求書税勘定" #. module: account #: model:ir.actions.act_window,name:account.action_account_general_journal @@ -6280,7 +6358,7 @@ msgstr "この仕訳帳と関係する会社" #. module: account #: help:account.config.settings,group_multi_currency:0 msgid "Allows you multi currency environment" -msgstr "" +msgstr "多通貨を許可します。" #. module: account #: view:account.subscription:0 @@ -6320,7 +6398,7 @@ msgstr "分析エントリー" #: view:res.company:0 #: field:res.company,overdue_msg:0 msgid "Overdue Payments Message" -msgstr "支払延滞のメッセージ" +msgstr "督促メッセージ" #. module: account #: field:account.entries.report,date_created:0 @@ -6359,7 +6437,7 @@ msgstr "分析行" #. module: account #: model:ir.ui.menu,name:account.menu_action_model_form msgid "Models" -msgstr "" +msgstr "モデル" #. module: account #: code:addons/account/account_invoice.py:1124 @@ -6372,7 +6450,7 @@ msgstr "" #. module: account #: field:product.template,taxes_id:0 msgid "Customer Taxes" -msgstr "顧客の税金" +msgstr "顧客税" #. module: account #: help:account.model,name:0 @@ -6402,12 +6480,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして仕入先からの返金を登録してください。\n" +"

\n" +" 仕入先返金をマニュアルで登録する代わりに、関連する仕入先請求書から返金と消し込みを直接生成することもできます。\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 #: field:account.tax.template,type:0 msgid "Tax Type" -msgstr "税金タイプ" +msgstr "税タイプ" #. module: account #: model:ir.actions.act_window,name:account.action_account_template_form @@ -6430,7 +6514,7 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Tax Statement" -msgstr "税金明細書" +msgstr "税明細書" #. module: account #: model:ir.model,name:account.model_res_company @@ -6450,7 +6534,7 @@ msgstr "子を平坦に表示" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "" +msgstr "銀行と現金" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 @@ -6481,7 +6565,7 @@ msgstr "会計年度" #. module: account #: view:account.move.reconcile:0 msgid "Partial Reconcile Entries" -msgstr "部分消し込みエントリー" +msgstr "部分消込エントリ" #. module: account #: view:account.aged.trial.balance:0 @@ -6520,7 +6604,7 @@ msgstr "部分消し込みエントリー" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Cancel" -msgstr "キャンセル" +msgstr "取消" #. module: account #: selection:account.account,type:0 @@ -6581,7 +6665,7 @@ msgstr "株式" #. module: account #: field:account.journal,internal_account_id:0 msgid "Internal Transfers Account" -msgstr "" +msgstr "内部振替勘定" #. module: account #: code:addons/account/wizard/pos_box.py:32 @@ -6597,12 +6681,12 @@ msgstr "パーセンテージ" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round globally" -msgstr "" +msgstr "全体で丸め" #. module: account #: selection:account.report.general.ledger,sortby:0 msgid "Journal & Partner" -msgstr "仕訳帳とパートナ" +msgstr "仕訳帳・取引先" #. module: account #: field:account.automatic.reconcile,power:0 @@ -6641,7 +6725,7 @@ msgstr "次回税金の計算のために基本金額に税額が含まれるべ #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile msgid "Reconciliation: Go to Next Partner" -msgstr "消し込み:次のパートナへ" +msgstr "消込:次の取引先へ" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance @@ -6663,6 +6747,8 @@ msgid "" "due date, make sure that the payment term is not set on the invoice. If you " "keep the payment term and the due date empty, it means direct payment." msgstr "" +"支払条件を使用する場合、期日は会計項目の生成時に自動で計算されます。支払条件は複数の期日(たとえば直ぐに50%、1ヶ月以内に50%)を計算できます。期日を" +"強制したい場合、支払条件は請求書に設定されないことを確認してください。支払条件を設定して期日が空の場合は直接支払いを意味します。" #. module: account #: code:addons/account/account.py:414 @@ -6702,7 +6788,7 @@ msgstr "" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "破棄" #. module: account #: selection:account.account,type:0 @@ -6715,7 +6801,7 @@ msgstr "流動性" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form #: model:ir.ui.menu,name:account.account_analytic_journal_entries msgid "Analytic Journal Items" -msgstr "分析仕訳帳項目" +msgstr "分析仕訳項目" #. module: account #: field:account.config.settings,has_default_company:0 @@ -6729,8 +6815,7 @@ msgid "" "year. Note that you can run this wizard many times for the same fiscal year: " "it will simply replace the old opening entries with the new ones." msgstr "" -"このウィザードは選択した会計年度の年度仕訳帳項目の終わりを生成します。このウィザードは同じ会計年度で何度も実行できることに注意して下さい:これは単純に古い" -"開始エントリーを新しいもので置き換えます。" +"選択した新会計年度の期初仕訳を生成します。このウィザードは同じ会計年度で何度でも実行可能です(前回の実行で生成された期初仕訳が上書きされます)。" #. module: account #: model:ir.ui.menu,name:account.menu_finance_bank_and_cash @@ -6957,7 +7042,7 @@ msgstr "借方合計" #. module: account #: view:account.move.line:0 msgid "Next Partner Entries to reconcile" -msgstr "消し込みする次のパートナエントリー" +msgstr "次に消込する取引先エントリ" #. module: account #: report:account.invoice:0 @@ -7014,7 +7099,7 @@ msgstr "損益計算書(費用勘定)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 msgid "Total Transactions" -msgstr "" +msgstr "総取引" #. module: account #: code:addons/account/account.py:636 @@ -7044,7 +7129,7 @@ msgstr "残高符号の維持" #: model:ir.actions.report.xml,name:account.account_vat_declaration #: model:ir.ui.menu,name:account.menu_account_vat_declaration msgid "Taxes Report" -msgstr "税金レポート" +msgstr "税レポート" #. module: account #: selection:account.journal.period,state:0 @@ -7064,7 +7149,7 @@ msgstr "手動" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "キャンセル:払い戻しと消し込みを作成" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 @@ -7107,7 +7192,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "仕訳帳エントリー" +msgstr "仕訳" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 @@ -7118,7 +7203,7 @@ msgstr "" #. module: account #: help:account.partner.ledger,page_split:0 msgid "Display Ledger Report with One partner per page" -msgstr "" +msgstr "元帳レポートはページごとにひとつの取引先を表示" #. module: account #: report:account.general.ledger:0 @@ -7153,7 +7238,7 @@ msgstr "" #: code:addons/account/report/common_report_header.py:67 #, python-format msgid "All Entries" -msgstr "全エントリー" +msgstr "全エントリ" #. module: account #: constraint:account.move.reconcile:0 @@ -7277,7 +7362,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "顧客入金を管理" #. module: account #: help:report.invoice.created,origin:0 @@ -7300,7 +7385,7 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Taxes used in Sales" -msgstr "売上で使われる税金" +msgstr "販売で使用する税" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 @@ -7359,12 +7444,12 @@ msgstr "" #: field:account.invoice.line,origin:0 #: field:report.invoice.created,origin:0 msgid "Source Document" -msgstr "基となるドキュメント" +msgstr "参照元" #. module: account #: help:account.config.settings,company_footer:0 msgid "Bank accounts as printed in the footer of each printed document" -msgstr "" +msgstr "各印刷文書のフッタに印刷される銀行口座" #. module: account #: constraint:account.account:0 @@ -7387,7 +7472,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Taxes:" -msgstr "税金:" +msgstr "税:" #. module: account #: code:addons/account/account_invoice.py:458 @@ -7427,7 +7512,7 @@ msgstr "行" #. module: account #: view:account.tax.template:0 msgid "Account Tax Template" -msgstr "アカウント税金テンプレート" +msgstr "勘定税テンプレート" #. module: account #: view:account.journal.select:0 @@ -7442,12 +7527,12 @@ msgstr "この請求書を本当に開きますか?" #. module: account #: field:account.chart.template,property_account_expense_opening:0 msgid "Opening Entries Expense Account" -msgstr "費用勘定の開始エントリー" +msgstr "期初仕訳費用勘定" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "顧客参照" #. module: account #: field:account.account.template,parent_id:0 @@ -7514,7 +7599,7 @@ msgstr "この顧客はあなたに合計金額の支払義務があります。 #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "不均衡状態の仕訳帳項目" +msgstr "不均衡な仕訳項目" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules @@ -7534,7 +7619,7 @@ msgstr "OK" #. module: account #: field:account.chart.template,tax_code_root_id:0 msgid "Root Tax Code" -msgstr "ルート税金コード" +msgstr "基税コード" #. module: account #: help:account.journal,centralisation:0 @@ -7563,12 +7648,12 @@ msgstr "デフォルト消費税(仕入)" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "損益勘定の開始エントリー" +msgstr "期初仕訳収益勘定" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "" +msgstr "見積送り状を許可" #. module: account #: view:account.bank.statement:0 @@ -7592,7 +7677,7 @@ msgstr "請求書参照" #. module: account #: field:account.fiscalyear.close,report_name:0 msgid "Name of new entries" -msgstr "新エントリーの名前" +msgstr "生成仕訳名称" #. module: account #: view:account.use.model:0 @@ -7607,7 +7692,7 @@ msgstr "" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "" +msgstr "会社の主な通貨" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports @@ -7625,7 +7710,7 @@ msgstr "警告" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open msgid "Contracts/Analytic Accounts" -msgstr "契約 / 分析アカウント" +msgstr "契約/分析勘定" #. module: account #: view:account.journal:0 @@ -7636,7 +7721,7 @@ msgstr "アカウント仕訳帳" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 msgid "Tax calculation rounding method" -msgstr "" +msgstr "税計算の丸め方法" #. module: account #: model:process.node,name:account.process_node_paidinvoice0 @@ -7653,6 +7738,7 @@ msgid "" " with the invoice. You will not be able " "to modify the credit note." msgstr "" +"発行すべきでなかった請求書をキャンセルしたい場合は、このオプションを使用します。貸方票が作成、検証され、請求書と消し込みされます。貸方票は変更できません。" #. module: account #: help:account.partner.reconcile.process,next_partner_id:0 @@ -7746,7 +7832,7 @@ msgstr "プロフォーマ" #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "アンバランス" +msgstr "貸借不一致" #. module: account #: selection:account.move.line,centralisation:0 @@ -7805,7 +7891,7 @@ msgstr "売上仕訳帳" #. module: account #: model:ir.model,name:account.model_account_invoice_tax msgid "Invoice Tax" -msgstr "請求書税金" +msgstr "請求書税" #. module: account #: code:addons/account/account_move_line.py:1185 @@ -7835,7 +7921,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "未記帳の仕訳帳エントリー" +msgstr "未記帳仕訳" #. module: account #: help:account.invoice.refund,date:0 @@ -7883,13 +7969,13 @@ msgstr "通貨調整" #. module: account #: field:account.fiscalyear.close,fy_id:0 msgid "Fiscal Year to close" -msgstr "閉じる会計年度" +msgstr "締対象会計年度" #. module: account #: view:account.invoice.cancel:0 #: model:ir.actions.act_window,name:account.action_account_invoice_cancel msgid "Cancel Selected Invoices" -msgstr "選択請求書のキャンセル" +msgstr "選択請求書を取消" #. module: account #: help:account.account.type,report_type:0 @@ -7941,7 +8027,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "仕訳帳エントリーの記帳" +msgstr "仕訳の記帳" #. module: account #: selection:account.bank.statement.line,type:0 @@ -7998,12 +8084,12 @@ msgstr "順序" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "PayPalアカウント" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "仕訳帳エントリー番号" +msgstr "仕訳番号" #. module: account #: view:account.financial.report:0 @@ -8110,7 +8196,7 @@ msgstr "現金箱行" #. module: account #: field:account.installer,charts:0 msgid "Accounting Package" -msgstr "" +msgstr "会計パッケージ" #. module: account #: report:account.third_party_ledger:0 @@ -8120,7 +8206,7 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_3rdparty_ledger_other #: model:ir.ui.menu,name:account.menu_account_partner_ledger msgid "Partner Ledger" -msgstr "パートナ元帳" +msgstr "取引先元帳" #. module: account #: selection:account.tax.template,type:0 @@ -8145,7 +8231,7 @@ msgstr "" #. module: account #: field:res.company,tax_calculation_rounding_method:0 msgid "Tax Calculation Rounding Method" -msgstr "" +msgstr "税計算の丸め方法" #. module: account #: field:account.entries.report,move_line_state:0 @@ -8191,7 +8277,7 @@ msgstr "未消し込みを開く" #: model:ir.model,name:account.model_res_partner #: field:report.invoice.created,partner_id:0 msgid "Partner" -msgstr "パートナ" +msgstr "取引先" #. module: account #: help:account.change.currency,currency_id:0 @@ -8240,7 +8326,7 @@ msgstr "アカウントエントリー行は有効な状態ではありません #. module: account #: field:account.account.type,close_method:0 msgid "Deferral Method" -msgstr "繰延法" +msgstr "繰越方法" #. module: account #: model:process.node,note:account.process_node_electronicfile0 @@ -8273,13 +8359,13 @@ msgstr "分析エントリー" #. module: account #: view:account.analytic.account:0 msgid "Associated Partner" -msgstr "関連パートナ" +msgstr "関連取引先" #. module: account #: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" -msgstr "最初にパートナを選択して下さい。" +msgstr "始めに取引先を選択してください。" #. module: account #: field:account.invoice,comment:0 @@ -8295,7 +8381,7 @@ msgstr "残差合計" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "" +msgstr "現在の現金管理" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 @@ -8322,7 +8408,7 @@ msgstr "請求書の状態は開いています。" #: field:account.subscription,state:0 #: field:report.invoice.created,state:0 msgid "Status" -msgstr "" +msgstr "ステータス" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -8393,6 +8479,8 @@ msgid "" "recalls.\n" " This installs the module account_followup." msgstr "" +"複数レベルの想起で支払い督促を自動化できます。\n" +" account_followupモジュールがインストールされます。" #. module: account #: field:account.automatic.reconcile,period_id:0 @@ -8440,7 +8528,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_sequence_next:0 msgid "Next invoice number" -msgstr "" +msgstr "次の請求書番号" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting @@ -8483,7 +8571,7 @@ msgstr "課税基準金額" msgid "" "This wizard will remove the end of year journal entries of selected fiscal " "year. Note that you can run this wizard many times for the same fiscal year." -msgstr "" +msgstr "このウィザードは選択した会計年度の最後の仕訳項目を削除します。同じ会計年度ではこのウィザードを何度も実行できることに注意してください。" #. module: account #: report:account.invoice:0 @@ -8534,20 +8622,20 @@ msgstr "期末残高" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "" +msgstr "相手勘定を集約" #. module: account #: help:account.move.line,blocked:0 msgid "" "You can check this box to mark this journal item as a litigation with the " "associated partner" -msgstr "関連するパートナとの訴訟としてこの仕訳帳項目をマークするためには、このボックスをチェックします。" +msgstr "仕訳項目が関連取引先と係争状態にあることを示すには、このボックスをチェックします。" #. module: account #: field:account.move.line,reconcile_partial_id:0 #: view:account.move.line.reconcile:0 msgid "Partial Reconcile" -msgstr "部分消し込み" +msgstr "部分消込" #. module: account #: model:ir.model,name:account.model_account_analytic_inverted_balance @@ -8569,6 +8657,8 @@ msgid "" "invoice will be created \n" " so that you can edit it." msgstr "" +"請求書をキャンセルして新しいものを作成したい場合は、このオプションを使用します。貸方票が作成、検証され、現在の請求書と消し込みされます。編集可能な新しいド" +"ラフト請求書が作成されます。" #. module: account #: model:process.transition,name:account.process_transition_filestatement0 @@ -8589,14 +8679,14 @@ msgstr "銀行消し込みの移動" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "適用" #. module: account #: field:account.financial.report,account_type_ids:0 #: model:ir.actions.act_window,name:account.action_account_type_form #: model:ir.ui.menu,name:account.menu_action_account_type_form msgid "Account Types" -msgstr "アカウントタイプ" +msgstr "勘定科目タイプ" #. module: account #: model:email.template,subject:account.email_template_edi_invoice @@ -8614,7 +8704,7 @@ msgstr "" #. module: account #: field:account.account.type,report_type:0 msgid "P&L / BS Category" -msgstr "損益計算書 / 貸借対照表分類" +msgstr "損益計算書 / 貸借対照表区分" #. module: account #: view:account.automatic.reconcile:0 @@ -8676,7 +8766,7 @@ msgstr "会計年度が閉じた状態" #. module: account #: field:account.invoice.refund,journal_id:0 msgid "Refund Journal" -msgstr "仕訳帳の返金" +msgstr "返金仕訳帳" #. module: account #: report:account.account.balance:0 @@ -8705,7 +8795,7 @@ msgstr "会社分析" #. module: account #: help:account.invoice,account_id:0 msgid "The partner account used for this invoice." -msgstr "パートナアカウントはこの請求書に使用されています。" +msgstr "この請求書に使われる取引先勘定" #. module: account #: code:addons/account/account.py:3391 @@ -8739,7 +8829,7 @@ msgstr "小計" #. module: account #: view:account.vat.declaration:0 msgid "Print Tax Statement" -msgstr "税金明細書の印刷" +msgstr "税明細書を印刷" #. module: account #: view:account.model.line:0 @@ -8764,7 +8854,7 @@ msgstr "仕入先" #. module: account #: view:account.journal:0 msgid "Accounts Type Allowed (empty for no control)" -msgstr "許可アカウントタイプ(制御なしは空)" +msgstr "許可勘定科目タイプ(制御なしは空)" #. module: account #: help:account.move.line,amount_residual:0 @@ -8790,12 +8880,12 @@ msgid "" "This option allows you to get more details about the way your balances are " "computed. Because it is space consuming, we do not allow to use it while " "doing a comparison." -msgstr "" +msgstr "このオプションは残高の計算方法について多くの詳細が得られます。スペースを消費するため、比較しながらの使用はできません。" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close msgid "Fiscalyear Close" -msgstr "会計年度を閉じる" +msgstr "会計年度締" #. module: account #: sql_constraint:account.account:0 @@ -8844,14 +8934,14 @@ msgstr "許可アカウント(制御なしは空)" #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "売上税 (%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 #: model:ir.actions.act_window,name:account.action_account_analytic_chart #: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 msgid "Chart of Analytic Accounts" -msgstr "分析アカウントチャート" +msgstr "分析勘定表" #. module: account #: model:ir.actions.act_window,help:account.action_subscription_form @@ -8869,6 +8959,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして新しい定期項目を定義します。\n" +"

\n" +" " +"定期項目は特定の日付から定期的に発生、つまり契約の署名や顧客または仕入先との取り決めに対応します。システムでの転記を自動化するため、このような項目を作成で" +"きます。\n" +"

\n" +" " #. module: account #: view:account.journal:0 @@ -8911,6 +9009,8 @@ msgid "" "This allows you to check writing and printing.\n" " This installs the module account_check_writing." msgstr "" +"小切手の振り出しと印刷ができます。\n" +" account_check_writingがインストールされます。" #. module: account #: model:res.groups,name:account.group_account_invoice @@ -9023,7 +9123,7 @@ msgstr "強制期間" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "パートナ残高アカウントの印刷" +msgstr "取引先別勘定残高を印刷" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -9065,7 +9165,7 @@ msgstr "不明" #: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" -msgstr "仕訳帳の開始エントリー" +msgstr "期初仕訳帳" #. module: account #: model:process.transition,note:account.process_transition_customerinvoice0 @@ -9092,6 +9192,8 @@ msgid "" "You cannot select an account type with a deferral method different of " "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" +"設定エラー!\n" +"内部タイプが「売掛金/買掛金」のアカウントは「未消込」以外の繰延方法でアカウントタイプを選択できません。" #. module: account #: field:account.config.settings,has_fiscal_year:0 @@ -9154,7 +9256,7 @@ msgstr "期間の開始日" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "通貨単位" #. module: account #: code:addons/account/account.py:3195 @@ -9191,7 +9293,7 @@ msgstr "会計年度と期間を閉じる" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "仕入返金仕訳帳" #. module: account #: view:account.analytic.line:0 @@ -9215,7 +9317,7 @@ msgstr "請求書作成" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "会計データ設定" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 @@ -9292,7 +9394,7 @@ msgstr "財務レポート" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 msgid "Liability View" -msgstr "" +msgstr "負債ビュー" #. module: account #: report:account.account.balance:0 @@ -9335,12 +9437,12 @@ msgstr "分析指示" #. module: account #: field:res.partner,ref_companies:0 msgid "Companies that refers to partner" -msgstr "パートナに当てはまる会社" +msgstr "取引先を参照する会社" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "返金要求" #. module: account #: view:account.move.line:0 @@ -9388,6 +9490,10 @@ msgid "" "payments.\n" " This installs the module account_payment." msgstr "" +"以下を目的とした支払指図の作成と管理ができます。\n" +" * 様々な自動化された支払い手順を容易にプラグインするためのベースとして\n" +" * 請求書の支払いを管理するためのより効率的な方法を提供\n" +" account_paymentモジュールがインストールされます。" #. module: account #: xsl:account.transfer:0 @@ -9450,7 +9556,7 @@ msgstr "表示アカウント" #: model:account.account.type,name:account.data_account_type_payable #: selection:account.entries.report,type:0 msgid "Payable" -msgstr "買掛金" +msgstr "支払対象" #. module: account #: view:board.board:0 @@ -9471,7 +9577,7 @@ msgstr "会計エントリーは消し込みの最初の入力です。" #. module: account #: view:account.fiscalyear.close:0 msgid "Generate Fiscal Year Opening Entries" -msgstr "会計年度開始エントリーの生成" +msgstr "会計年度期初仕訳の生成" #. module: account #: report:account.third_party_ledger:0 @@ -9512,7 +9618,7 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "日付 / 期間" #. module: account #: report:account.central.journal:0 @@ -9542,7 +9648,7 @@ msgstr "" msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." -msgstr "" +msgstr "払い戻しの税明細にデフォルトで設定される勘定を設定します。交際費で使用する場合は空白のままにします。" #. module: account #: help:account.addtmpl.wizard,cparent_id:0 @@ -9575,7 +9681,7 @@ msgstr "" msgid "" "This field contains the information related to the numbering of the journal " "entries of this journal." -msgstr "" +msgstr "このフィールドは仕訳帳の記帳番号に関連する情報を含みます。" #. module: account #: field:account.invoice,sent:0 @@ -9591,7 +9697,7 @@ msgstr "一般的なレポート" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "デフォルト消費税(販売)" #. module: account #: report:account.overdue:0 @@ -9607,7 +9713,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "定期処理" #. module: account #: view:account.invoice.report:0 @@ -9676,7 +9782,7 @@ msgstr "期末日" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 msgid "Expense View" -msgstr "" +msgstr "費用ビュー" #. module: account #: field:account.move.line,date_maturity:0 @@ -9687,7 +9793,7 @@ msgstr "期日" #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "即時払い" #. module: account #: code:addons/account/account.py:1502 @@ -9780,13 +9886,13 @@ msgstr "" #: view:account.entries.report:0 #: view:account.move.line:0 msgid "Unreconciled" -msgstr "未消し込み" +msgstr "未消込" #. module: account #: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" -msgstr "合計が誤っています。" +msgstr "合計が不正です。" #. module: account #: field:account.journal,sequence_id:0 @@ -9823,7 +9929,7 @@ msgstr "原価元帳(数量のみ)" #: model:process.transition,name:account.process_transition_analyticinvoice0 #: model:process.transition,name:account.process_transition_supplieranalyticcost0 msgid "From analytic accounts" -msgstr "分析アカウントから" +msgstr "分析勘定より" #. module: account #: view:account.installer:0 @@ -9863,7 +9969,7 @@ msgstr "コード / 日付" #: model:ir.model,name:account.model_account_move_line #: model:ir.ui.menu,name:account.menu_action_account_moves_all msgid "Journal Items" -msgstr "仕訳帳項目" +msgstr "仕訳項目" #. module: account #: view:accounting.report:0 @@ -9888,6 +9994,9 @@ msgid "" "analytic account.\n" " This installs the module account_budget." msgstr "" +"会計担当者は異なる分野の予算と分析を管理できます。\n" +" プロジェクト管理者は全体予算と個別予算を定義することで、各分析会計の予定額を設定できます。\n" +" account_budgetモジュールがインストールされます。" #. module: account #: field:account.bank.statement.line,name:0 @@ -9945,7 +10054,7 @@ msgstr "貸方" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "ドラフト請求書 " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal @@ -10248,7 +10357,7 @@ msgstr "" #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "返金税分析勘定" #. module: account #: view:account.move.bank.reconcile:0 @@ -10319,7 +10428,7 @@ msgstr "満期日" #: field:cash.box.in,name:0 #: field:cash.box.out,name:0 msgid "Reason" -msgstr "" +msgstr "理由" #. module: account #: selection:account.partner.ledger,filter:0 @@ -10327,7 +10436,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled #, python-format msgid "Unreconciled Entries" -msgstr "未消し込みエントリー" +msgstr "未消込エントリ" #. module: account #: help:account.partner.reconcile.process,today_reconciled:0 @@ -10412,7 +10521,7 @@ msgstr "" #. module: account #: view:account.partner.reconcile.process:0 msgid "Go to Next Partner" -msgstr "次のパートナへ" +msgstr "次の取引先へ" #. module: account #: view:account.automatic.reconcile:0 @@ -10428,7 +10537,7 @@ msgstr "請求書は完了状態です。" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "顧客支払を管理" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -10511,7 +10620,7 @@ msgstr "" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Partner Payment Term" -msgstr "パートナ支払条件" +msgstr "取引先支払条件" #. module: account #: field:temp.range,name:0 @@ -10521,7 +10630,7 @@ msgstr "範囲" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "仕入仕訳帳に関連した分析仕訳帳項目" +msgstr "仕入仕訳帳に紐づく分析仕訳項目" #. module: account #: help:account.account,type:0 @@ -10543,12 +10652,12 @@ msgstr "" #: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" -msgstr "変動" +msgstr "変動があったもの" #. module: account #: view:account.tax.code.template:0 msgid "Account Tax Code Template" -msgstr "アカウント税金コードテンプレート" +msgstr "勘定税コードテンプレート" #. module: account #: model:process.node,name:account.process_node_manually0 @@ -10690,6 +10799,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 記入したい期間と仕訳帳を選択します。\n" +"

\n" +" " +"このビューは会計担当者が受注の際にOpenERPの項目に素早く記録するため使用できます。仕入先請求書を記録したい場合、費用勘定の記録から始めます。Open" +"ERPはこの勘定に関連する税と「買掛金勘定」を自動で提案します。\n" +"

\n" +" " #. module: account #: help:account.invoice.line,account_id:0 @@ -10759,7 +10876,7 @@ msgstr "アカウント移動行の検証" #: help:res.partner,property_account_position:0 msgid "" "The fiscal position will determine taxes and accounts used for the partner." -msgstr "" +msgstr "財政状況は取引先の税と勘定を決定します。" #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 @@ -10825,7 +10942,7 @@ msgstr "パートナ" #. module: account #: field:account.account,note:0 msgid "Internal Notes" -msgstr "" +msgstr "内部注記" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear @@ -10901,7 +11018,7 @@ msgstr "将来" #. module: account #: view:account.move.line:0 msgid "Search Journal Items" -msgstr "仕訳帳項目検索" +msgstr "仕訳項目検索" #. module: account #: help:account.tax,base_sign:0 @@ -10928,7 +11045,7 @@ msgstr "製品テンプレート上の経費勘定" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "顧客支払条件" #. module: account #: help:accounting.report,label_filter:0 @@ -10940,7 +11057,7 @@ msgstr "このラベルは所定の比較フィルタのために、計算され #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round per line" -msgstr "" +msgstr "明細ごとに丸め" #. module: account #: help:account.move.line,amount_residual_currency:0 @@ -12759,3 +12876,6 @@ msgstr "仕訳帳エントリーの買掛金、または買掛金の残差金額 #~ msgid "Column Name" #~ msgstr "列名" + +#~ msgid "Cancel Invoice" +#~ msgstr "請求書取消" diff --git a/addons/account/i18n/kab.po b/addons/account/i18n/kab.po index 67bde528570..2fa3a3750ce 100644 --- a/addons/account/i18n/kab.po +++ b/addons/account/i18n/kab.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/kk.po b/addons/account/i18n/kk.po index e01809b1383..f43c76a7597 100644 --- a/addons/account/i18n/kk.po +++ b/addons/account/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ko.po b/addons/account/i18n/ko.po index 679ba251ee1..f5e48cbeb40 100644 --- a/addons/account/i18n/ko.po +++ b/addons/account/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lo.po b/addons/account/i18n/lo.po index 7e7ba7cc10a..84036b00824 100644 --- a/addons/account/i18n/lo.po +++ b/addons/account/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lt.po b/addons/account/i18n/lt.po index 1b3c91baa2c..7010e805d4a 100644 --- a/addons/account/i18n/lt.po +++ b/addons/account/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:29+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lv.po b/addons/account/i18n/lv.po index b18e890ea3e..159fb6835e7 100644 --- a/addons/account/i18n/lv.po +++ b/addons/account/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:29+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/mk.po b/addons/account/i18n/mk.po index ea381ca397d..97e9a2ccc4b 100644 --- a/addons/account/i18n/mk.po +++ b/addons/account/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:29+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/mn.po b/addons/account/i18n/mn.po index d07bba5704b..763e4654a33 100644 --- a/addons/account/i18n/mn.po +++ b/addons/account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:29+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nb.po b/addons/account/i18n/nb.po index 35fd0c1512c..c9e597900db 100644 --- a/addons/account/i18n/nb.po +++ b/addons/account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:29+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index a3bbac5fcdf..ae5e44d7352 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:24+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:54+0000\n" +"X-Generator: Launchpad (build 16914)\n" #, python-format #~ msgid "Integrity Error !" @@ -1265,7 +1265,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "Crediteer " +msgstr "Credit factuur " #. module: account #: code:addons/account/account_analytic_line.py:90 @@ -1282,7 +1282,7 @@ msgstr "Toepasbaarheidsopties" #. module: account #: report:account.partner.balance:0 msgid "In dispute" -msgstr "Wordt betwist" +msgstr "Betwist" #. module: account #: view:account.journal:0 @@ -4005,7 +4005,7 @@ msgid "" "centralized counterpart box in the related journal from the configuration " "menu." msgstr "" -"Het is niet mogelijk een factuur aan te maken op ene centrale tegenrekening. " +"Het is niet mogelijk een factuur aan te maken op een centrale tegenrekening. " "Vink de optie 'centrale tegenrekening' uit bij de instellingen van het " "bijbehorende dagboek." @@ -4998,7 +4998,7 @@ msgstr "Maand" #, python-format msgid "You cannot change the code of account which contains journal items!" msgstr "" -"Het is niet mogelijk de de code van de rekening te wijzigen, welke al regels " +"Het is niet mogelijk de code van de rekening te wijzigen, welke al regels " "bevat!" #. module: account @@ -5304,7 +5304,7 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" -"Kan geen dagboek van het soort \"%s\" vinden voor dit bedrijf.\n" +"Kan geen dagboek van het soort '%s' vinden voor dit bedrijf.\n" "\n" "U kunt deze aanmaken in het menu:\n" "Instellingen\\Dagboeken\\Dagboeken." @@ -7452,7 +7452,7 @@ msgid "" "2%." msgstr "" "Het percentage voor de betalingsconditie regel moet liggen tussen 0 en 1, " -"bijvoorbeeld 0,002 voor 2%." +"bijvoorbeeld 0,02 voor 2%." #. module: account #: report:account.invoice:0 @@ -8341,7 +8341,7 @@ msgstr "Factuurregel" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "Klant en leverancier terugbetalingen" +msgstr "Klant en leverancier credit facturen" #. module: account #: field:account.financial.report,sign:0 @@ -9484,7 +9484,7 @@ msgstr "Leveranciers" #. module: account #: view:account.journal:0 msgid "Accounts Type Allowed (empty for no control)" -msgstr "Toegestane soorten grootboekrekeningen (leeg = alles toestaan)" +msgstr "Rekening categorieën toegestaan ( leeg voor geen controle)" #. module: account #: help:account.move.line,amount_residual:0 @@ -11586,7 +11586,7 @@ msgstr "Zoek factuur" #: code:addons/account/account_invoice.py:1159 #, python-format msgid "Refund" -msgstr "Crediteer" +msgstr "Credit factuur" #. module: account #: model:ir.model,name:account.model_res_partner_bank diff --git a/addons/account/i18n/nl_BE.po b/addons/account/i18n/nl_BE.po index 90d0c9933a7..5d1533b4f31 100644 --- a/addons/account/i18n/nl_BE.po +++ b/addons/account/i18n/nl_BE.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: 2013-04-15 23:02+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \n" "Language-Team: Els Van Vossel\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: nl\n" #. module: account diff --git a/addons/account/i18n/oc.po b/addons/account/i18n/oc.po index 9afa3633fbd..40a01232596 100644 --- a/addons/account/i18n/oc.po +++ b/addons/account/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:30+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po index 4dff0c8c0f7..b2e27ff1697 100644 --- a/addons/account/i18n/pl.po +++ b/addons/account/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-09-12 05:30+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -198,7 +198,7 @@ msgstr "Etykieta kolumny" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "Ilość cyfr do użycia na kod konta" #. module: account #: help:account.analytic.journal,type:0 @@ -4332,7 +4332,7 @@ msgstr "Konto zobowiązań" #: code:addons/account/wizard/account_fiscalyear_close.py:88 #, python-format msgid "The periods to generate opening entries cannot be found." -msgstr "" +msgstr "Nie można znaleźć okresów generowania wpisów otwarcia." #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 @@ -4513,7 +4513,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "General Accounting" -msgstr "Księgowść ogólna" +msgstr "Księgowość ogólna" #. module: account #: help:account.fiscalyear.close,journal_id:0 @@ -4558,7 +4558,7 @@ msgstr "Aktywa" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "Księgowść" +msgstr "Księgowość" #. module: account #: view:account.invoice.confirm:0 @@ -4739,6 +4739,8 @@ msgid "" "Error!\n" "You cannot create recursive Tax Codes." msgstr "" +"Błąd!\n" +"Nie możesz utworzyć rekursywnych kodów podatkowych." #. module: account #: constraint:account.period:0 @@ -4819,7 +4821,7 @@ msgstr "Odwróć znak salda" #: code:addons/account/account.py:191 #, python-format msgid "Balance Sheet (Liability account)" -msgstr "Bilans (konta zobowiązań)" +msgstr "Bilans (konta pasywów)" #. module: account #: help:account.invoice,date_invoice:0 @@ -4835,7 +4837,7 @@ msgstr "Wartość zamknięcia" #. module: account #: field:account.tax,base_code_id:0 msgid "Account Base Code" -msgstr "Rejstr główny" +msgstr "Rejestr główny" #. module: account #: code:addons/account/account_move_line.py:864 @@ -5707,7 +5709,7 @@ msgstr "Sprawdź, czy data jest w okresie" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports msgid "Accounting Reports" -msgstr "raporty księgowe" +msgstr "Raporty księgowe" #. module: account #: field:account.move,line_id:0 @@ -6148,7 +6150,7 @@ msgstr "Szablon obszaru podatkowego" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "Proejkt korekty" +msgstr "Projekt korekty" #. module: account #: view:account.analytic.chart:0 @@ -6399,7 +6401,7 @@ msgstr "# wierszy" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "" +msgstr "(oblicz)" #. module: account #: field:account.aged.trial.balance,filter:0 @@ -6519,7 +6521,7 @@ msgstr "Faktury korygujące dla klienta" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "" +msgstr "Saldo zagraniczne" #. module: account #: field:account.journal.period,name:0 @@ -6855,7 +6857,7 @@ msgstr "Kapitał własny" #. module: account #: field:account.journal,internal_account_id:0 msgid "Internal Transfers Account" -msgstr "Konto wenętrznych przeksięgowań" +msgstr "Konto wewnętrznych przeksięgowań" #. module: account #: code:addons/account/wizard/pos_box.py:32 @@ -10167,7 +10169,7 @@ msgstr "Włóż pieniądze" #: view:account.entries.report:0 #: view:account.move.line:0 msgid "Unreconciled" -msgstr "Skasowano uzgodnienie" +msgstr "Nieuzgodnione" #. module: account #: code:addons/account/account_invoice.py:922 @@ -11199,7 +11201,7 @@ msgstr "Warunki płatności dostawcy nie mają pozycji." #. module: account #: field:account.account,parent_right:0 msgid "Parent Right" -msgstr "" +msgstr "Prawa nadrzędne" #. module: account #. openerp-web diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po index 7da4c90d5d3..a21780a37a3 100644 --- a/addons/account/i18n/pt.po +++ b/addons/account/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index 69dba27c430..f050e370177 100644 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po index c2f5f67e61d..54416595d82 100644 --- a/addons/account/i18n/ro.po +++ b/addons/account/i18n/ro.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-12-10 07:21+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \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-09-12 05:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 msgid "System payment" -msgstr "Sistem de plata" +msgstr "Sistem de plată" #. module: account #: sql_constraint:account.fiscal.position.account:0 @@ -35,7 +35,7 @@ msgid "" "Determine the display order in the report 'Accounting \\ Reporting \\ " "Generic Reporting \\ Taxes \\ Taxes Report'" msgstr "" -"Determinati ordinea de afisare in raportul 'Contabilitate \\ Raportare \\ " +"Determinați ordinea de afișare în raportul 'Contabilitate \\ Raportare \\ " "Raportare Generala \\ Taxe \\ Raport Taxe'" #. module: account @@ -48,7 +48,7 @@ msgstr "Reconciliere Inregistrari in Jurnalul contabil" #: view:account.bank.statement:0 #: view:account.move.line:0 msgid "Account Statistics" -msgstr "Statistica Cont" +msgstr "Statistică cont" #. module: account #: view:account.invoice:0 @@ -58,7 +58,7 @@ msgstr "Facturi Proforma/Deschise/Platite" #. module: account #: field:report.invoice.created,residual:0 msgid "Residual" -msgstr "Valoare reziduala" +msgstr "Valoare reziduală" #. module: account #: code:addons/account/account_bank_statement.py:369 @@ -108,7 +108,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "Reconciliati" +msgstr "Reconciliați" #. module: account #: field:account.bank.statement,name:0 @@ -120,7 +120,7 @@ msgstr "Reconciliati" #: xsl:account.transfer:0 #: field:cash.box.in,ref:0 msgid "Reference" -msgstr "Referinta" +msgstr "Referință" #. module: account #: help:account.payment.term,active:0 @@ -128,8 +128,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the payment " "term without removing it." msgstr "" -"In cazul in care campul activ este setat pe Fals, va va permite sa ascundeti " -"termenul de plata fara sa il stergeti." +"În cazul în care câmpul activ este setat pe Fals, vă va permite să ascundeți " +"termenul de plata fără sa îl ștergeți." #. module: account #: code:addons/account/account.py:641 @@ -189,7 +189,7 @@ msgid "" "

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

\n" " Faceti click pentru a adauga o perioada fiscala.\n" "

\n" " O perioada contabila este o luna sau un trimestru. De\n" @@ -322,7 +322,7 @@ msgid "" "

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

\n" " Faceti click pentru a crea o rambursare pentru client. \n" "

\n" " O rambursare este un document care atribuie o factura " @@ -749,8 +749,8 @@ msgid "" "Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " "and 'draft' or ''}" msgstr "" -"Factura_${(obiect.numar sau '').inlocuieste('/','_')}_${obiect.stare == " -"'ciorna' si 'ciorna' sau ''}" +"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " +"and 'draft' or ''}" #. module: account #: view:account.period:0 @@ -928,7 +928,7 @@ msgstr "Linie abonament cont" #. module: account #: help:account.invoice,reference:0 msgid "The partner reference of this invoice." -msgstr "Referinta partener a acestei facturi." +msgstr "Referința partener a acestei facturi." #. module: account #: view:account.invoice.report:0 @@ -1083,7 +1083,7 @@ msgstr "Suma totala" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "Referinta acestei facturi asa cum a fost oferita de furnizor." +msgstr "Referința acestei facturi așa cum a fost transmisă de furnizor." #. module: account #: selection:account.account,type:0 @@ -1207,7 +1207,7 @@ msgid "" "

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

\n" " Faceti click pentru a adauga un cont.\n" "

\n" " Atunci cand efectuati tranzactii cu valute multiple, puteti " @@ -1316,7 +1316,7 @@ msgid "" "

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

\n" " Faceti click pentru a crea un registru de numerar nou.\n" "

\n" " O casa de marcat va permite sa gestionati intrarile de " @@ -1457,7 +1457,7 @@ msgstr "Eticheta Inregistrare" #: help:account.invoice,origin:0 #: help:account.invoice.line,origin:0 msgid "Reference of the document that produced this invoice." -msgstr "Referinta documentului care a produs aceasta factura." +msgstr "Referința documentului care a produs această factură." #. module: account #: view:account.analytic.line:0 @@ -1569,7 +1569,7 @@ msgstr "Reconciliati Inregistrarile" #: model:ir.actions.report.xml,name:account.account_overdue #: view:res.company:0 msgid "Overdue Payments" -msgstr "Plati restante" +msgstr "Plăți restante" #. module: account #: report:account.third_party_ledger:0 @@ -1820,7 +1820,7 @@ msgstr "Cauta Extrasele de cont" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "Elemente Neafisate ale Jurnalului" +msgstr "Elemente Nepostate ale Jurnalului" #. module: account #: view:account.chart.template:0 @@ -1837,7 +1837,7 @@ msgstr "Cont Restituire Taxa" #. module: account #: model:ir.model,name:account.model_ir_sequence msgid "ir.sequence" -msgstr "ir.secventa" +msgstr "ir.sequence" #. module: account #: view:account.bank.statement:0 @@ -1879,7 +1879,7 @@ msgid "" "

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

\n" " Faceti click pentru a defini un nou tip de cont.\n" "

\n" " Tipul de cont este folosit pentru a determina modul in care " @@ -2080,7 +2080,7 @@ msgstr "Planuri de Conturi Analitice" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "Referinta Client:" +msgstr "Referință client:" #. module: account #: help:account.tax,base_code_id:0 @@ -2212,7 +2212,7 @@ msgid "" "

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

\n" " Faceti click pentru a inregistra o noua factura a " "furnizorului.\n" "

\n" @@ -2285,7 +2285,7 @@ msgid "" "

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

\n" " Faceti click pentru a inregistra un extras de cont.\n" "

\n" " Un extras de cont este un rezumat al tuturor tranzactiilor " @@ -2413,7 +2413,7 @@ msgstr "Configureaza Contabilitatea" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference Unit of Measure" -msgstr "Unitatea de Masura de Referinta" +msgstr "Unitatea de Masura de Referință" #. module: account #: help:account.journal,allow_date:0 @@ -2959,7 +2959,7 @@ msgid "" "

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

\n" " Faceti click pentru a crea o inregistrare in registru.\n" "

\n" " O inregistrare in registru consta din mai multe elemente ale " @@ -3113,7 +3113,7 @@ msgstr "Reconciliere bancara" #. module: account #: report:account.invoice:0 msgid "Disc.(%)" -msgstr "Reducere(%)" +msgstr "Disc.(%)" #. module: account #: report:account.general.ledger:0 @@ -3188,7 +3188,7 @@ msgid "" "

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

\n" " Faceti click pentru a incepe un nou an fiscal.\n" "

\n" " Definiti anul fiscal al companiei dumneavoastra in functie " @@ -3257,10 +3257,10 @@ msgid "" "Note that journal entries that are automatically created by the system are " "always skipping that state." msgstr "" -"Bifati aceasta casuta daca nu doriti ca inregistrarile noi din jurnal sa " -"treaca in stadiul de 'ciorna', ci sa ajunga in schimb direct in 'stadiu " -"afisat' fara nici o validare manuala. Observati ca inregistrarile in jurnal " -"care sunt create automat de catre sistem sar intotdeauna peste acel stadiu." +"Bifați aceasta căsuță dacă nu doriți ca înregistrările noi din jurnal să " +"treacă în stadiul de 'ciornă', ci să ajungă în schimb direct în 'stadiu " +"postat' fără nici o validare manuală. Observați ca înregistrările din jurnal " +"care sunt create automat de către sistem sar întotdeauna peste acel stadiu." #. module: account #: field:account.move.line.reconcile,writeoff:0 @@ -3300,7 +3300,7 @@ msgstr "Vanzari dupa Cont" #: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "Nu puteti sterge o inregistrare afisata \"%s\" a registrului." +msgstr "Nu puteți șterge o înregistrare postată \"%s\" a registrului." #. module: account #: view:account.invoice:0 @@ -4162,8 +4162,8 @@ msgid "" "All selected journal entries will be validated and posted. It means you " "won't be able to modify their accounting fields anymore." msgstr "" -"Toate inregistrarile in jurnal selectate vor fi validate si afisate. Aceasta " -"inseamna ca nu veti mai putea modifica campurile lor contabile." +"Toate înregistrările din jurnal selectate vor fi validate și postate. " +"Aceasta înseamnă ca nu veți mai putea modifica câmpurile lor contabile." #. module: account #: code:addons/account/account_move_line.py:98 @@ -4224,20 +4224,19 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a crea o factura a clientului.\n" +"

\n" +" Faceți clic pentru a emite o factură unui client.\n" "

\n" -" Facturarea electronica a lui OpenERP permite usurarea si " -"fixarea\n" -" colectarii platilor clientilor. Clientul dumneavoastra " -"primeste\n" -" factura prin email si poate sa o plateasca online si/sau sa " +" Facturarea electronică din OpenERP vă facilitează\n" +" colectarea rapidă a încasărilor. Clientul dumneavoastră " +"primește\n" +" factura prin email și poate să o plătească online si/sau să " "o importe\n" -" in propriul sistem.\n" +" în propriul sistem.\n" "

\n" -" Discutiile cu clientul dumneavoastra sunt afisate automat " -"in\n" -" partea de jos a fiecarei facturi.\n" +" Corespondența cu clientul dumneavoastră este afișată automat " +"în\n" +" partea de jos a fiecărei facturi.\n" "

\n" " " @@ -4271,9 +4270,9 @@ msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" -"Nu puteti modifica o inregistrare postata a acestui registru.\n" -"Mai intai ar trebui sa configurati registrul pentru a permite anularea " -"inregistrarilor." +"Nu puteți modifica o înregistrare postată a acestui registru.\n" +"Mai întâi ar trebui să configurați registrul pentru a permite anularea " +"înregistrărilor." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal @@ -4425,7 +4424,7 @@ msgstr "Data" #. module: account #: view:account.move:0 msgid "Post" -msgstr "Afisati" +msgstr "Postați" #. module: account #: view:account.unreconcile:0 @@ -4863,7 +4862,8 @@ msgstr "" msgid "" "If you put \"%(year)s\" in the prefix, it will be replaced by the current " "year." -msgstr "Daca introduceti \"%(an)s\" in pefix, va fi inlocuit cu anul curent." +msgstr "" +"Dacă introduceți \"%(year)s\" în pefix, va fi înlocuit cu anul curent." #. module: account #: help:account.account,active:0 @@ -4877,7 +4877,7 @@ msgstr "" #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "Elemente Afisate ale Jurnalului" +msgstr "Elemente postate ale jurnalului" #. module: account #: field:account.move.line,blocked:0 @@ -4967,7 +4967,7 @@ msgid "" "

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

\n" " Dati click pentru a seta un nou cont bancar. \n" "

\n" " Configurati contul bancar al companiei dumneavoastra si " @@ -5121,7 +5121,7 @@ msgstr "" #: code:addons/account/report/common_report_header.py:68 #, python-format msgid "All Posted Entries" -msgstr "Toate inregistrarile Afisate" +msgstr "Toate înregistrările postate" #. module: account #: field:report.aged.receivable,name:0 @@ -5178,7 +5178,7 @@ msgstr "Plan de conturi" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "Referinta Plata" +msgstr "Referință Plată" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -5555,7 +5555,7 @@ msgstr "Facturat" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "Inregistrari in Jurnal Afisate" +msgstr "Înregistrări postate în Jurnal" #. module: account #: view:account.use.model:0 @@ -6313,7 +6313,7 @@ msgstr "Cantitatea Produselor" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Unposted" -msgstr "Neafisat" +msgstr "Nepostat" #. module: account #: view:account.change.currency:0 @@ -6582,7 +6582,7 @@ msgstr "Nr. de cont" #: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" -msgstr "Referinta gratuita" +msgstr "Referinţă liberă" #. module: account #: selection:account.aged.trial.balance,result_selection:0 @@ -6670,7 +6670,7 @@ msgid "" "

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

\n" " Dati click pentru a adauga un cont.\n" "

\n" " Un cont este o parte a unui registru de contabilitate care " @@ -6758,11 +6758,11 @@ msgid "" "created by the system on document validation (invoices, bank statements...) " "and will be created in 'Posted' status." msgstr "" -"Toate inregistrarile noi din registru create manual se afla de obicei in " -"starea 'Neafisate', dar puteti seta optiunea de a sari peste acea stare in " -"registrul respectiv. In acest caz, ele se vor comporta ca niste inregistrari " -"in registru create automat de sistem la validarea documentelor (facturi, " -"extrase de cont...) si vor fi create in starea 'Afisate'." +"Toate înregistrările noi din registru create manual se afla de obicei în " +"starea 'Nepostat', dar puteți seta opțiunea de a sări peste acea stare în " +"registrul respectiv. În acest caz, ele se vor comporta ca niște înregistrări " +"de registru create automat de sistem la validarea documentelor (facturi, " +"extrase de cont...) și vor fi create în starea 'Postat'." #. module: account #: field:account.payment.term.line,days:0 @@ -6964,7 +6964,7 @@ msgid "" "

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

\n" " Faceti click pentru a inregistra o rambursare primita de la " "un furnizor.\n" "

\n" @@ -8116,7 +8116,7 @@ msgstr "Actioneaza ca un cont implicit pentru valoarea debitului" #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "Inregistrari afisate" +msgstr "Înregistrari postate" #. module: account #: help:account.payment.term.line,value_amount:0 @@ -8505,7 +8505,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "Inregistrari in Jurnal Neafisate" +msgstr "Înregistrări nepostate în Jurnal" #. module: account #: help:account.invoice.refund,date:0 @@ -8619,7 +8619,7 @@ msgstr "Ordinea notelor de credit" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "Afisati Inregistrarile in Jurnal" +msgstr "Înregistrări postate în Jurnal" #. module: account #: selection:account.bank.statement.line,type:0 @@ -9309,7 +9309,7 @@ msgstr "Tipuri de Conturi" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "${obiect.companie_id.nume} Factura (Ref ${obiect.numar sau 'n/a'})" +msgstr "${object.company_id.name} Factura (Ref ${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1210 @@ -9381,7 +9381,7 @@ msgid "" "

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

\n" " Dati click pentru a adauga un registru.\n" "

\n" " Un registru este utilizat pentru a inregistra tranzactii cu " @@ -9422,7 +9422,7 @@ msgstr "Filtrati dupa" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" -"Pentru a inchide o perioada, mai intai trebuie sa afisati inregistrarile in " +"Pentru a închide o perioada, mai întâi trebuie să postați înregistrările de " "jurnal asociate." #. module: account @@ -9606,7 +9606,7 @@ msgid "" "

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

\n" " Dati click pentru a defini o noua inregistrare recurenta.\n" "

\n" " O inregistrare recurenta are loc pe o baza recurenta dintr-o " @@ -10980,7 +10980,7 @@ msgstr "Selectati perioada" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Posted" -msgstr "Afisat" +msgstr "Postat" #. module: account #: report:account.account.balance:0 @@ -11522,7 +11522,7 @@ msgid "" "

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

\n" " Dati click pentru a defini un nou cod fiscal.\n" "

\n" " In functie de tara, un cod fiscal este de obicei o celula " @@ -11560,7 +11560,7 @@ msgid "" "

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

\n" " Selectati perioada si registrul pe care doriti sa il " "completati.\n" "

\n" diff --git a/addons/account/i18n/ru.po b/addons/account/i18n/ru.po index 28d04731c8e..4fc289c54bc 100644 --- a/addons/account/i18n/ru.po +++ b/addons/account/i18n/ru.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-07-02 06:32+0000\n" +"PO-Revision-Date: 2013-12-19 08:06+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:59+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -184,6 +184,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Щелкните, чтобы добавить отчетный период.\n" +"

\n" +" Отчетный период как правило - месяц или квартал .\n" +" Обычно он соответствует периодам налоговой декларации.\n" +"

\n" +" " #. module: account #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard diff --git a/addons/account/i18n/si.po b/addons/account/i18n/si.po index d5df660ca45..8fb3b37725a 100644 --- a/addons/account/i18n/si.po +++ b/addons/account/i18n/si.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:59+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sk.po b/addons/account/i18n/sk.po index e9f4210c463..5aad9c39894 100644 --- a/addons/account/i18n/sk.po +++ b/addons/account/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:59+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sl.po b/addons/account/i18n/sl.po index 5c1ba8446ac..5cc001fa76c 100644 --- a/addons/account/i18n/sl.po +++ b/addons/account/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:59+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -51,7 +51,7 @@ msgstr "Knjigovodske statistike" #. module: account #: view:account.invoice:0 msgid "Proforma/Open/Paid Invoices" -msgstr "Proforma/Odpri/Plačani računi" +msgstr "Predračuni/Odprti računi/Plačani računi" #. module: account #: field:report.invoice.created,residual:0 @@ -238,7 +238,7 @@ msgstr "Izbor postavke za zapiranje" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries are an input of the reconciliation." -msgstr "Postavke so vhod za usklajevanje" +msgstr "Knjigovodske transakcije so osnova za uskaljevanje" #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports @@ -1042,7 +1042,7 @@ msgstr "Konsolidacija" #: model:account.financial.report,name:account.account_financial_report_liability0 #: model:account.financial.report,name:account.account_financial_report_liabilitysum0 msgid "Liability" -msgstr "Odgovornost" +msgstr "Obveznost" #. module: account #: code:addons/account/account_invoice.py:899 @@ -1058,7 +1058,7 @@ msgstr "Razširjeni filtri..." #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal msgid "Centralizing Journal" -msgstr "Osrednji dnevnik" +msgstr "Zbir po dnevnikih in kontih" #. module: account #: selection:account.journal,type:0 @@ -1704,7 +1704,7 @@ msgstr "Zaprto" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries msgid "Recurring Entries" -msgstr "Ponavljajoči vnosi" +msgstr "Ponavljajoče temeljnice" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template @@ -3275,7 +3275,7 @@ msgstr "Finačno računovodstvo" #. module: account #: model:ir.ui.menu,name:account.menu_account_report_pl msgid "Profit And Loss" -msgstr "Dobiček/Izguba" +msgstr "Izkaz poslovnega izida" #. module: account #: view:account.fiscal.position:0 @@ -3374,7 +3374,7 @@ msgstr "Seznam davčnih predlog" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "Prodaja/Nabava dneviki" +msgstr "Dnevniki prodaje/nabave" #. module: account #: help:account.account,currency_mode:0 @@ -4377,7 +4377,7 @@ msgstr "Dnevnik mora imeti privzeti debetni in kreditni konto." #: model:ir.actions.act_window,name:account.action_bank_tree #: model:ir.ui.menu,name:account.menu_action_bank_tree msgid "Setup your Bank Accounts" -msgstr "Nastavite bančne račune" +msgstr "Nastavitev bančnih računov" #. module: account #: xsl:account.transfer:0 @@ -4393,7 +4393,7 @@ msgstr "Sporočila in zgodovina sporočil" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "Analitični dnevnik" +msgstr "Dnevnik analitičnega knjigovodstva" #. module: account #: constraint:account.aged.trial.balance:0 @@ -7046,7 +7046,7 @@ msgstr "account.sequence.fiscalyear" #: model:ir.model,name:account.model_account_analytic_journal #: model:ir.ui.menu,name:account.account_analytic_journal_print msgid "Analytic Journal" -msgstr "Analitični dnevnik" +msgstr "Dnevnik analitičnega knjigovodstva" #. module: account #: view:account.entries.report:0 @@ -7242,7 +7242,7 @@ msgstr "Ohranite predznak salda" #: model:ir.actions.report.xml,name:account.account_vat_declaration #: model:ir.ui.menu,name:account.menu_account_vat_declaration msgid "Taxes Report" -msgstr "Poročilo o davkih" +msgstr "DDV-O obrazec" #. module: account #: selection:account.journal.period,state:0 @@ -7388,7 +7388,7 @@ msgstr "Davčno območje" #: model:ir.actions.report.xml,name:account.account_general_ledger_landscape #: model:ir.ui.menu,name:account.menu_general_ledger msgid "General Ledger" -msgstr "Glavna knjiga" +msgstr "Kartica glavne knjige" #. module: account #: model:process.transition,note:account.process_transition_paymentorderbank0 @@ -9445,7 +9445,7 @@ msgstr "Podatki o izdelku" #: view:account.move.line:0 #: model:ir.ui.menu,name:account.next_id_40 msgid "Analytic" -msgstr "Analitika" +msgstr "Analitično knjigovodstvo" #. module: account #: model:process.node,name:account.process_node_invoiceinvoice0 @@ -10206,7 +10206,7 @@ msgstr "Osnutek računa " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal msgid "General Journals" -msgstr "Splošni dnevniki" +msgstr "Dnevniki" #. module: account #: view:account.model:0 diff --git a/addons/account/i18n/sq.po b/addons/account/i18n/sq.po index 9650b0d3a25..7fc79225795 100644 --- a/addons/account/i18n/sq.po +++ b/addons/account/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:52+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sr.po b/addons/account/i18n/sr.po index ef5a51a2b0e..1905f80c234 100644 --- a/addons/account/i18n/sr.po +++ b/addons/account/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:59+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sr@latin.po b/addons/account/i18n/sr@latin.po index 9a97cd6d0e8..ef0d5883638 100644 --- a/addons/account/i18n/sr@latin.po +++ b/addons/account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:04+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po index 9f37aadca18..6786eae43dd 100644 --- a/addons/account/i18n/sv.po +++ b/addons/account/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:00+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -80,7 +80,7 @@ msgstr "Importera från fakturor eller betalningar" #: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "Fel konto!" #. module: account #: view:account.move:0 @@ -240,7 +240,7 @@ msgstr "Belgiska rapporter" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Validerad" #. module: account #: model:account.account.type,name:account.account_type_income_view1 @@ -261,7 +261,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "Nästa kreditfakturanummer" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -365,7 +365,7 @@ msgstr "" #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "Tillåter dig att använda analys konteringen" #. module: account #: view:account.invoice:0 @@ -439,7 +439,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Period:" #. module: account #: field:account.account.template,chart_template_id:0 @@ -911,7 +911,7 @@ msgstr "JC/Affärshändelse" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Kontokod och namn" #. module: account #: selection:account.entries.report,month:0 @@ -1098,7 +1098,7 @@ msgstr "Kod" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Egenskaper" #. module: account #: code:addons/account/account.py:2346 @@ -1484,7 +1484,7 @@ msgstr "Rapportinställningar" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "Bokföringsår som ska stängas" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 @@ -1605,7 +1605,7 @@ msgstr "Hoppa över preliminär status för manuella registreringar" #: code:addons/account/wizard/account_report_common.py:164 #, python-format msgid "Not implemented." -msgstr "" +msgstr "Ej implementerat" #. module: account #: view:account.invoice.refund:0 @@ -1798,7 +1798,7 @@ msgstr "Bokslutsårsordning" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Analyskonto" #. module: account #: report:account.overdue:0 @@ -1871,6 +1871,8 @@ msgid "" "Select a configuration package to setup automatically your\n" " taxes and chart of accounts." msgstr "" +"Välj ett konfigureringspaket för att automatiskt skaap din\n" +" kontoplan, skattekoder och momskoder." #. module: account #: view:account.analytic.account:0 @@ -1971,7 +1973,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "Betala dina leverantörer med check" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -2126,7 +2128,7 @@ msgstr "" #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "Företagets standardvaluta" #. module: account #: field:account.invoice,move_id:0 diff --git a/addons/account/i18n/ta.po b/addons/account/i18n/ta.po index a04e6af79dd..2be7c6d3d4a 100644 --- a/addons/account/i18n/ta.po +++ b/addons/account/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:00+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/te.po b/addons/account/i18n/te.po index 55b9f19f361..4d872832a8b 100644 --- a/addons/account/i18n/te.po +++ b/addons/account/i18n/te.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:00+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/th.po b/addons/account/i18n/th.po index b32366c4e49..03175b8aa5e 100644 --- a/addons/account/i18n/th.po +++ b/addons/account/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:00+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/tlh.po b/addons/account/i18n/tlh.po index c272a07accf..06b06515397 100644 --- a/addons/account/i18n/tlh.po +++ b/addons/account/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:00+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po index e2e30674b8b..f26b6d46edb 100644 --- a/addons/account/i18n/tr.po +++ b/addons/account/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:01+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -277,7 +277,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "Sonraki alacak dekontu sayısı" +msgstr "Sonraki alacak dekont numarası" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -370,7 +370,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "Çok para birimine izin ver" +msgstr "Çoklu para birimine izin verme" #. module: account #: code:addons/account/account_invoice.py:77 @@ -1325,7 +1325,7 @@ msgstr "Banka" #. module: account #: field:account.period,date_start:0 msgid "Start of Period" -msgstr "Dönemin Başı" +msgstr "Dönem Başı" #. module: account #: view:account.tax:0 @@ -1746,7 +1746,7 @@ msgstr "Tedarikçi İadeleri" #: field:account.tax.code,code:0 #: field:account.tax.code.template,code:0 msgid "Case Code" -msgstr "Dava Kodu" +msgstr "Vergi Kodu" #. module: account #: field:account.config.settings,company_footer:0 @@ -2090,7 +2090,7 @@ msgstr "Fatura doğrulandı" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "Tedarikçilerinize çek ile ödeme yapın" +msgstr "Tedarikçilere çek ile ödeme yapma" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -2327,7 +2327,7 @@ msgstr "İzleyiciler" #: model:ir.actions.act_window,name:account.action_account_print_journal #: model:ir.model,name:account.model_account_print_journal msgid "Account Print Journal" -msgstr "Hesap Yazdırma Yevmiyesi" +msgstr "Yevmiye Hesap Yazdırma" #. module: account #: model:ir.model,name:account.model_product_category @@ -2500,7 +2500,7 @@ msgstr "Kayıt Aç" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "Sonraki tedarikçi alacak dekontu sayısı" +msgstr "Sonraki tedarikçi alacak dekont numarası" #. module: account #: field:account.automatic.reconcile,account_ids:0 @@ -2551,7 +2551,7 @@ msgstr "Bu %s yevmiyeyi açmak için yetkiniz yok !" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "Tedarikçi faturalarında toplamları denetle" +msgstr "Tedarikçi Faturasında Toplama Denetimi" #. module: account #: selection:account.invoice,state:0 @@ -2955,7 +2955,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "Sonraki tedarikçi fatura no" +msgstr "Sonraki tedarikçi fatura numarası" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -3302,7 +3302,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_tax_code_list #: model:ir.ui.menu,name:account.menu_action_tax_code_list msgid "Tax codes" -msgstr "Vergi kodları" +msgstr "Vergi Kodları" #. module: account #: view:account.account:0 @@ -4194,7 +4194,7 @@ msgstr "" #: field:account.tax.code,name:0 #: field:account.tax.code.template,name:0 msgid "Tax Case Name" -msgstr "Vergi Davası Adı" +msgstr "Vergi Adı" #. module: account #: report:account.invoice:0 @@ -4452,7 +4452,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "Tedarikçi faturalarının toplamını denetle" +msgstr "Tedarikçi faturalarının toplamını denetleme" #. module: account #: view:account.tax:0 @@ -6468,7 +6468,7 @@ msgstr "kayıtlar" #. module: account #: field:res.partner,debit:0 msgid "Total Payable" -msgstr "Total Borç" +msgstr "Toplam Borç" #. module: account #: model:account.account.type,name:account.data_account_type_income @@ -8113,7 +8113,7 @@ msgstr "Gelir Hesabı Açılış Kayıtları" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "Pro-forma faturalara izin ver" +msgstr "Pro-forma faturalara izin verme" #. module: account #: view:account.bank.statement:0 @@ -8139,7 +8139,7 @@ msgstr "Fatura Referansı" #. module: account #: field:account.fiscalyear.close,report_name:0 msgid "Name of new entries" -msgstr "Yeni kayıtların adı" +msgstr "Yeni Kayıtların Adı" #. module: account #: view:account.use.model:0 @@ -8366,7 +8366,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_multi_currency msgid "Multi-Currencies" -msgstr "Çok-Para Birimli" +msgstr "Çoklu Para Birimi" #. module: account #: field:account.model.line,date_maturity:0 @@ -10668,7 +10668,7 @@ msgstr "Taslak Fatura " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal msgid "General Journals" -msgstr "Genel Günlükler" +msgstr "Genel Yevmiyeler" #. module: account #: view:account.model:0 @@ -11365,7 +11365,7 @@ msgstr "Kalan ödenecek tutar" #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "Kayıtlar buna göre Sıralandı" +msgstr "Kayıtları Sıralama" #. module: account #: code:addons/account/account_invoice.py:1546 diff --git a/addons/account/i18n/ug.po b/addons/account/i18n/ug.po index e56c78e4b99..608e67b1719 100644 --- a/addons/account/i18n/ug.po +++ b/addons/account/i18n/ug.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:01+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/uk.po b/addons/account/i18n/uk.po index d52bfedaaba..fbe32fc534b 100644 --- a/addons/account/i18n/uk.po +++ b/addons/account/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:01+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ur.po b/addons/account/i18n/ur.po index a4a7a8d02bb..14a829a36de 100644 --- a/addons/account/i18n/ur.po +++ b/addons/account/i18n/ur.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:01+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/vi.po b/addons/account/i18n/vi.po index 4a6b0c4df2c..5b7417554ef 100644 --- a/addons/account/i18n/vi.po +++ b/addons/account/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:01+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po index e25dde874e0..46465ebb53a 100644 --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/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-06-07 09:22+0000\n" -"Last-Translator: 盈通 ccdos \n" +"PO-Revision-Date: 2013-11-08 09:37+0000\n" +"Last-Translator: jeffery chen fan \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-09-12 05:38+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -32,12 +32,12 @@ msgstr "在一个科目上只能设置一个替换规则。" msgid "" "Determine the display order in the report 'Accounting \\ Reporting \\ " "Generic Reporting \\ Taxes \\ Taxes Report'" -msgstr "确定以下报表的显示顺序:”会计-报表-通用报表-税务-税务报表“" +msgstr "确定以下报告的显示顺序:”会计-报告-通用报告-税务-税务报告“" #. module: account #: view:account.move.reconcile:0 msgid "Journal Entry Reconcile" -msgstr "凭证核销" +msgstr "账簿分录对账" #. module: account #: view:account.account:0 @@ -60,17 +60,17 @@ msgstr "余额" #: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." -msgstr "凭证\"%s\"无效" +msgstr "项目\"%s\"无效" #. module: account #: model:ir.model,name:account.model_report_aged_receivable msgid "Aged Receivable Till Today" -msgstr "应收账款账龄" +msgstr "今日到期的应收账款" #. module: account #: model:process.transition,name:account.process_transition_invoiceimport0 msgid "Import from invoice or payment" -msgstr "从发票或付款单导入" +msgstr "从发票或支付款导入" #. module: account #: code:addons/account/account_move_line.py:1058 @@ -78,7 +78,7 @@ msgstr "从发票或付款单导入" #: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" -msgstr "坏账" +msgstr "坏的科目" #. module: account #: view:account.move:0 @@ -93,7 +93,7 @@ msgid "" "You cannot create recursive account templates." msgstr "" "错误!\n" -"您不能创建重复的帐户模板。" +"您不能创建递归的帐户模板。" #. module: account #. openerp-web @@ -104,7 +104,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "核销" +msgstr "对账" #. module: account #: field:account.bank.statement,name:0 @@ -116,14 +116,14 @@ msgstr "核销" #: xsl:account.transfer:0 #: field:cash.box.in,ref:0 msgid "Reference" -msgstr "关联" +msgstr "关联单号" #. module: account #: help:account.payment.term,active:0 msgid "" "If the active field is set to False, it will allow you to hide the payment " "term without removing it." -msgstr "如果设置为false,该付款条款将会被隐藏。" +msgstr "如果active字段设置为false,该付款条款将会被隐藏。" #. module: account #: code:addons/account/account.py:641 @@ -152,7 +152,7 @@ msgstr "警告!" #: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" -msgstr "其它凭证簿" +msgstr "其它账簿" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -195,7 +195,7 @@ msgstr "过去15天开的发票" #. module: account #: field:accounting.report,label_filter:0 msgid "Column Label" -msgstr "字段标签" +msgstr "栏标签" #. module: account #: help:account.config.settings,code_digits:0 @@ -227,22 +227,22 @@ msgstr "税模板" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_select msgid "Move line reconcile select" -msgstr "选择凭证行核销" +msgstr "选择凭证行对账" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries are an input of the reconciliation." -msgstr "核销的第一个输入是会计分录" +msgstr "对账的第一个输入是会计分录" #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports msgid "Belgian Reports" -msgstr "比利时报表" +msgstr "比利时报告" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "已审核" +msgstr "已验证" #. module: account #: model:account.account.type,name:account.account_type_income_view1 @@ -255,12 +255,12 @@ msgid "" "Account Type is used for information purpose, to generate country-specific " "legal reports, and set the rules to close a fiscal year and generate opening " "entries." -msgstr "科目类别用于生成合乎各国财税规范的报表,设置财年结帐的规则以及生成未登帐凭证" +msgstr "科目类别用于生成合乎各国财税规范的报告,设置财年结帐的规则以及生成未登帐凭证" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "下一个信用证编码" +msgstr "下一个信用证号码" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -306,9 +306,9 @@ msgstr "" "

\n" " 点击创建一个客户退款. \n" "

\n" -" 退款是全部或部分借记销售发票的证明。\n" +" 退款是全部或部分借记销售传票的证明。\n" "

\n" -" 可以直接从与客户相关联的发票直接生成退款,以代替手工创建客户退款。.\n" +" 可以直接从与客户相关联的传票直接生成退款,以代替手工创建客户退款。.\n" "

\n" " " @@ -322,7 +322,7 @@ msgstr "安装本地化财务系统以尽可能的适应本国的财务要求" #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "科目反核销" +msgstr "科目反对账" #. module: account #: field:account.config.settings,module_account_budget:0 @@ -351,7 +351,7 @@ msgstr "允许多种货币" #: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" -msgstr "你必须定义一个类型为 '%s'的成本凭证簿!" +msgstr "你必须定义一个类型为 '%s'的成本账簿!" #. module: account #: selection:account.entries.report,month:0 @@ -366,7 +366,7 @@ msgstr "6月" #: code:addons/account/wizard/account_automatic_reconcile.py:148 #, python-format msgid "You must select accounts to reconcile." -msgstr "你必须选择要核销的账簿 。" +msgstr "你必须选择要对账的账簿 。" #. module: account #: help:account.config.settings,group_analytic_accounting:0 @@ -401,12 +401,12 @@ msgstr "建立日期" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "采购红字发票" +msgstr "采购退款" #. module: account #: selection:account.journal,type:0 msgid "Opening/Closing Situation" -msgstr "开启/结束状态" +msgstr "开启/结束情况" #. module: account #: help:account.journal,currency:0 @@ -436,8 +436,8 @@ msgid "" msgstr "" "此处可以管理属于公司或者个人的资产.\n" " 跟踪资产折旧的发生,创建折旧明细账户。.\n" -" 要安装account_asset模块. 如果不检查box, 可以处理发票和付款,\n" -" 但不能处理账记(账簿明细, 会计报表, ...)" +" 要安装account_asset模块. 如果不检查box, 可以处理传票和付款,\n" +" 但不能处理账记(分录明细, 科目表, ...)" #. module: account #: help:account.bank.statement.line,name:0 @@ -449,7 +449,7 @@ msgstr "发起人到受益人的信息" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "时间:" +msgstr "期间:" #. module: account #: field:account.account.template,chart_template_id:0 @@ -457,7 +457,7 @@ msgstr "时间:" #: field:account.tax.template,chart_template_id:0 #: field:wizard.multi.charts.accounts,chart_template_id:0 msgid "Chart Template" -msgstr "科目一览表模板" +msgstr "科目模板一览表" #. module: account #: selection:account.invoice.refund,filter_refund:0 @@ -476,6 +476,9 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"如果选择“每行取整”:对于每个税种,首先计算和取整每一(PO/SO/invoice)行的税额,之后将这些已被取整的税额叠加作为该税种的总额。\r\n" +"如果选择“全局取整”:对于每个税种,先计算其每一(PO/SO/invoice)行,而后先计算该税种的总和,最后再对总和取整作为该税种的总额。\r\n" +"如果你的销售额含税,你应该选择“每行取整” 因为你需要使你的“含税行”的金额总和等于总的税额。" #. module: account #: model:ir.model,name:account.model_wizard_multi_charts_accounts @@ -490,7 +493,7 @@ msgstr "备选币种所示金额" #. module: account #: view:account.journal:0 msgid "Available Coins" -msgstr "有效的硬币" +msgstr "可用的硬币" #. module: account #: field:accounting.report,enable_filter:0 @@ -528,7 +531,7 @@ msgstr "允许比较" #: model:ir.model,name:account.model_account_journal #: field:validate.account.move,journal_id:0 msgid "Journal" -msgstr "凭证" +msgstr "凭证簿" #. module: account #: model:ir.model,name:account.model_account_invoice_confirm @@ -548,7 +551,7 @@ msgstr "显示发票的时候给出明细编号。" #. module: account #: field:account.bank.statement,account_id:0 msgid "Account used in this journal" -msgstr "凭证上的科目" +msgstr "使用在凭证簿里的科目" #. module: account #: help:account.aged.trial.balance,chart_account_id:0 @@ -581,7 +584,7 @@ msgstr "Li." #. module: account #: field:account.automatic.reconcile,unreconciled:0 msgid "Not reconciled transactions" -msgstr "没核销的交易" +msgstr "没对账的交易" #. module: account #: report:account.general.ledger:0 @@ -594,30 +597,30 @@ msgstr "对方" #: field:account.fiscal.position,tax_ids:0 #: field:account.fiscal.position.template,tax_ids:0 msgid "Tax Mapping" -msgstr "税一览表" +msgstr "税映射" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state #: model:ir.ui.menu,name:account.menu_wizard_fy_close_state msgid "Close a Fiscal Year" -msgstr "关闭一个会计年度" +msgstr "关闭一个财政年度" #. module: account #: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 msgid "The accountant confirms the statement." -msgstr "财务人员确认的报表" +msgstr "会计确认报告" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_reconciliation.xml:31 #, python-format msgid "Nothing to reconcile" -msgstr "没有什么被核销" +msgstr "没有什么被对账" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "凭证分录小数精度" +msgstr "凭证簿分录小数精度" #. module: account #: selection:account.config.settings,period:0 @@ -634,7 +637,7 @@ msgstr "序号" #: field:account.financial.report,account_report_id:0 #: selection:account.financial.report,type:0 msgid "Report Value" -msgstr "报表数值" +msgstr "报告数值" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:39 @@ -653,7 +656,7 @@ msgstr "税一览表" #. module: account #: report:account.central.journal:0 msgid "Centralized Journal" -msgstr "汇总账簿" +msgstr "汇总凭证簿" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 @@ -681,7 +684,7 @@ msgstr "根据输入的凭证日期没有找到期间或找到了多个期间" #. module: account #: model:ir.model,name:account.model_report_account_type_sales msgid "Report of the Sales by Account Type" -msgstr "销售报表的科目类型" +msgstr "销售报告的科目类型" #. module: account #: code:addons/account/account.py:3201 @@ -713,7 +716,7 @@ msgstr "关闭会计期间" #. module: account #: model:ir.model,name:account.model_account_common_partner_report msgid "Account Common Partner Report" -msgstr "业务伙伴普通报表" +msgstr "业务伙伴普通报告" #. module: account #: field:account.fiscalyear.close,period_id:0 @@ -723,13 +726,13 @@ msgstr "会计期间的启用分录" #. module: account #: model:ir.model,name:account.model_account_journal_period msgid "Journal Period" -msgstr "账簿的会计期间" +msgstr "凭证簿的会计期间" #. module: account #: constraint:account.move:0 msgid "" "You cannot create more than one move per period on a centralized journal." -msgstr "在每个会计期间,你不可以创建1个以上的总分类凭证" +msgstr "在每个会计期间,你不可以创建1个以上的总凭证簿" #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -767,12 +770,12 @@ msgstr "创建退款" 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 "凭证日期不在所选期间内!可以修改凭证日期或在凭证簿上去掉这个检查项。" +msgstr "凭证簿分录日期不在所选期间内!可以修改账簿分录日期或在账簿上去掉这个检查项。" #. module: account #: model:ir.model,name:account.model_account_report_general_ledger msgid "General Ledger Report" -msgstr "总账报表" +msgstr "总账报告" #. module: account #: view:account.invoice:0 @@ -834,7 +837,7 @@ msgstr "退款方式" #. module: account #: model:ir.ui.menu,name:account.menu_account_report msgid "Financial Report" -msgstr "财务报表" +msgstr "财务报告" #. module: account #: view:account.analytic.account:0 @@ -859,7 +862,9 @@ msgstr "类型" msgid "" "Taxes are missing!\n" "Click on compute button." -msgstr "没有选择税!" +msgstr "" +"税额计算有问题!\n" +"请点击\"更新税\"按钮." #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -880,19 +885,19 @@ msgstr "供应商发票和退款" #: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "分录已经核销。" +msgstr "分录已经对账。" #. module: account #: view:account.move.line.unreconcile.select:0 #: view:account.unreconcile.reconcile:0 #: model:ir.model,name:account.model_account_move_line_unreconcile_select msgid "Unreconciliation" -msgstr "反核销" +msgstr "反对账" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "辅助核算账簿" +msgstr "辅助核算凭证簿" #. module: account #: view:account.invoice:0 @@ -907,7 +912,7 @@ msgstr "以邮件发送" msgid "" "Print Report with the currency column if the currency differs from the " "company currency." -msgstr "如果币种跟公司本位币不同,带币种打印报表。" +msgstr "如果币种跟公司本位币不同,带币种打印报告。" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -948,7 +953,7 @@ msgid "" " " msgstr "" "

\n" -" 账簿明细未找到.\n" +" 凭证簿明细未找到.\n" "

\n" " " @@ -959,7 +964,7 @@ msgid "" "You cannot unreconcile journal items if they has been generated by the " " opening/closing fiscal " "year process." -msgstr "" +msgstr "你将不能对由“开启/关闭”会计年度进程所生成的账目记录进行调整。" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_new @@ -997,7 +1002,7 @@ msgstr "到期" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "采购分类账" +msgstr "采购凭证簿" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid @@ -1055,7 +1060,7 @@ msgstr "汇总账簿" #. module: account #: selection:account.journal,type:0 msgid "Sale Refund" -msgstr "销售红字发票" +msgstr "销售退款" #. module: account #: model:process.node,note:account.process_node_accountingstatemententries0 @@ -1219,7 +1224,7 @@ msgstr "现金记录" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "销售退货分类账" +msgstr "销售退货账簿" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1260,7 +1265,7 @@ msgstr "退款" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 msgid "Confirm statement" -msgstr "确认报表" +msgstr "确认报告" #. module: account #: view:account.tax:0 @@ -1306,7 +1311,7 @@ msgstr "作废发票" #. module: account #: help:account.journal,code:0 msgid "The code will be displayed on reports." -msgstr "该代码会在报表中显示" +msgstr "该代码会在报告中显示" #. module: account #: view:account.tax.template:0 @@ -1371,7 +1376,7 @@ msgstr "其它" #. module: account #: view:account.subscription:0 msgid "Draft Subscription" -msgstr "循环凭证草稿" +msgstr "草稿订阅" #. module: account #: view:account.account:0 @@ -1466,7 +1471,7 @@ msgstr "搜索税模板" #: model:ir.actions.act_window,name:account.action_account_reconcile_select #: model:ir.actions.act_window,name:account.action_view_account_move_line_reconcile msgid "Reconcile Entries" -msgstr "核销" +msgstr "对账" #. module: account #: model:ir.actions.report.xml,name:account.account_overdue @@ -1489,7 +1494,7 @@ msgstr "重置为草稿" #: view:account.aged.trial.balance:0 #: view:account.common.report:0 msgid "Report Options" -msgstr "报表选项" +msgstr "报告选项" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 @@ -1504,7 +1509,7 @@ msgstr "发票序列" #. module: account #: model:ir.model,name:account.model_account_entries_report msgid "Journal Items Analysis" -msgstr "账簿明细分析" +msgstr "分录明细分析" #. module: account #: model:ir.ui.menu,name:account.next_id_22 @@ -1564,7 +1569,7 @@ msgstr "余额不为0" msgid "" "There is no default debit account defined \n" "on journal \"%s\"." -msgstr "在分类账 \"%s\" 没有默认借方科目定义。" +msgstr "在账簿 \"%s\" 没有默认借方科目定义。" #. module: account #: view:account.tax:0 @@ -1624,12 +1629,12 @@ msgstr "未执行。" #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "冲销发票" +msgstr "冲销传票" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "电子发票和支付" +msgstr "电子传票和支付" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -1657,7 +1662,7 @@ msgstr "用于仪表盘视图的临时表" #: model:ir.actions.act_window,name:account.action_invoice_tree4 #: model:ir.ui.menu,name:account.menu_action_invoice_tree4 msgid "Supplier Refunds" -msgstr "供应商红字发票" +msgstr "供应商红字传票" #. module: account #: field:account.tax.code,code:0 @@ -1719,7 +1724,7 @@ msgstr "搜索银行对账单" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "未记账凭证" +msgstr "未记账分录明细" #. module: account #: view:account.chart.template:0 @@ -1778,6 +1783,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建一个新的账户类型.\n" +"

\n" +" 账户类型用来说明在各个日记账中如何使用这个账户。\n" +" 账户类型的递延方式决定了该账户在年终结账时的处理流程。\n" +" 财务报表,如资产负债表、利润表,将会使用这个分类。\n" +"

\n" +" " #. module: account #: report:account.invoice:0 @@ -1789,7 +1802,7 @@ msgstr "" #: model:res.request.link,name:account.req_link_invoice #, python-format msgid "Invoice" -msgstr "发票" +msgstr "开发票" #. module: account #: field:account.move,balance:0 @@ -1845,7 +1858,7 @@ msgstr "15 天" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing msgid "Invoicing" -msgstr "开发票" +msgstr "开传票" #. module: account #: code:addons/account/report/account_partner_balance.py:115 @@ -1859,13 +1872,13 @@ msgstr "未确定业务伙伴" msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." -msgstr "这个分类账簿的“合并对方科目”必须被选中,“跳过草稿状态”不能选中。" +msgstr "这个账簿的“合并对方科目”必须被选中,“跳过草稿状态”不能选中。" #. module: account #: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." -msgstr "有些分录已经被核销。" +msgstr "有些分录已经被对账。" #. module: account #: field:account.tax.code,sum:0 @@ -1936,7 +1949,7 @@ msgstr "期终余额" #. module: account #: model:ir.model,name:account.model_account_common_journal_report msgid "Account Common Journal Report" -msgstr "科目常用报表" +msgstr "科目常用账簿报告" #. module: account #: selection:account.partner.balance,display_partner:0 @@ -2154,7 +2167,7 @@ msgstr "公司本位币" #: field:account.invoice,move_name:0 #: field:account.move.line,move_id:0 msgid "Journal Entry" -msgstr "会计凭证" +msgstr "账簿分录" #. module: account #: view:account.invoice:0 @@ -2294,7 +2307,7 @@ 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 "凭证上的科目要求输入一个外币。你可以在科目设置中去掉这个外币或在凭证簿设置上选择一个支持多币种的输入界面。" +msgstr "账簿分录上的科目要求输入一个外币。你可以在科目设置中去掉这个外币或在账簿设置上选择一个支持多币种的输入界面。" #. module: account #: view:account.invoice:0 @@ -2312,7 +2325,7 @@ msgstr "如果此字段设为False,您可以隐藏而不删除这税。" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "与某销售凭证簿关联的分析凭证" +msgstr "与某销售账簿关联的成本分录明细" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -2324,7 +2337,7 @@ msgstr "斜体(小一些)" msgid "" "If you want the journal should be control at opening/closing, check this " "option" -msgstr "如果你要这个分类账在开启和结账时被控制,选中此项。" +msgstr "如果你要这个账簿在开启和结账时被控制,选中此项。" #. module: account #: view:account.bank.statement:0 @@ -2370,7 +2383,7 @@ msgstr "下个供应商信用记录编号" #. module: account #: field:account.automatic.reconcile,account_ids:0 msgid "Accounts to Reconcile" -msgstr "科目核销" +msgstr "科目对账" #. module: account #: model:process.transition,note:account.process_transition_filestatement0 @@ -2411,7 +2424,7 @@ msgstr "30天" #: code:addons/account/account_cash_statement.py:256 #, python-format msgid "You do not have rights to open this %s journal !" -msgstr "你没有权限打开 %s 分类账。" +msgstr "你没有权限打开 %s 账簿。" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total @@ -2424,7 +2437,7 @@ msgstr "检查供应商发票合计" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Pro-forma" -msgstr "形式发票" +msgstr "形式传票" #. module: account #: help:account.account.template,type:0 @@ -2575,12 +2588,12 @@ msgstr "留空为所有开启的会计年度" msgid "" "You cannot change the type of account from 'Closed' to any other type as it " "contains journal items!" -msgstr "" +msgstr "当账目记录有数据时,您将不能把它由关闭状态改变到其它状态!" #. module: account #: field:account.invoice.report,account_line_id:0 msgid "Account Line" -msgstr "发票明细" +msgstr "传票明细" #. module: account #: view:account.addtmpl.wizard:0 @@ -2596,12 +2609,14 @@ msgid "" "amount greater than the total invoiced amount. In order to avoid rounding " "issues, the latest line of your payment term must be of type 'balance'." msgstr "" +"无法创建传票。\n" +"相关的支付记录可能未确认核实,因为合计的总额大于传票的开票总额。为避免统计错误,请您确认最新的支付记录都在平衡状态。" #. module: account #: view:account.move:0 #: model:ir.model,name:account.model_account_move msgid "Account Entry" -msgstr "凭证" +msgstr "科目分录" #. module: account #: field:account.sequence.fiscalyear,sequence_main_id:0 @@ -2614,7 +2629,7 @@ msgstr "主序列" msgid "" "In order to delete a bank statement, you must first cancel it to delete " "related journal items." -msgstr "要删除银行对帐单,必须先取消并删除相关凭证项" +msgstr "要删除银行对帐单,必须先取消并删除相关账簿项目" #. module: account #: field:account.invoice.report,payment_term:0 @@ -2636,7 +2651,7 @@ msgstr "替换规则" #: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." -msgstr "你不能在关闭的科目%s %s 上面创建分类账分录。" +msgstr "你不能在关闭的科目%s %s 上面创建分账簿项目。" #. module: account #: field:account.period.close,sure:0 @@ -2667,12 +2682,12 @@ msgstr "创建一个退款单草稿" #. module: account #: view:account.partner.reconcile.process:0 msgid "Partner Reconciliation" -msgstr "往来业务核销" +msgstr "往来业务对账" #. module: account #: view:account.analytic.line:0 msgid "Fin. Account" -msgstr "" +msgstr "财务账目" #. module: account #: field:account.tax,tax_code_id:0 @@ -2689,7 +2704,7 @@ msgstr "预付30%30天内支付余款" #. module: account #: view:account.entries.report:0 msgid "Unreconciled entries" -msgstr "凭证反核销" +msgstr "凭证反对账" #. module: account #: field:account.invoice.tax,base_code_id:0 @@ -2800,7 +2815,7 @@ msgstr "选择会计期间" #. module: account #: model:ir.ui.menu,name:account.menu_account_pp_statements msgid "Statements" -msgstr "报表" +msgstr "报告" #. module: account #: report:account.analytic.account.journal:0 @@ -2810,7 +2825,7 @@ msgstr "凭证名称" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_writeoff msgid "Account move line reconcile (writeoff)" -msgstr "凭证行核销(注销)" +msgstr "凭证行对账(注销)" #. module: account #: model:account.account.type,name:account.conf_account_type_tax @@ -2871,7 +2886,7 @@ msgstr "设置错误!" #: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." -msgstr "对账单 %s 确认,分类账目 被创建." +msgstr "对账单 %s 确认,账簿项目被创建." #. module: account #: field:account.invoice.report,price_average:0 @@ -2945,12 +2960,12 @@ msgstr "比较会计和支付项" #. module: account #: model:ir.ui.menu,name:account.menu_automatic_reconcile msgid "Automatic Reconciliation" -msgstr "自动核销" +msgstr "自动对账" #. module: account #: field:account.invoice,reconciled:0 msgid "Paid/Reconciled" -msgstr "已付/已核销" +msgstr "已付/已对账" #. module: account #: field:account.tax,ref_base_code_id:0 @@ -3080,7 +3095,7 @@ msgstr "销售科目" #: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "你不能删除已经登帐的分类账分录\"%s\"." +msgstr "你不能删除已经登帐的账簿分录\"%s\"." #. module: account #: view:account.invoice:0 @@ -3090,7 +3105,7 @@ msgstr "会计期间" #. module: account #: field:account.config.settings,sale_journal_id:0 msgid "Sale journal" -msgstr "销售分类帐" +msgstr "销售账簿" #. module: account #: code:addons/account/account.py:2346 @@ -3106,7 +3121,7 @@ msgstr "您必须定义这 '%s' 的辅助核算账簿!" msgid "" "This journal already contains items, therefore you cannot modify its company " "field." -msgstr "这个分类账已经包含了分录,因此不能修改他的公司字段" +msgstr "这个账簿已经包含了项目,因此不能修改他的公司字段" #. module: account #: code:addons/account/account.py:409 @@ -3114,7 +3129,7 @@ msgstr "这个分类账已经包含了分录,因此不能修改他的公司字 msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." -msgstr "你需要一个打开的分类账,集中设置初始余额。" +msgstr "你需要一个打开的账簿,集中设置初始余额。" #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -3147,7 +3162,7 @@ msgstr "会计期间到" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "August" -msgstr "8" +msgstr "8月" #. module: account #: field:accounting.report,debit_credit:0 @@ -3161,20 +3176,20 @@ msgstr "显示借贷列" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "October" -msgstr "10" +msgstr "10月" #. module: account #: help:account.move.line,quantity:0 msgid "" "The optional quantity expressed by this line, eg: number of product sold. " "The quantity is not a legal requirement but is very useful for some reports." -msgstr "行显示的非强制性数量,如:已销售产品。这数量不是一个强制要求,但对一些报表非常有用。" +msgstr "行显示的非强制性数量,如:已销售产品。这数量不是一个强制要求,但对一些报告非常有用。" #. module: account #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "未核销交易" +msgstr "未对账交易" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 @@ -3320,7 +3335,7 @@ msgstr "发票币别" #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "财务报表" +msgstr "财务报告" #. module: account #: field:account.payment.term,line_ids:0 @@ -3335,7 +3350,7 @@ msgstr "税模板列表" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "销售/采购 凭证簿" +msgstr "销售/采购 账簿" #. module: account #: help:account.account,currency_mode:0 @@ -3379,7 +3394,7 @@ msgstr "总是" #: field:account.config.settings,module_account_accountant:0 msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." -msgstr "全部会计特性:分类账,税务报表,会计科目表 等等" +msgstr "全部会计特性:账簿,税务报告,会计科目表 等等" #. module: account #: view:account.analytic.line:0 @@ -3436,7 +3451,7 @@ msgstr "电子文件" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "核销编号" +msgstr "对账编号" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 @@ -3571,7 +3586,7 @@ msgstr "交易" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile msgid "Account Unreconcile Reconcile" -msgstr "科目核销反核销" +msgstr "科目对账反对账" #. module: account #: help:account.account.type,close_method:0 @@ -3671,7 +3686,7 @@ msgid "" "if you give the Name other then /, its created Accounting Entries Move will " "be with same name as statement name. This allows the statement entries to " "have the same references than the statement itself" -msgstr "如果您指定其它名称,它创建的凭证或分录将用报表名相同的名称。这使得报表它自己关联相似的分录。" +msgstr "如果您指定其它名称,它创建的凭证或分录将用报告名相同的名称。这使得报告它自己关联相似的分录。" #. module: account #: code:addons/account/account_invoice.py:1016 @@ -3712,7 +3727,7 @@ msgstr "期初小计" msgid "" "You cannot create journal items with a secondary currency without recording " "both 'currency' and 'amount currency' field." -msgstr "" +msgstr "除非同时记录“currency“和“amount currency”这两个域值,您无法创建科目记录次级货币" #. module: account #: field:account.financial.report,display_detail:0 @@ -3739,6 +3754,9 @@ msgid "" "quotations with a button \"Pay with Paypal\" in automated emails or through " "the OpenERP portal." msgstr "" +"Paypal账户(email),在线收取支付信息(credit " +"card,etc.)的账户。如果您设置了Papal账户,客户就可以通过自动发送的邮件上或OpenERP网上的\"Pay with " +"Paypal\" 按钮 响应您的发票或都报价单。" #. module: account #: code:addons/account/account_move_line.py:536 @@ -3749,13 +3767,16 @@ msgid "" "You can create one in the menu: \n" "Configuration/Journals/Journals." msgstr "" +"无法为该公司找到 %s type 的会计账薄\n" +"您可以通过 菜单 创建一个新账薄:\n" +"Configuration/Journals/Journals." #. module: account #: model:ir.actions.act_window,name:account.action_account_unreconcile #: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile #: model:ir.actions.act_window,name:account.action_account_unreconcile_select msgid "Unreconcile Entries" -msgstr "反核销分录" +msgstr "反对账分录" #. module: account #: field:account.tax.code,notprintable:0 @@ -3813,7 +3834,7 @@ msgstr "所有选择的分录将生效并过账,这意味着您将不能修改 msgid "" "You have not supplied enough arguments to compute the initial balance, " "please select a period and a journal in the context." -msgstr "" +msgstr "您没有提供足够的数据计算期初余额,请选择一个有完整日记账的期间。" #. module: account #: model:ir.actions.report.xml,name:account.account_transfers @@ -3823,7 +3844,7 @@ msgstr "转移" #. module: account #: field:account.config.settings,expects_chart_of_accounts:0 msgid "This company has its own chart of accounts" -msgstr "" +msgstr "该公司有自己的财务报表格式" #. module: account #: view:account.chart:0 @@ -3899,7 +3920,7 @@ msgstr "不能修改已经记账的凭证项,首先设置分类账允许取消 #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal msgid "Print Sale/Purchase Journal" -msgstr "打印 销售/采购 凭证簿" +msgstr "打印 销售/采购 账簿" #. module: account #: view:account.installer:0 @@ -3919,6 +3940,8 @@ msgid "" "There is no fiscal year defined for this date.\n" "Please create one from the configuration of the accounting menu." msgstr "" +"该日期不在会计年度内\n" +"请在菜单 accounting->configuration 创建" #. module: account #: view:account.addtmpl.wizard:0 @@ -3930,7 +3953,7 @@ msgstr "创建科目" #: code:addons/account/wizard/account_fiscalyear_close.py:62 #, python-format msgid "The entries to reconcile should belong to the same company." -msgstr "" +msgstr "对账的条目应该属于同一公司。" #. module: account #: field:account.invoice.tax,tax_amount:0 @@ -3940,7 +3963,7 @@ msgstr "税金额" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "未核销凭证" +msgstr "未对账分录明细" #. module: account #: selection:account.account.type,close_method:0 @@ -3950,7 +3973,7 @@ msgstr "详情" #. module: account #: help:account.config.settings,default_purchase_tax:0 msgid "This purchase tax will be assigned by default on new products." -msgstr "" +msgstr "该项购置税将默认分配到新产品" #. module: account #: report:account.invoice:0 @@ -3987,7 +4010,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process msgid "Reconcilation Process partner by partner" -msgstr "与业务伙伴核销的进程" +msgstr "与业务伙伴对账的进程" #. module: account #: view:account.chart:0 @@ -4045,7 +4068,7 @@ msgstr "过账" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile" -msgstr "反核销" +msgstr "反对账" #. module: account #: view:account.chart.template:0 @@ -4120,7 +4143,7 @@ msgstr "如果没适用的 (计算通过python代码), 税将不显示在发 #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "检查供应商发票的总额" #. module: account #: view:account.tax:0 @@ -4133,7 +4156,7 @@ msgstr "可用代码(如果类型=代码)" msgid "" "When monthly periods are created. The status is 'Draft'. At the end of " "monthly period it is in 'Done' status." -msgstr "" +msgstr "月度周期创建后,周期内状态表示为“Draft\",期末状态转变为“Done\"." #. module: account #: view:account.invoice.report:0 @@ -4174,7 +4197,7 @@ msgstr "付款单" #: help:account.account.template,reconcile:0 msgid "" "Check this option if you want the user to reconcile entries in this account." -msgstr "勾选此项, 如果您想用户在这科目核销分录。" +msgstr "勾选此项, 如果您想用户在这科目对账分录。" #. module: account #: report:account.invoice:0 @@ -4205,7 +4228,7 @@ msgstr "税率" #. module: account #: field:account.config.settings,complete_tax_set:0 msgid "Complete set of taxes" -msgstr "" +msgstr "完全税收套账" #. module: account #: field:account.account,name:0 @@ -4239,7 +4262,7 @@ msgstr "生效日期" #: code:addons/account/wizard/account_fiscalyear_close.py:100 #, python-format msgid "The journal must have default credit and debit account." -msgstr "" +msgstr "日记薄必须设置默认借方和贷方账户" #. module: account #: model:ir.actions.act_window,name:account.action_bank_tree @@ -4256,7 +4279,7 @@ msgstr "伙伴 ID" #: help:account.bank.statement,message_ids:0 #: help:account.invoice,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "消息和通信历史" #. module: account #: help:account.journal,analytic_journal_id:0 @@ -4288,14 +4311,14 @@ msgstr "输入的会计年度,期间,科目表必须属于同一公司" msgid "" "Check this box if you don't want any tax related to this tax Code to appear " "on invoices." -msgstr "" +msgstr "检查该栏数据,如果您不要发票包含相关税则的税金" #. module: account #: code:addons/account/account_move_line.py:1058 #: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." -msgstr "" +msgstr "您不能使用一个非活动状态的账户" #. module: account #: model:ir.actions.act_window,name:account.open_board_account @@ -4326,7 +4349,7 @@ msgstr "合并子科目" #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "数据不足!" #. module: account #: help:account.account,unrealized_gain_loss:0 @@ -4385,7 +4408,7 @@ msgstr "资产" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "" +msgstr "会计 & 财务" #. module: account #: view:account.invoice.confirm:0 @@ -4412,7 +4435,7 @@ msgstr "(如果你想打开它发票要反核销)" #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "发票税的辅助核算科目" #. module: account #: field:account.chart,period_from:0 @@ -4456,7 +4479,7 @@ msgstr "" msgid "" "If you put \"%(year)s\" in the prefix, it will be replaced by the current " "year." -msgstr "" +msgstr "如果您输入“%(year)“作为前缀,那将被当前年份替换" #. module: account #: help:account.account,active:0 @@ -4468,7 +4491,7 @@ msgstr "如果活动字段设置为False,您将可以隐藏它而不在科目 #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "已记账凭证" +msgstr "已记账分录明细" #. module: account #: field:account.move.line,blocked:0 @@ -4491,7 +4514,7 @@ msgid "" "As an example, a decimal precision of 2 will allow journal entries like: " "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." -msgstr "" +msgstr "举个例子,2位小数精度,分录金额如同:0.99元;若为4位小数精度,则分录金额如同:0.0231元。" #. module: account #: field:account.account,shortcut:0 @@ -4588,7 +4611,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "" +msgstr "供应商发票序列" #. module: account #: code:addons/account/account_invoice.py:610 @@ -4619,7 +4642,7 @@ msgstr "科目类型" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "银行和支票" #. module: account #: field:account.account.template,note:0 @@ -4647,7 +4670,7 @@ msgstr "留空使用当前日期" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "关闭合计" #. module: account #: field:account.tax,base_code_id:0 @@ -4701,7 +4724,7 @@ msgstr "检查,如果你想显示平衡科目" #. module: account #: field:account.move.reconcile,opening_reconciliation:0 msgid "Opening Entries Reconciliation" -msgstr "" +msgstr "开放的对账条目" #. module: account #. openerp-web @@ -4778,7 +4801,7 @@ msgstr "把银行对账单输入到系统中。" #: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" -msgstr "补差额时核销" +msgstr "补差额时对账" #. module: account #: view:account.account.template:0 @@ -4815,7 +4838,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "Templates for Taxes" -msgstr "" +msgstr "税费模版" #. module: account #: sql_constraint:account.period:0 @@ -4830,7 +4853,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Tax Computation" -msgstr "" +msgstr "计算税款" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4855,7 +4878,7 @@ msgstr "按模型创建分录" #: field:account.account,reconcile:0 #: field:account.account.template,reconcile:0 msgid "Allow Reconciliation" -msgstr "允许核销" +msgstr "允许对账" #. module: account #: constraint:account.account:0 @@ -4888,7 +4911,7 @@ msgstr "ECNJ" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger_journal_report msgid "Account Analytic Cost Ledger For Journal Report" -msgstr "分析本期成本明细账的报表" +msgstr "分析本期成本明细账的报告" #. module: account #: model:ir.actions.act_window,name:account.action_model_form @@ -4983,7 +5006,7 @@ msgstr "已取消的发票" #. module: account #: view:account.invoice:0 msgid "My Invoices" -msgstr "" +msgstr "我的发票" #. module: account #: selection:account.bank.statement,state:0 @@ -4993,7 +5016,7 @@ msgstr "新建" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Sale Tax" -msgstr "" +msgstr "营业税" #. module: account #: field:account.tax,ref_tax_code_id:0 @@ -5097,7 +5120,7 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Invoiced" -msgstr "已开票" +msgstr "已开发票" #. module: account #: view:account.move:0 @@ -5120,7 +5143,7 @@ msgstr "发票的收款银行帐号。如果是客户发票或供应商红字发 #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 msgid "Partners Reconciled Today" -msgstr "今天的与业务伙伴核销" +msgstr "今天的与业务伙伴对账" #. module: account #: help:account.invoice.tax,tax_code_id:0 @@ -5388,7 +5411,7 @@ msgstr "付款" #. module: account #: field:account.subscription.line,move_id:0 msgid "Entry" -msgstr "凭证" +msgstr "分录" #. module: account #: field:account.tax,python_compute_inv:0 @@ -5416,7 +5439,7 @@ msgstr "这个选项用于确定你是否希望提示用户输入销售和采购 #: field:account.financial.report,children_ids:0 #: model:ir.model,name:account.model_account_financial_report msgid "Account Report" -msgstr "科目报表" +msgstr "科目报告" #. module: account #: field:account.entries.report,year:0 @@ -5464,7 +5487,7 @@ msgstr "月" #: view:account.move.line:0 #: field:account.partner.reconcile.process,next_partner_id:0 msgid "Next Partner to Reconcile" -msgstr "核销下一个业务伙伴" +msgstr "对账下一个业务伙伴" #. module: account #: field:account.invoice.tax,account_id:0 @@ -5494,7 +5517,7 @@ msgstr "检查凭证日期在期间内" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports msgid "Accounting Reports" -msgstr "会计报表" +msgstr "会计报告" #. module: account #: field:account.move,line_id:0 @@ -5535,7 +5558,7 @@ msgstr "销售" #. module: account #: model:ir.model,name:account.model_account_automatic_reconcile msgid "Automatic Reconcile" -msgstr "自动核销" +msgstr "自动对账" #. module: account #: view:account.analytic.line:0 @@ -5703,7 +5726,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_common_account_report msgid "Account Common Account Report" -msgstr "科目合并的科目报表" +msgstr "科目合并的科目报告" #. module: account #: view:account.analytic.account:0 @@ -5748,7 +5771,7 @@ msgstr "税编码" #: selection:account.invoice.report,type:0 #: selection:report.invoice.created,type:0 msgid "Customer Refund" -msgstr "客户红字发票" +msgstr "客户红字传票" #. module: account #: field:account.tax,ref_tax_sign:0 @@ -5790,7 +5813,7 @@ msgid "" "This is the remaining partners for who you should check if there is " "something to reconcile or not. This figure already count the current partner " "as reconciled." -msgstr "这是业务伙伴的余额,您应该检查出那个已核销那个未核销。这数字计算当前业务伙伴要核销部分。" +msgstr "这是业务伙伴的余额,您应该检查出那个已对账那个未对账。这数字计算当前业务伙伴要对账部分。" #. module: account #: view:account.subscription.line:0 @@ -5888,7 +5911,7 @@ msgstr "普通文本" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 msgid "Payment entries are the second input of the reconciliation." -msgstr "核销的第二个输入项是付款分录" +msgstr "对账的第二个输入项是付款分录" #. module: account #: help:res.partner,property_supplier_payment_term:0 @@ -5902,7 +5925,7 @@ msgstr "" msgid "" "Number of partial amounts that can be combined to find a balance point can " "be chosen as the power of the automatic reconciliation" -msgstr "部分金额可以加起来作为找到的平衡点来强制填充自动核销" +msgstr "部分金额可以加起来作为找到的平衡点来强制填充自动对账" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:56 @@ -5951,7 +5974,7 @@ msgstr "自动格式化" #. module: account #: view:account.move.line.reconcile:0 msgid "Reconcile With Write-Off" -msgstr "补差额时核销" +msgstr "补差额时对账" #. module: account #: constraint:account.move.line:0 @@ -5973,7 +5996,7 @@ msgstr "你不能修改税,你需要删去并且重建这一行" #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile msgid "Account Automatic Reconcile" -msgstr "科目自动核销" +msgstr "科目自动对账" #. module: account #: view:account.move:0 @@ -6119,14 +6142,14 @@ msgid "" "From this view, have an analysis of your different financial accounts. The " "document shows your debit and credit taking in consideration some criteria " "you can choose by using the search tool." -msgstr "在这个界面上,你可以对不同的科目做分析。按照您输入的条件出具报表显示这些科目的借贷方发生额。" +msgstr "在这个界面上,你可以对不同的科目做分析。按照您输入的条件出具报告显示这些科目的借贷方发生额。" #. module: account #: help:account.partner.reconcile.process,progress:0 msgid "" "Shows you the progress made today on the reconciliation process. Given by \n" "Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)" -msgstr "显示您今天核销的进度,今天业务伙伴的已核销 / (业务伙伴的余额 + 今天业务伙伴的已核销)" +msgstr "显示您今天对账的进度,今天业务伙伴的已对账 / (业务伙伴的余额 + 今天业务伙伴的已对账)" #. module: account #: field:account.invoice,period_id:0 @@ -6243,7 +6266,7 @@ msgstr "你不能核准这个分类账分录,因为科目 \"%s\" 不属于科 #. module: account #: view:account.financial.report:0 msgid "Report" -msgstr "报表" +msgstr "报告" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template @@ -6253,7 +6276,7 @@ msgstr "税务替换规则的模板" #. module: account #: help:account.tax,name:0 msgid "This name will be displayed on reports" -msgstr "这名称将显示在报表" +msgstr "这名称将显示在报告" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -6272,7 +6295,7 @@ msgstr "无" #: model:ir.actions.act_window,name:account.action_invoice_tree3 #: model:ir.ui.menu,name:account.menu_action_invoice_tree3 msgid "Customer Refunds" -msgstr "客户红字发票" +msgstr "客户红字传票" #. module: account #: field:account.account,foreign_balance:0 @@ -6331,7 +6354,7 @@ msgstr "当保存数据时,系统会自动为此银行账户创建像相应的 #. module: account #: view:account.analytic.line:0 msgid "Analytic Entry" -msgstr "辅助核算记录" +msgstr "辅助核算分录" #. module: account #: view:res.company:0 @@ -6365,7 +6388,7 @@ msgstr "根科目" #. module: account #: field:res.partner,last_reconciliation_date:0 msgid "Latest Reconciliation Date" -msgstr "最近的核销日期" +msgstr "最近的对账日期" #. module: account #: view:account.analytic.line:0 @@ -6496,7 +6519,7 @@ msgstr "会计年度" #. module: account #: view:account.move.reconcile:0 msgid "Partial Reconcile Entries" -msgstr "部分相关的核销分录" +msgstr "部分相关的对账分录" #. module: account #: view:account.aged.trial.balance:0 @@ -6639,7 +6662,7 @@ msgstr "辅助核算明细视图" #: field:account.invoice,internal_number:0 #: field:report.invoice.created,number:0 msgid "Invoice Number" -msgstr "发票号" +msgstr "发票编号" #. module: account #: field:account.bank.statement,difference:0 @@ -6656,7 +6679,7 @@ msgstr "标识在计算上一层税的时候是否把本层已计算出来的税 #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile msgid "Reconciliation: Go to Next Partner" -msgstr "核销:转到下一个业务伙伴" +msgstr "对账:转到下一个业务伙伴" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance @@ -6728,7 +6751,7 @@ msgstr "流动资金" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form #: model:ir.ui.menu,name:account.account_analytic_journal_entries msgid "Analytic Journal Items" -msgstr "辅助核算明细" +msgstr "辅助核算分录明细" #. module: account #: field:account.config.settings,has_default_company:0 @@ -6783,12 +6806,12 @@ msgstr "你不能修改已经存在凭证的公司帐户。" #: selection:report.invoice.created,type:0 #, python-format msgid "Supplier Refund" -msgstr "供应商红字发票" +msgstr "供应商红字传票" #. module: account #: field:account.bank.statement,move_line_ids:0 msgid "Entry lines" -msgstr "明细" +msgstr "分录明细" #. module: account #: field:account.move.line,centralisation:0 @@ -6865,7 +6888,7 @@ msgstr "辅助核算账薄" #. module: account #: view:account.entries.report:0 msgid "Reconciled" -msgstr "已核销" +msgstr "已对账" #. module: account #: constraint:account.payment.term.line:0 @@ -6966,7 +6989,7 @@ msgstr "借方合计" #. module: account #: view:account.move.line:0 msgid "Next Partner Entries to reconcile" -msgstr "要核销的下一个往来凭证" +msgstr "要对账的下一个往来凭证" #. module: account #: report:account.invoice:0 @@ -7041,7 +7064,7 @@ msgstr "错误!" #. module: account #: field:account.financial.report,style_overwrite:0 msgid "Financial Report Style" -msgstr "财务报表样式" +msgstr "财务报告样式" #. module: account #: selection:account.financial.report,sign:0 @@ -7053,7 +7076,7 @@ msgstr "保留余额符号" #: model:ir.actions.report.xml,name:account.account_vat_declaration #: model:ir.ui.menu,name:account.menu_account_vat_declaration msgid "Taxes Report" -msgstr "税务报表" +msgstr "税务报告" #. module: account #: selection:account.journal.period,state:0 @@ -7183,7 +7206,7 @@ msgstr "期初余额" #. module: account #: model:ir.model,name:account.model_account_move_reconcile msgid "Account Reconciliation" -msgstr "科目核销" +msgstr "科目对账" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax @@ -7344,7 +7367,7 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 msgid "A statement with manual entries becomes a draft statement." -msgstr "手工输入的发票是草稿状态" +msgstr "手工输入的传票是草稿状态" #. module: account #: view:account.aged.trial.balance:0 @@ -7356,7 +7379,7 @@ msgid "" "you request an interval of 30 days OpenERP generates an analysis of " "creditors for the past month, past two months, and so on. " msgstr "" -"业务伙伴过期试算表是某个时间段内应收账款的详细的报表。打开这个报表后请输入公司名称、会计期间、分析的时间段(按天)。OpenERP会按期间计算应收账款余额" +"业务伙伴过期试算表是某个时间段内应收账款的详细的报告。打开这个报告后请输入公司名称、会计期间、分析的时间段(按天)。OpenERP会按期间计算应收账款余额" "。如果你输入了30天,OpenERP生成业务伙伴前一个月,再前一个月的金额。 " #. module: account @@ -7382,7 +7405,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_accounting_report msgid "Accounting Report" -msgstr "会计报表" +msgstr "会计报告" #. module: account #: field:account.analytic.line,currency_id:0 @@ -7410,7 +7433,7 @@ msgstr "税类型的百分率,请输入0 - 1之间的值" #. module: account #: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy msgid "Financial Reports Hierarchy" -msgstr "会计报表树" +msgstr "会计报告树" #. module: account #: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation @@ -7437,7 +7460,7 @@ msgstr "税模板" #. module: account #: view:account.journal.select:0 msgid "Are you sure you want to open Journal Entries?" -msgstr "你确定要显示这个凭证簿的会计凭证么?" +msgstr "你确定要显示这个账簿的会计凭证么?" #. module: account #: view:account.state.open:0 @@ -7519,7 +7542,7 @@ msgstr "客户欠款金额合计" #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "未平财务凭证" +msgstr "未平分录明细" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules @@ -7616,7 +7639,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports msgid "Reporting" -msgstr "报表" +msgstr "报告" #. module: account #. openerp-web @@ -7664,7 +7687,7 @@ msgid "" "This field shows you the next partner that will be automatically chosen by " "the system to go through the reconciliation process, based on the latest day " "it have been reconciled." -msgstr "这字段显示被系统自动挑选要去进行核销处理的下一个业务伙伴,因为他最近进行过核销。" +msgstr "这字段显示被系统自动挑选要去进行对账处理的下一个业务伙伴,因为他最近进行过对账。" #. module: account #: field:account.move.line.reconcile.writeoff,comment:0 @@ -7700,12 +7723,12 @@ msgstr "发票明细" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "客户和供应商红字发票" +msgstr "客户和供应商红字传票" #. module: account #: field:account.financial.report,sign:0 msgid "Sign on Reports" -msgstr "报表上的符号" +msgstr "报告上的符号" #. module: account #: model:ir.actions.act_window,help:account.action_account_analytic_account_tree2 @@ -7743,7 +7766,7 @@ msgstr "OPEJ" #: report:account.invoice:0 #: view:account.invoice:0 msgid "PRO-FORMA" -msgstr "形式发票" +msgstr "形式传票" #. module: account #: selection:account.entries.report,move_line_state:0 @@ -7821,7 +7844,7 @@ msgstr "没会计期间!" #: view:account.financial.report:0 #: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy msgid "Account Reports Hierarchy" -msgstr "会计报表树" +msgstr "会计报告树" #. module: account #: help:account.account.template,chart_template_id:0 @@ -7863,7 +7886,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile msgid "Manual Reconciliation" -msgstr "手动核销" +msgstr "手动对账" #. module: account #: report:account.overdue:0 @@ -7898,7 +7921,7 @@ msgstr "取消选择的发票" #: help:account.account.type,report_type:0 msgid "" "This field is used to generate legal reports: profit and loss, balance sheet." -msgstr "这个字段用于生成法定的会计报表:损益表 和 资产负债表" +msgstr "这个字段用于生成法定的会计报告:损益表 和 资产负债表" #. module: account #: selection:account.entries.report,month:0 @@ -7959,7 +7982,7 @@ msgstr "客户" #. module: account #: field:account.financial.report,name:0 msgid "Report Name" -msgstr "报表名称" +msgstr "报告名称" #. module: account #: model:account.account.type,name:account.data_account_type_cash @@ -8006,12 +8029,12 @@ msgstr "" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "会计凭证编号" +msgstr "账簿分录编号" #. module: account #: view:account.financial.report:0 msgid "Parent Report" -msgstr "上级报表" +msgstr "上级报告" #. module: account #: constraint:account.account:0 @@ -8029,7 +8052,7 @@ msgstr "" #. module: account #: help:account.invoice,move_id:0 msgid "Link to the automatically generated Journal Items." -msgstr "链接到自动生成的会计凭证行" +msgstr "链接到自动生成的分录明细" #. module: account #: model:ir.model,name:account.model_account_config_settings @@ -8082,12 +8105,12 @@ msgstr "月天数设为 -1 是当月的最后一天。如果为正数 为下月 #. module: account #: view:account.move.line.reconcile:0 msgid "Reconciliation Transactions" -msgstr "核销交易" +msgstr "对账交易" #. module: account #: model:ir.ui.menu,name:account.menu_finance_legal_statement msgid "Legal Reports" -msgstr "正式报表" +msgstr "正式报告" #. module: account #: field:account.tax.code,sum_period:0 @@ -8155,7 +8178,7 @@ msgstr "凭证明细的状态" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile msgid "Account move line reconcile" -msgstr "核销凭证明细" +msgstr "对账凭证明细" #. module: account #: view:account.subscription.generate:0 @@ -8166,7 +8189,7 @@ msgstr "生成周期性凭证" #. module: account #: view:account.move.line.unreconcile.select:0 msgid "Open for Unreconciliation" -msgstr "打开反核销" +msgstr "打开反对账" #. module: account #: field:account.bank.statement.line,partner_id:0 @@ -8207,7 +8230,7 @@ msgstr "没有发票明细" #. module: account #: view:account.financial.report:0 msgid "Report Type" -msgstr "报表类型" +msgstr "报告类型" #. module: account #: help:account.open.closed.fiscalyear,fyear_id:0 @@ -8251,7 +8274,7 @@ msgstr "自动录入" #: help:account.account,reconcile:0 msgid "" "Check this box if this account allows reconciliation of journal items." -msgstr "如果此会计科目需要核销,勾选这里" +msgstr "如果此会计科目需要对账,勾选这里" #. module: account #: report:account.analytic.account.inverted.balance:0 @@ -8358,7 +8381,7 @@ msgstr "如果在计算未来的税前这税额必须包含在税基金额里, #: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" -msgstr "采购红字发票账簿" +msgstr "采购红字传票账簿" #. module: account #: code:addons/account/account.py:1333 @@ -8523,7 +8546,7 @@ msgstr "付款" #. module: account #: view:account.automatic.reconcile:0 msgid "Reconciliation Result" -msgstr "核销结果" +msgstr "对账结果" #. module: account #: field:account.bank.statement,balance_end_real:0 @@ -8547,7 +8570,7 @@ msgstr "您可以勾选此,标记账簿的明细正与相关业务伙伴在争 #: field:account.move.line,reconcile_partial_id:0 #: view:account.move.line.reconcile:0 msgid "Partial Reconcile" -msgstr "部分核销" +msgstr "部分对账" #. module: account #: model:ir.model,name:account.model_account_analytic_inverted_balance @@ -8557,7 +8580,7 @@ msgstr "辅助核算反向余额" #. module: account #: model:ir.model,name:account.model_account_common_report msgid "Account Common Report" -msgstr "通用报表" +msgstr "通用报告" #. module: account #: view:account.invoice.refund:0 @@ -8584,12 +8607,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_move_bank_reconcile msgid "Move bank reconcile" -msgstr "核销银行凭证" +msgstr "对账银行凭证" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "应用" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -8628,7 +8651,7 @@ msgstr "P&L / BS分类" #: model:process.node,name:account.process_node_supplierreconciliation0 #, python-format msgid "Reconciliation" -msgstr "核销" +msgstr "对账" #. module: account #: view:account.tax.template:0 @@ -8675,7 +8698,7 @@ msgstr "关闭一个会计年度" #. module: account #: field:account.invoice.refund,journal_id:0 msgid "Refund Journal" -msgstr "红字发票账簿" +msgstr "红字传票账簿" #. module: account #: report:account.account.balance:0 @@ -8743,7 +8766,7 @@ msgstr "打印税单" #. module: account #: view:account.model.line:0 msgid "Journal Entry Model Line" -msgstr "账簿模型明细" +msgstr "账簿分录模型明细" #. module: account #: view:account.invoice:0 @@ -8897,7 +8920,7 @@ msgstr "账簿名称" #: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" -msgstr "凭证\"%s\"无效!" +msgstr "分录\"%s\"无效!" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -8914,7 +8937,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_account_invoice msgid "Invoicing & Payments" -msgstr "发票与付款" +msgstr "传票与付款" #. module: account #: help:account.invoice,internal_number:0 @@ -9000,7 +9023,7 @@ msgstr "会计使该发票的分录生效" #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open msgid "Reconciled entries" -msgstr "核销分录" +msgstr "对账分录" #. module: account #: code:addons/account/account.py:2334 @@ -9042,8 +9065,8 @@ msgid "" "accounts that are typically more credited than debited and that you would " "like to print as positive amounts in your reports; e.g.: Income account." msgstr "" -"对于贷方发生额大于借方发生额的会计科目,你希望在打印报表时显示余额的绝对值,你可以对科目的余额取反;例如:收入科目。对于借方发生额大于贷方发生额的会计科目" -",你希望在打印报表时显示余额的绝对值,你可以对科目的余额取反;例如:费用科目。" +"对于贷方发生额大于借方发生额的会计科目,你希望在打印报告时显示余额的绝对值,你可以对科目的余额取反;例如:收入科目。对于借方发生额大于贷方发生额的会计科目" +",你希望在打印报告时显示余额的绝对值,你可以对科目的余额取反;例如:费用科目。" #. module: account #: field:res.partner,contract_ids:0 @@ -9131,7 +9154,7 @@ msgstr "余额" #: field:account.invoice,move_lines:0 #: field:account.move.reconcile,line_id:0 msgid "Entry Lines" -msgstr "凭证明细" +msgstr "分录明细" #. module: account #: model:ir.actions.act_window,name:account.action_open_journal_button @@ -9159,7 +9182,7 @@ msgstr "" #: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" -msgstr "销售红字发票账簿" +msgstr "销售红字传票账簿" #. module: account #: view:account.move:0 @@ -9286,7 +9309,7 @@ msgstr "结束会计期间" #: model:ir.actions.act_window,name:account.action_account_report #: model:ir.ui.menu,name:account.menu_account_reports msgid "Financial Reports" -msgstr "会计报表" +msgstr "会计报告" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 @@ -9359,7 +9382,7 @@ msgstr "周期次数" #. module: account #: report:account.overdue:0 msgid "Document: Customer account statement" -msgstr "文档:客户科目报表" +msgstr "文档:客户科目报告" #. module: account #: view:account.account.template:0 @@ -9465,7 +9488,7 @@ msgstr "图表" #. module: account #: model:process.transition,note:account.process_transition_entriesreconcile0 msgid "Accounting entries are the first input of the reconciliation." -msgstr "核销的第一个输入是会计分录。" +msgstr "对账的第一个输入是会计分录。" #. module: account #: view:account.fiscalyear.close:0 @@ -9582,7 +9605,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu msgid "Common Report" -msgstr "合并报表" +msgstr "合并报告" #. module: account #: field:account.config.settings,default_sale_tax:0 @@ -9604,7 +9627,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "周期性处理" #. module: account #: view:account.invoice.report:0 @@ -9625,7 +9648,7 @@ msgstr "付款分录" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "July" -msgstr "7" +msgstr "7月" #. module: account #: view:account.account:0 @@ -9635,12 +9658,12 @@ msgstr "科目一览表" #. module: account #: field:account.subscription.line,subscription_id:0 msgid "Subscription" -msgstr "周期性" +msgstr "订阅" #. module: account #: model:ir.model,name:account.model_account_analytic_balance msgid "Account Analytic Balance" -msgstr "辅助核算余额" +msgstr "辅助核算平衡" #. module: account #: report:account.account.balance:0 @@ -9668,7 +9691,7 @@ msgstr "辅助核算余额" #: field:accounting.report,period_to:0 #: field:accounting.report,period_to_cmp:0 msgid "End Period" -msgstr "结束会计期间" +msgstr "结束期间" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 @@ -9678,7 +9701,7 @@ msgstr "" #. module: account #: field:account.move.line,date_maturity:0 msgid "Due date" -msgstr "到期日期" +msgstr "到期" #. module: account #: model:account.payment.term,name:account.account_payment_term_immediate @@ -9708,17 +9731,17 @@ msgstr "" #: view:account.subscription:0 #: model:ir.model,name:account.model_account_subscription msgid "Account Subscription" -msgstr "周期性凭证科目" +msgstr "科目订阅" #. module: account #: report:account.overdue:0 msgid "Maturity date" -msgstr "付款到期日" +msgstr "成熟日期" #. module: account #: view:account.subscription:0 msgid "Entry Subscription" -msgstr "周期性凭证" +msgstr "分录订阅" #. module: account #: report:account.account.balance:0 @@ -9775,7 +9798,7 @@ msgstr "" #: view:account.entries.report:0 #: view:account.move.line:0 msgid "Unreconciled" -msgstr "反核销" +msgstr "反对账" #. module: account #: code:addons/account/account_invoice.py:922 @@ -9857,7 +9880,7 @@ msgstr "代码/日期" #: model:ir.model,name:account.model_account_move_line #: model:ir.ui.menu,name:account.menu_action_account_moves_all msgid "Journal Items" -msgstr "会计凭证明细" +msgstr "分录明细" #. module: account #: view:accounting.report:0 @@ -9898,19 +9921,19 @@ msgstr "这科目将替换当前业务伙伴的默认支付科目" #. module: account #: field:account.period,special:0 msgid "Opening/Closing Period" -msgstr "打开/关闭会计期间" +msgstr "开始/结束期间" #. module: account #: field:account.account,currency_id:0 #: field:account.account.template,currency_id:0 #: field:account.bank.accounts.wizard,currency_id:0 msgid "Secondary Currency" -msgstr "外币" +msgstr "第二货币" #. module: account #: model:ir.model,name:account.model_validate_account_move msgid "Validate Account Move" -msgstr "使凭证生效" +msgstr "验证科目分录" #. module: account #: field:account.account,credit:0 @@ -9976,7 +9999,7 @@ msgstr "一般" #: field:account.invoice.report,price_total:0 #: field:account.invoice.report,user_currency_price_total:0 msgid "Total Without Tax" -msgstr "不含税总金额" +msgstr "总金额(不含税)" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -10045,7 +10068,7 @@ msgstr "" #. module: account #: view:account.move.line.reconcile.select:0 msgid "Open for Reconciliation" -msgstr "打开核销" +msgstr "打开对账" #. module: account #: field:account.account,parent_left:0 @@ -10313,7 +10336,7 @@ msgstr "到期日" #: field:cash.box.in,name:0 #: field:cash.box.out,name:0 msgid "Reason" -msgstr "" +msgstr "原因" #. module: account #: selection:account.partner.ledger,filter:0 @@ -10321,7 +10344,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled #, python-format msgid "Unreconciled Entries" -msgstr "未核销分录" +msgstr "未对账分录" #. module: account #: help:account.partner.reconcile.process,today_reconciled:0 @@ -10329,7 +10352,7 @@ msgid "" "This figure depicts the total number of partners that have gone throught the " "reconciliation process today. The current partner is counted as already " "processed." -msgstr "这数字描述了该业务伙伴到今天为止进行的核销处理的总数,当前业务伙伴算是已处理完。" +msgstr "这数字描述了该业务伙伴到今天为止进行的对账处理的总数,当前业务伙伴算是已处理完。" #. module: account #: view:account.fiscalyear:0 @@ -10373,12 +10396,12 @@ msgstr "" #: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" -msgstr "" +msgstr "不能更改税" #. module: account #: constraint:account.bank.statement:0 msgid "The journal and period chosen have to belong to the same company." -msgstr "所选的凭证簿和期间必须属于相同公司。" +msgstr "所选的账簿和期间必须属于相同公司。" #. module: account #: view:account.invoice:0 @@ -10427,7 +10450,7 @@ msgstr "管理客户付款 催款" #. module: account #: model:ir.model,name:account.model_report_account_sales msgid "Report of the Sales by Account" -msgstr "销售科目的报表" +msgstr "销售科目的报告" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account @@ -10489,7 +10512,7 @@ msgstr "凭证行中可选的数量" #. module: account #: field:account.automatic.reconcile,reconciled:0 msgid "Reconciled transactions" -msgstr "已核销处理" +msgstr "已对账处理" #. module: account #: model:ir.model,name:account.model_report_account_receivable @@ -10515,7 +10538,7 @@ msgstr "范围" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "与采购凭证簿相关的成本凭证" +msgstr "与采购账簿相关的分析分录明细" #. module: account #: help:account.account,type:0 @@ -10560,7 +10583,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "December" -msgstr "12" +msgstr "12月" #. module: account #: view:account.invoice.report:0 @@ -10577,7 +10600,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_aged_receivable_graph #: view:report.aged.receivable:0 msgid "Aged Receivable" -msgstr "旧的应收款" +msgstr "到期的应收款项" #. module: account #: field:account.tax,applicable_type:0 @@ -10598,7 +10621,7 @@ msgstr "为表单导入供应商或客户发票" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing msgid "Billing" -msgstr "开单" +msgstr "计费" #. module: account #: view:account.account:0 @@ -10624,7 +10647,7 @@ msgstr "剩余的欠款" #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "排序依据:" +msgstr "分录排序 按" #. module: account #: code:addons/account/account_invoice.py:1546 @@ -10638,7 +10661,7 @@ msgstr "" #: view:account.fiscal.position:0 #: view:account.fiscal.position.template:0 msgid "Accounts Mapping" -msgstr "科目一览" +msgstr "科目映射" #. module: account #: model:ir.actions.act_window,help:account.action_tax_code_list @@ -10664,7 +10687,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "November" -msgstr "11" +msgstr "11月" #. module: account #: model:ir.actions.act_window,help:account.action_account_moves_all_a @@ -10697,7 +10720,7 @@ msgstr "" #: report:account.general.journal:0 #: model:ir.actions.report.xml,name:account.account_general_journal msgid "General Journal" -msgstr "总账账簿" +msgstr "普通账簿" #. module: account #: view:account.invoice:0 @@ -10711,7 +10734,7 @@ msgstr "搜索发票" #: code:addons/account/account_invoice.py:1159 #, python-format msgid "Refund" -msgstr "红字发票" +msgstr "退款" #. module: account #: model:ir.model,name:account.model_res_partner_bank @@ -10732,7 +10755,7 @@ msgstr "普通信息" #: view:account.move:0 #: view:account.move.line:0 msgid "Accounting Documents" -msgstr "会计凭证" +msgstr "会计档案" #. module: account #: code:addons/account/account.py:641 @@ -10767,7 +10790,7 @@ msgstr "一旦核销完成,这发票可能已被支付。" #: code:addons/account/wizard/account_change_currency.py:59 #, python-format msgid "New currency is not configured properly." -msgstr "" +msgstr "新货币没有正确设置" #. module: account #: view:account.account.template:0 @@ -10796,7 +10819,7 @@ msgstr "上级右" #: code:addons/account/static/src/js/account_move_reconciliation.js:80 #, python-format msgid "Never" -msgstr "" +msgstr "从不" #. module: account #: model:ir.model,name:account.model_account_addtmpl_wizard @@ -10817,7 +10840,7 @@ msgstr "业务伙伴" #. module: account #: field:account.account,note:0 msgid "Internal Notes" -msgstr "" +msgstr "内部备注" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear @@ -10848,7 +10871,7 @@ msgstr "科目模型" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Loss" -msgstr "" +msgstr "损失" #. module: account #: selection:account.entries.report,month:0 @@ -10857,13 +10880,13 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "February" -msgstr "2" +msgstr "2月" #. module: account #: view:account.bank.statement:0 #: help:account.cashbox.line,number_closing:0 msgid "Closing Unit Numbers" -msgstr "" +msgstr "关闭单元数" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -10883,17 +10906,17 @@ msgstr "汇总账簿" #. module: account #: report:account.overdue:0 msgid "Maturity" -msgstr "到期日期" +msgstr "成熟" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 msgid "Future" -msgstr "前景" +msgstr "将来" #. module: account #: view:account.move.line:0 msgid "Search Journal Items" -msgstr "搜索会计凭证明细" +msgstr "搜索分录明细" #. module: account #: help:account.tax,base_sign:0 @@ -10910,7 +10933,7 @@ msgstr "通常用 1或-1" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account_template msgid "Template Account Fiscal Mapping" -msgstr "科目一览模版" +msgstr "科目模版财政映射" #. module: account #: field:account.chart.template,property_account_expense:0 @@ -10920,19 +10943,19 @@ msgstr "产品模板的费用科目" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "客户付款条款" #. module: account #: help:accounting.report,label_filter:0 msgid "" "This label will be displayed on report to show the balance computed for the " "given comparison filter." -msgstr "这个标签将放在报表上用来显示根据比较过滤条件计算出来的余额" +msgstr "这个标签将放在报告上用来显示根据比较过滤条件计算出来的余额" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round per line" -msgstr "" +msgstr "按行舍入" #. module: account #: help:account.move.line,amount_residual_currency:0 diff --git a/addons/account/i18n/zh_HK.po b/addons/account/i18n/zh_HK.po index 3cc2f792bc4..66d49e79eeb 100644 --- a/addons/account/i18n/zh_HK.po +++ b/addons/account/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:01+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po index 55362cf55a0..91ef9273989 100644 --- a/addons/account/i18n/zh_TW.po +++ b/addons/account/i18n/zh_TW.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-08-21 06:06+0000\n" -"Last-Translator: Boyce Huang \n" +"PO-Revision-Date: 2013-12-01 17:16+0000\n" +"Last-Translator: Andy Cheng \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-09-12 05:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -32,12 +32,12 @@ msgstr "在相同會計科目中,只能設定一次科目財務狀況。" msgid "" "Determine the display order in the report 'Accounting \\ Reporting \\ " "Generic Reporting \\ Taxes \\ Taxes Report'" -msgstr "確定以下報表的顯示順序:」會計-報表-通用報表-稅-稅報表「" +msgstr "確定以下報表的顯示順序:「會計 \\ 報表 \\ 通用報表 \\ 稅 \\ 稅報表」" #. module: account #: view:account.move.reconcile:0 msgid "Journal Entry Reconcile" -msgstr "日記帳分錄調節" +msgstr "帳簿分錄調節" #. module: account #: view:account.account:0 @@ -12728,3 +12728,6 @@ msgstr "基於當前幣別的應收或應付帳款的餘額" #~ msgid "Analytic Entries during last 7 days" #~ msgstr "最近7天內的輔助核算分錄" + +#~ msgid "Cancel Invoice" +#~ msgstr "取消發票" diff --git a/addons/account/partner.py b/addons/account/partner.py index d0db2ed4f6c..f24ffcf55b4 100644 --- a/addons/account/partner.py +++ b/addons/account/partner.py @@ -107,14 +107,15 @@ class res_partner(osv.osv): _description = 'Partner' def _credit_debit_get(self, cr, uid, ids, field_names, arg, context=None): - query = self.pool.get('account.move.line')._query_get(cr, uid, context=context) + ctx = context.copy() + ctx['all_fiscalyear'] = True + query = self.pool.get('account.move.line')._query_get(cr, uid, context=ctx) cr.execute("""SELECT l.partner_id, a.type, SUM(l.debit-l.credit) FROM account_move_line l LEFT JOIN account_account a ON (l.account_id=a.id) WHERE a.type IN ('receivable','payable') AND l.partner_id IN %s - AND (l.reconcile_id IS NULL OR - reconcile_id in (SELECT id FROM account_move_reconcile WHERE opening_reconciliation is TRUE)) + AND l.reconcile_id IS NULL AND """ + query + """ GROUP BY l.partner_id, a.type """, diff --git a/addons/account/product_view.xml b/addons/account/product_view.xml index 2c540cb6ee6..73b31bbb02a 100644 --- a/addons/account/product_view.xml +++ b/addons/account/product_view.xml @@ -11,12 +11,16 @@ - - + + - - + + @@ -31,12 +35,16 @@ - - - - - - + + + + + + + + + + diff --git a/addons/account/project/project_demo.xml b/addons/account/project/project_demo.xml index dcb894bc940..5ce34521b45 100644 --- a/addons/account/project/project_demo.xml +++ b/addons/account/project/project_demo.xml @@ -6,11 +6,6 @@ Sales sale
- - PUR - Purchases - purchase - START Miscellaneous Operation diff --git a/addons/account/report/account_analytic_entries_report.py b/addons/account/report/account_analytic_entries_report.py index f7d1177e3b0..1cd0f4c9026 100644 --- a/addons/account/report/account_analytic_entries_report.py +++ b/addons/account/report/account_analytic_entries_report.py @@ -28,11 +28,6 @@ class analytic_entries_report(osv.osv): _auto = False _columns = { 'date': fields.date('Date', readonly=True), - 'year': fields.char('Year', size=4, readonly=True), - 'day': fields.char('Day', size=128, readonly=True), - 'month':fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'), - ('05','May'), ('06','June'), ('07','July'), ('08','August'), ('09','September'), - ('10','October'), ('11','November'), ('12','December')], 'Month',readonly=True), 'user_id': fields.many2one('res.users', 'User',readonly=True), 'name': fields.char('Description', size=64, readonly=True), 'partner_id': fields.many2one('res.partner', 'Partner'), @@ -56,9 +51,6 @@ class analytic_entries_report(osv.osv): min(a.id) as id, count(distinct a.id) as nbr, a.date as date, - to_char(a.date, 'YYYY') as year, - to_char(a.date, 'MM') as month, - to_char(a.date, 'YYYY-MM-DD') as day, a.user_id as user_id, a.name as name, analytic.partner_id as partner_id, diff --git a/addons/account/report/account_analytic_entries_report_view.xml b/addons/account/report/account_analytic_entries_report_view.xml index 8a421e3cb36..1d2e87be339 100644 --- a/addons/account/report/account_analytic_entries_report_view.xml +++ b/addons/account/report/account_analytic_entries_report_view.xml @@ -1,38 +1,11 @@ - - analytic.entries.report.tree - analytic.entries.report - - - - - - - - - - - - - - - - - - - - - - - analytic.entries.report.search analytic.entries.report - @@ -47,9 +20,9 @@ - - - + + +
@@ -58,10 +31,11 @@ account.analytic.entries.graph analytic.entries.report - - - - + + + + +
@@ -69,7 +43,7 @@ Analytic Entries Analysis analytic.entries.report form - tree,graph + graph {'search_default_year':1,'search_default_month':1, 'group_by_no_leaf':1, 'search_default_Account':1, 'search_default_Month':1, 'group_by':[]} From this view, have an analysis of your different analytic entries following the analytic account you defined matching your business need. Use the tool search to analyse information about analytic entries generated in the system. diff --git a/addons/account/report/account_balance.rml b/addons/account/report/account_balance.rml index 6ddfc238bff..08c05c65fa8 100644 --- a/addons/account/report/account_balance.rml +++ b/addons/account/report/account_balance.rml @@ -170,6 +170,7 @@ + diff --git a/addons/account/report/account_entries_report_view.xml b/addons/account/report/account_entries_report_view.xml index 66959051ea4..2d1af681062 100644 --- a/addons/account/report/account_entries_report_view.xml +++ b/addons/account/report/account_entries_report_view.xml @@ -38,8 +38,8 @@ account.entries.report.graph account.entries.report - - + + @@ -103,9 +103,9 @@ Entries Analysis account.entries.report form - tree,graph + graph - + {'group_by':[], 'search_default_usertype':1, 'search_default_thisyear':1, 'group_by_no_leaf':1} From this view, have an analysis of your different financial accounts. The document shows your debit and credit taking in consideration some criteria you can choose by using the search tool. diff --git a/addons/account/report/account_invoice_report.py b/addons/account/report/account_invoice_report.py index d8dc45f9a3b..8fecf85ee0b 100644 --- a/addons/account/report/account_invoice_report.py +++ b/addons/account/report/account_invoice_report.py @@ -55,11 +55,6 @@ class account_invoice_report(osv.osv): _columns = { 'date': fields.date('Date', readonly=True), - 'year': fields.char('Year', size=4, readonly=True), - 'day': fields.char('Day', size=128, readonly=True), - 'month': fields.selection([('01','January'), ('02','February'), ('03','March'), ('04','April'), - ('05','May'), ('06','June'), ('07','July'), ('08','August'), ('09','September'), - ('10','October'), ('11','November'), ('12','December')], 'Month', readonly=True), 'product_id': fields.many2one('product.product', 'Product', readonly=True), 'product_qty':fields.float('Qty', readonly=True), 'uom_name': fields.char('Reference Unit of Measure', size=128, readonly=True), @@ -105,7 +100,7 @@ class account_invoice_report(osv.osv): def _select(self): select_str = """ - SELECT sub.id, sub.date, sub.year, sub.month, sub.day, sub.product_id, sub.partner_id, sub.country_id, + SELECT sub.id, sub.date, sub.product_id, sub.partner_id, sub.country_id, sub.payment_term, sub.period_id, sub.uom_name, sub.currency_id, sub.journal_id, sub.fiscal_position, sub.user_id, sub.company_id, sub.nbr, sub.type, sub.state, sub.categ_id, sub.date_due, sub.account_id, sub.account_line_id, sub.partner_bank_id, @@ -118,9 +113,6 @@ class account_invoice_report(osv.osv): select_str = """ SELECT min(ail.id) AS id, ai.date_invoice AS date, - to_char(ai.date_invoice::timestamp with time zone, 'YYYY'::text) AS year, - to_char(ai.date_invoice::timestamp with time zone, 'MM'::text) AS month, - to_char(ai.date_invoice::timestamp with time zone, 'YYYY-MM-DD'::text) AS day, ail.product_id, ai.partner_id, ai.payment_term, ai.period_id, CASE WHEN u.uom_type::text <> 'reference'::text @@ -192,9 +184,6 @@ class account_invoice_report(osv.osv): def _group_by(self): group_by_str = """ GROUP BY ail.product_id, ai.date_invoice, ai.id, - to_char(ai.date_invoice::timestamp with time zone, 'YYYY'::text), - to_char(ai.date_invoice::timestamp with time zone, 'MM'::text), - to_char(ai.date_invoice::timestamp with time zone, 'YYYY-MM-DD'::text), ai.partner_id, ai.payment_term, ai.period_id, u.name, ai.currency_id, ai.journal_id, ai.fiscal_position, ai.user_id, ai.company_id, ai.type, ai.state, pt.categ_id, ai.date_due, ai.account_id, ail.account_id, ai.partner_bank_id, ai.residual, diff --git a/addons/account/report/account_invoice_report_view.xml b/addons/account/report/account_invoice_report_view.xml index 47ce75b4d61..24723d7fb12 100644 --- a/addons/account/report/account_invoice_report_view.xml +++ b/addons/account/report/account_invoice_report_view.xml @@ -1,47 +1,16 @@ - - account.invoice.report.tree - account.invoice.report - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - account.invoice.report.graph account.invoice.report - - - + + + + + + @@ -72,7 +41,7 @@ - + @@ -80,9 +49,9 @@ - - - + + + @@ -92,8 +61,8 @@ Invoices Analysis account.invoice.report form - tree,graph - {'search_default_period':1,'search_default_current':1, 'search_default_year': 1, 'search_default_category_product':1, 'search_default_customer':1, 'group_by':[], 'group_by_no_leaf':1,} + graph + {'search_default_current':1, 'search_default_year': 1, 'search_default_customer':1, 'group_by':[], 'group_by_no_leaf':1,} From this report, you can have an overview of the amount invoiced to your customer. The tool search can also be used to personalise your Invoices reports and so, match this analysis to your needs. diff --git a/addons/account/report/account_print_invoice.rml b/addons/account/report/account_print_invoice.rml index 3582221df44..6914adfaf20 100644 --- a/addons/account/report/account_print_invoice.rml +++ b/addons/account/report/account_print_invoice.rml @@ -295,7 +295,7 @@ - Total: + Total: [[ formatLang(o.amount_total, digits=get_digits(dp='Account'), currency_obj=o.currency_id) ]] diff --git a/addons/account/report/account_treasury_report_view.xml b/addons/account/report/account_treasury_report_view.xml index be6ae0dfdc9..f1c84849831 100644 --- a/addons/account/report/account_treasury_report_view.xml +++ b/addons/account/report/account_treasury_report_view.xml @@ -22,9 +22,11 @@ account.treasury.report.graph account.treasury.report - - - + + + + + @@ -43,9 +45,9 @@ Treasury Analysis account.treasury.report form - tree,graph + graph - + {'group_by':[], 'group_by_no_leaf':0} From this view, have an analysis of your treasury. It sums the balance of every accounting entries made on liquidity accounts per period. diff --git a/addons/account/res_config.py b/addons/account/res_config.py index 09df82e38fd..8980a31927e 100644 --- a/addons/account/res_config.py +++ b/addons/account/res_config.py @@ -22,13 +22,12 @@ import time import datetime from dateutil.relativedelta import relativedelta -from operator import itemgetter -from os.path import join as opj +import openerp +from openerp import SUPERUSER_ID from openerp.tools import DEFAULT_SERVER_DATE_FORMAT as DF from openerp.tools.translate import _ from openerp.osv import fields, osv -from openerp import tools class account_config_settings(osv.osv_memory): _name = 'account.config.settings' @@ -106,6 +105,9 @@ class account_config_settings(osv.osv_memory): 'module_account_followup': fields.boolean('Manage customer payment follow-ups', help='This allows to automate letters for unpaid invoices, with multi-level recalls.\n' '-This installs the module account_followup.'), + 'module_product_email_template': fields.boolean('Send products tools and information at the invoice confirmation', + help='With this module, link your products to a template to send complete information and tools to your customer.\n' + 'For instance when invoicing a training, the training agenda and materials will automatically be send to your customers.'), '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."), @@ -276,11 +278,13 @@ class account_config_settings(osv.osv_memory): def set_default_taxes(self, cr, uid, ids, context=None): """ set default sale and purchase taxes for products """ + if uid != SUPERUSER_ID and not self.pool['res.users'].has_group(cr, uid, 'base.group_erp_manager'): + raise openerp.exceptions.AccessError(_("Only administrators can change the settings")) ir_values = self.pool.get('ir.values') config = self.browse(cr, uid, ids[0], context) - ir_values.set_default(cr, uid, 'product.product', 'taxes_id', + ir_values.set_default(cr, SUPERUSER_ID, 'product.product', 'taxes_id', config.default_sale_tax and [config.default_sale_tax.id] or False, company_id=config.company_id.id) - ir_values.set_default(cr, uid, 'product.product', 'supplier_taxes_id', + ir_values.set_default(cr, SUPERUSER_ID, 'product.product', 'supplier_taxes_id', config.default_purchase_tax and [config.default_purchase_tax.id] or False, company_id=config.company_id.id) def set_chart_of_accounts(self, cr, uid, ids, context=None): diff --git a/addons/account/res_config_view.xml b/addons/account/res_config_view.xml index ce8b41fc2da..8a5b1978ecb 100644 --- a/addons/account/res_config_view.xml +++ b/addons/account/res_config_view.xml @@ -183,6 +183,10 @@