diff --git a/addons/account/__openerp__.py b/addons/account/__openerp__.py index 7229f1d3364..6b145f6e974 100644 --- a/addons/account/__openerp__.py +++ b/addons/account/__openerp__.py @@ -131,6 +131,8 @@ module named account_voucher. 'test/account_use_model.yml', 'test/account_validate_account_move.yml', 'test/account_fiscalyear_close.yml', + 'test/account_bank_statement.yml', + 'test/account_cash_statement.yml', 'test/account_report.yml', ], 'installable': True, diff --git a/addons/account/account.py b/addons/account/account.py index 8ef5004df04..5d48f122a1d 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -1105,7 +1105,7 @@ class account_move(osv.osv): help='All manually created new journal entry are usually in the state \'Unposted\', but you can set the option to skip that state on the related journal. In that case, they will be behave as journal entries automatically created by the system on document validation (invoices, bank statements...) and will be created in \'Posted\' state.'), 'line_id': fields.one2many('account.move.line', 'move_id', 'Entries', states={'posted':[('readonly',True)]}), 'to_check': fields.boolean('To Review', help='Check this box if you are unsure of that journal entry and if you want to note it as \'to be reviewed\' by an accounting expert.'), - 'partner_id': fields.related('line_id', 'partner_id', type="many2one", relation="res.partner", string="Partner"), + 'partner_id': fields.related('line_id', 'partner_id', type="many2one", relation="res.partner", string="Partner", store=True), 'amount': fields.function(_amount_compute, method=True, string='Amount', digits_compute=dp.get_precision('Account'), type='float', fnct_search=_search_amount), 'date': fields.date('Date', required=True, states={'posted':[('readonly',True)]}), 'narration':fields.text('Narration'), diff --git a/addons/account/account_bank_statement.py b/addons/account/account_bank_statement.py index cf50a1ab62e..c6548a36872 100644 --- a/addons/account/account_bank_statement.py +++ b/addons/account/account_bank_statement.py @@ -86,7 +86,6 @@ class account_bank_statement(osv.osv): def _end_balance(self, cursor, user, ids, name, attr, context=None): res_currency_obj = self.pool.get('res.currency') res_users_obj = self.pool.get('res.users') - res = {} company_currency_id = res_users_obj.browse(cursor, user, user, @@ -216,10 +215,8 @@ class account_bank_statement(osv.osv): def create_move_from_st_line(self, cr, uid, st_line_id, company_currency_id, st_line_number, context=None): res_currency_obj = self.pool.get('res.currency') - res_users_obj = self.pool.get('res.users') account_move_obj = self.pool.get('account.move') account_move_line_obj = self.pool.get('account.move.line') - account_analytic_line_obj = self.pool.get('account.analytic.line') account_bank_statement_line_obj = self.pool.get('account.bank.statement.line') st_line = account_bank_statement_line_obj.browse(cr, uid, st_line_id, context) st = st_line.statement_id @@ -395,8 +392,6 @@ class account_bank_statement(osv.osv): return self.write(cr, uid, done, {'state':'draft'}, context=context) def onchange_journal_id(self, cursor, user, statement_id, journal_id, context=None): - account_journal_obj = self.pool.get('account.journal') - res_users_obj = self.pool.get('res.users') cursor.execute('SELECT balance_end_real \ FROM account_bank_statement \ WHERE journal_id = %s AND NOT state = %s \ diff --git a/addons/account/account_cash_statement.py b/addons/account/account_cash_statement.py index 6431454b715..f88d38734f2 100644 --- a/addons/account/account_cash_statement.py +++ b/addons/account/account_cash_statement.py @@ -19,6 +19,7 @@ # along with this program. If not, see . # ############################################################################## + import time from osv import osv, fields @@ -45,13 +46,13 @@ class account_cashbox_line(osv.osv): res[obj.id] = obj.pieces * obj.number return res - def on_change_sub(self, cr, uid, ids, pieces, number,*a): + def on_change_sub(self, cr, uid, ids, pieces, number, *a): """ Calculates Sub total on change of number @param pieces: Names of fields. @param number: """ - sub=pieces*number + sub = pieces * number return {'value':{'subtotal': sub or 0.0}} _columns = { @@ -61,6 +62,7 @@ class account_cashbox_line(osv.osv): 'starting_id': fields.many2one('account.bank.statement',ondelete='cascade'), 'ending_id': fields.many2one('account.bank.statement',ondelete='cascade'), } + account_cashbox_line() class account_cash_statement(osv.osv): @@ -74,7 +76,7 @@ class account_cash_statement(osv.osv): @param arg: User defined arguments @return: Dictionary of values. """ - res ={} + res = {} for statement in self.browse(cr, uid, ids): amount_total = 0.0 @@ -96,10 +98,10 @@ class account_cash_statement(osv.osv): """ res ={} for statement in self.browse(cr, uid, ids): - amount_total=0.0 + amount_total = 0.0 for line in statement.ending_details_ids: - amount_total+= line.pieces * line.number - res[statement.id]=amount_total + amount_total += line.pieces * line.number + res[statement.id] = amount_total return res def _get_sum_entry_encoding(self, cr, uid, ids, name, arg, context=None): @@ -113,14 +115,13 @@ class account_cash_statement(osv.osv): for statement in self.browse(cr, uid, ids): encoding_total=0.0 for line in statement.line_ids: - encoding_total+= line.amount - res2[statement.id]=encoding_total + encoding_total += line.amount + res2[statement.id] = encoding_total return res2 def _end_balance(self, cursor, user, ids, name, attr, context=None): res_currency_obj = self.pool.get('res.currency') res_users_obj = self.pool.get('res.users') - res = {} company_currency_id = res_users_obj.browse(cursor, user, user, @@ -232,8 +233,8 @@ class account_cash_statement(osv.osv): 'user_id':fields.many2one('res.users', 'Responsible', required=False), } _defaults = { - 'state': lambda *a: 'draft', - 'date': lambda *a:time.strftime("%Y-%m-%d %H:%M:%S"), + 'state': 'draft', + 'date': time.strftime("%Y-%m-%d %H:%M:%S"), 'user_id': lambda self, cr, uid, context=None: uid, 'starting_details_ids':_get_cash_open_box_lines, 'ending_details_ids':_get_default_cash_close_box_lines @@ -295,10 +296,8 @@ class account_cash_statement(osv.osv): @param journal_id: Changed journal_id @return: Dictionary of changed values """ - cash_pool = self.pool.get('account.cashbox.line') statement_pool = self.pool.get('account.bank.statement') - res = {} balance_start = 0.0 @@ -307,8 +306,7 @@ class account_cash_statement(osv.osv): 'balance_start': balance_start }) return res - res = super(account_cash_statement, self).onchange_journal_id(cr, uid, statement_id, journal_id, context=context) - return res + return super(account_cash_statement, self).onchange_journal_id(cr, uid, statement_id, journal_id, context=context) def _equal_balance(self, cr, uid, cash_id, context=None): statement = self.browse(cr, uid, cash_id, context=context) @@ -329,7 +327,6 @@ class account_cash_statement(osv.osv): """ cash_pool = self.pool.get('account.cashbox.line') statement_pool = self.pool.get('account.bank.statement') - statement = statement_pool.browse(cr, uid, ids[0]) vals = {} @@ -347,9 +344,7 @@ class account_cash_statement(osv.osv): 'state':'open', }) - - self.write(cr, uid, ids, vals) - return True + return self.write(cr, uid, ids, vals) def balance_check(self, cr, uid, cash_id, journal_type='bank', context=None): if journal_type == 'bank': @@ -363,7 +358,7 @@ class account_cash_statement(osv.osv): return super(account_cash_statement, self).statement_close(cr, uid, ids, journal_type, context) vals = { 'state':'confirm', - 'closing_date':time.strftime("%Y-%m-%d %H:%M:%S") + 'closing_date': time.strftime("%Y-%m-%d %H:%M:%S") } return self.write(cr, uid, ids, vals, context=context) @@ -386,4 +381,4 @@ class account_cash_statement(osv.osv): account_cash_statement() -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/account/account_end_fy.xml b/addons/account/account_end_fy.xml index 76d40bc89dc..d0c966898d6 100644 --- a/addons/account/account_end_fy.xml +++ b/addons/account/account_end_fy.xml @@ -14,7 +14,7 @@ action="action_account_period_tree" id="menu_action_account_period_close_tree" parent="account.menu_account_end_year_treatments" - sequence="0" groups="base.group_extended"/> + sequence="0" groups="base.group_extended,group_account_manager,group_account_user"/> diff --git a/addons/account/account_menuitem.xml b/addons/account/account_menuitem.xml index dde71f4efc1..3926e4fd9fb 100644 --- a/addons/account/account_menuitem.xml +++ b/addons/account/account_menuitem.xml @@ -7,8 +7,8 @@ - + groups="group_account_user,group_account_manager"/> + @@ -21,16 +21,16 @@ - + - + - - + + - + @@ -43,7 +43,7 @@ diff --git a/addons/account/account_move_line.py b/addons/account/account_move_line.py index b10ced65e88..af7771eaeac 100644 --- a/addons/account/account_move_line.py +++ b/addons/account/account_move_line.py @@ -18,27 +18,30 @@ # along with this program. If not, see . # ############################################################################## + import time from datetime import datetime +from operator import itemgetter import netsvc from osv import fields, osv from tools.translate import _ import decimal_precision as dp import tools -from operator import itemgetter class account_move_line(osv.osv): _name = "account.move.line" _description = "Journal Items" - def _query_get(self, cr, uid, obj='l', context={}): + def _query_get(self, cr, uid, obj='l', context=None): fiscalyear_obj = self.pool.get('account.fiscalyear') fiscalperiod_obj = self.pool.get('account.period') + account_obj = self.pool.get('account.account') fiscalyear_ids = [] - fiscalperiod_ids = [] + if context is None: + context = {} initial_bal = context.get('initial_bal', False) - company_clause = "" + company_clause = " " if context.get('company_id', False): company_clause = " AND " +obj+".company_id = %s" % context.get('company_id', False) if not context.get('fiscalyear', False): @@ -51,20 +54,19 @@ class account_move_line(osv.osv): fiscalyear_ids = [context['fiscalyear']] fiscalyear_clause = (','.join([str(x) for x in fiscalyear_ids])) or '0' - state = context.get('state',False) - + state = context.get('state', False) where_move_state = '' where_move_lines_by_date = '' if context.get('date_from', False) and context.get('date_to', False): if initial_bal: - where_move_lines_by_date = " AND " +obj+".move_id in ( select id from account_move where date < '"+context['date_from']+"')" + where_move_lines_by_date = " OR " +obj+".move_id IN (SELECT id FROM account_move WHERE date < '" +context['date_from']+"')" else: - where_move_lines_by_date = " AND " +obj+".move_id in ( select id from account_move where date >= '" +context['date_from']+"' AND date <= '"+context['date_to']+"')" + where_move_lines_by_date = " AND " +obj+".move_id IN (SELECT id FROM account_move WHERE date >= '" +context['date_from']+"' AND date <= '"+context['date_to']+"')" if state: if state.lower() not in ['all']: - where_move_state= " AND "+obj+".move_id in (select id from account_move where account_move.state = '"+state+"')" + where_move_state= " AND "+obj+".move_id IN (SELECT id FROM account_move WHERE account_move.state = '"+state+"')" if context.get('period_from', False) and context.get('period_to', False) and not context.get('periods', False): if initial_bal: @@ -75,7 +77,7 @@ class account_move_line(osv.osv): context['periods'] = fiscalperiod_obj.build_ctx_periods(cr, uid, context['period_from'], context['period_to']) if context.get('periods', False): if initial_bal: - query = obj+".state<>'draft' AND "+obj+".period_id in (SELECT id from account_period WHERE fiscalyear_id in (%s) %s %s)" % (fiscalyear_clause, where_move_state, where_move_lines_by_date) + query = obj+".state <> 'draft' AND "+obj+".period_id IN (SELECT id FROM account_period WHERE fiscalyear_id IN (%s) %s %s)" % (fiscalyear_clause, where_move_state, where_move_lines_by_date) period_ids = fiscalperiod_obj.search(cr, uid, [('id', 'in', context['periods'])], order='date_start', limit=1) if period_ids and period_ids[0]: first_period = fiscalperiod_obj.browse(cr, uid, period_ids[0], context=context) @@ -83,52 +85,53 @@ class account_move_line(osv.osv): periods = fiscalperiod_obj.search(cr, uid, [('date_start', '<', first_period.date_start)]) periods = ','.join([str(x) for x in periods]) if periods: - query = obj+".state<>'draft' AND "+obj+".period_id in (SELECT id from account_period WHERE fiscalyear_id in (%s) OR id in (%s)) %s %s" % (fiscalyear_clause, periods, where_move_state, where_move_lines_by_date) + query = obj+".state <> 'draft' AND "+obj+".period_id IN (SELECT id FROM account_period WHERE fiscalyear_id IN (%s) OR id IN (%s)) %s %s" % (fiscalyear_clause, periods, where_move_state, where_move_lines_by_date) else: ids = ','.join([str(x) for x in context['periods']]) - query = obj+".state<>'draft' AND "+obj+".period_id in (SELECT id from account_period WHERE fiscalyear_id in (%s) AND id in (%s)) %s %s" % (fiscalyear_clause, ids, where_move_state, where_move_lines_by_date) + query = obj+".state <> 'draft' AND "+obj+".period_id IN (SELECT id FROM account_period WHERE fiscalyear_id IN (%s) AND id IN (%s)) %s %s" % (fiscalyear_clause, ids, where_move_state, where_move_lines_by_date) else: - query = obj+".state<>'draft' AND "+obj+".period_id in (SELECT id from account_period WHERE fiscalyear_id in (%s) %s %s)" % (fiscalyear_clause,where_move_state,where_move_lines_by_date) + query = obj+".state <> 'draft' AND "+obj+".period_id IN (SELECT id FROM account_period WHERE fiscalyear_id IN (%s) %s %s)" % (fiscalyear_clause, where_move_state, where_move_lines_by_date) if context.get('journal_ids', False): - query += ' AND '+obj+'.journal_id in (%s)' % ','.join(map(str, context['journal_ids'])) + query += ' AND '+obj+'.journal_id IN (%s)' % ','.join(map(str, context['journal_ids'])) if context.get('chart_account_id', False): - child_ids = self.pool.get('account.account')._get_children_and_consol(cr, uid, [context['chart_account_id']], context=context) - query += ' AND '+obj+'.account_id in (%s)' % ','.join(map(str, child_ids)) + child_ids = account_obj._get_children_and_consol(cr, uid, [context['chart_account_id']], context=context) + query += ' AND '+obj+'.account_id IN (%s)' % ','.join(map(str, child_ids)) query += company_clause return query - def default_get(self, cr, uid, fields, context={}): - data = self._default_get(cr, uid, fields, context) + def default_get(self, cr, uid, fields, context=None): + data = self._default_get(cr, uid, fields, context=context) for f in data.keys(): if f not in fields: del data[f] return data def create_analytic_lines(self, cr, uid, ids, context={}): + acc_ana_line_obj = self.pool.get('account.analytic.line') for obj_line in self.browse(cr, uid, ids, context): 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,)) + raise osv.except_osv(_('No Analytic Journal !'),_("You have to define an analytic journal on the '%s' journal!") % (obj_line.journal_id.name, )) amt = (obj_line.credit or 0.0) - (obj_line.debit or 0.0) - vals_lines={ + vals_lines = { 'name': obj_line.name, 'date': obj_line.date, 'account_id': obj_line.analytic_account_id.id, - 'unit_amount':obj_line.quantity, + 'unit_amount': obj_line.quantity, 'product_id': obj_line.product_id and obj_line.product_id.id or False, 'product_uom_id': obj_line.product_uom_id and obj_line.product_uom_id.id or False, 'amount': amt, 'general_account_id': obj_line.account_id.id, 'journal_id': obj_line.journal_id.analytic_journal_id.id, 'ref': obj_line.ref, - 'move_id':obj_line.id, + 'move_id': obj_line.id, 'user_id': uid } - new_id = self.pool.get('account.analytic.line').create(cr,uid,vals_lines) + acc_ana_line_obj.create(cr, uid, vals_lines) return True def _default_get_move_form_hook(self, cursor, user, data): @@ -141,94 +144,89 @@ class account_move_line(osv.osv): def convert_to_period(self, cr, uid, context={}): period_obj = self.pool.get('account.period') - #check if the period_id changed in the context from client side if context.get('period_id', False): period_id = context.get('period_id') if type(period_id) == str: - ids = period_obj.search(cr, uid, [('name','ilike',period_id)]) + ids = period_obj.search(cr, uid, [('name', 'ilike', period_id)]) context.update({ - 'period_id':ids[0] + 'period_id': ids[0] }) - return context def _default_get(self, cr, uid, fields, context={}): - if not context.get('journal_id', False) and context.get('search_default_journal_id', False): context['journal_id'] = context.get('search_default_journal_id') - + account_obj = self.pool.get('account.account') period_obj = self.pool.get('account.period') - + journal_obj = self.pool.get('account.journal') + move_obj = self.pool.get('account.move') + tax_obj = self.pool.get('account.tax') + fiscal_pos_obj = self.pool.get('account.fiscal.position') + partner_obj = self.pool.get('res.partner') + currency_obj = self.pool.get('res.currency') context = self.convert_to_period(cr, uid, context) - # Compute simple values data = super(account_move_line, self).default_get(cr, uid, fields, context) # Starts: Manual entry from account.move form if context.get('lines',[]): - - total_new=0.00 + total_new = 0.00 for i in context['lines']: if i[2]: - total_new +=(i[2]['debit'] or 0.00)- (i[2]['credit'] or 0.00) + total_new += (i[2]['debit'] or 0.00)- (i[2]['credit'] or 0.00) for item in i[2]: - data[item]=i[2][item] + data[item] = i[2][item] if context['journal']: - journal_obj=self.pool.get('account.journal').browse(cr, uid, context['journal']) - if journal_obj.type == 'purchase': + journal_data = obj_journal.browse(cr, uid, context['journal']) + if journal_data.type == 'purchase': if total_new > 0: - account = journal_obj.default_credit_account_id + account = journal_data.default_credit_account_id else: - account = journal_obj.default_debit_account_id + account = journal_data.default_debit_account_id else: if total_new > 0: - account = journal_obj.default_credit_account_id + account = journal_data.default_credit_account_id else: - account = journal_obj.default_debit_account_id - + account = journal_data.default_debit_account_id if account and ((not fields) or ('debit' in fields) or ('credit' in fields)) and 'partner_id' in data and (data['partner_id']): - part = self.pool.get('res.partner').browse(cr, uid, data['partner_id']) - account = self.pool.get('account.fiscal.position').map_account(cr, uid, part and part.property_account_position or False, account.id) - account = self.pool.get('account.account').browse(cr, uid, account) + part = partner_obj.browse(cr, uid, data['partner_id']) + account = fiscal_pos_obj.map_account(cr, uid, part and part.property_account_position or False, account.id) + account = account_obj.browse(cr, uid, account) data['account_id'] = account.id s = -total_new - data['debit'] = s>0 and s or 0.0 - data['credit'] = s<0 and -s or 0.0 + data['debit'] = s > 0 and s or 0.0 + data['credit'] = s < 0 and -s or 0.0 data = self._default_get_move_form_hook(cr, uid, data) return data # Ends: Manual entry from account.move form - if not 'move_id' in fields: #we are not in manual entry return data - # Compute the current move move_id = False partner_id = False if context.get('journal_id', False) and context.get('period_id', False): if 'move_id' in fields: - cr.execute('select move_id \ - from \ + cr.execute('SELECT move_id \ + FROM \ account_move_line \ - where \ - journal_id=%s and period_id=%s and create_uid=%s and state=%s \ - order by id desc limit 1', + WHERE \ + journal_id = %s and period_id = %s AND create_uid = %s AND state = %s \ + ORDER BY id DESC limit 1', (context['journal_id'], context['period_id'], uid, 'draft')) res = cr.fetchone() move_id = (res and res[0]) or False - if not move_id: return data else: data['move_id'] = move_id - if 'date' in fields: - cr.execute('select date \ - from \ + cr.execute('SELECT date \ + FROM \ account_move_line \ - where \ - journal_id=%s and period_id=%s and create_uid=%s \ - order by id desc', + WHERE \ + journal_id = %s AND period_id = %s AND create_uid = %s \ + ORDER BY id DESC', (context['journal_id'], context['period_id'], uid)) res = cr.fetchone() if res: @@ -239,10 +237,9 @@ class account_move_line(osv.osv): data['date'] = period.date_start if not move_id: return data - total = 0 ref_id = False - move = self.pool.get('account.move').browse(cr, uid, move_id, context) + move = move_obj.browse(cr, uid, move_id, context) if 'name' in fields: data.setdefault('name', move.line_id[-1].name) acc1 = False @@ -258,44 +255,40 @@ class account_move_line(osv.osv): data['partner_id'] = partner_id if move.journal_id.type == 'purchase': - if total>0: + if total > 0: account = move.journal_id.default_credit_account_id else: account = move.journal_id.default_debit_account_id else: - if total>0: + if total > 0: account = move.journal_id.default_credit_account_id else: account = move.journal_id.default_debit_account_id - - part = partner_id and self.pool.get('res.partner').browse(cr, uid, partner_id) or False + part = partner_id and partner_obj.browse(cr, uid, partner_id) or False # part = False is acceptable for fiscal position. - account = self.pool.get('account.fiscal.position').map_account(cr, uid, part and part.property_account_position or False, account.id) + account = fiscal_pos_obj.map_account(cr, uid, part and part.property_account_position or False, account.id) if account: - account = self.pool.get('account.account').browse(cr, uid, account) + account = account_obj.browse(cr, uid, account) if account and ((not fields) or ('debit' in fields) or ('credit' in fields)): data['account_id'] = account.id # Propose the price VAT excluded, the VAT will be added when confirming line if account.tax_ids: - taxes = self.pool.get('account.fiscal.position').map_tax(cr, uid, part and part.property_account_position or False, account.tax_ids) - tax = self.pool.get('account.tax').browse(cr, uid, taxes) - for t in self.pool.get('account.tax').compute_inv(cr, uid, tax, total, 1): + taxes = fiscal_pos_obj.map_tax(cr, uid, part and part.property_account_position or False, account.tax_ids) + tax = tax_obj.browse(cr, uid, taxes) + for t in tax_obj.compute_inv(cr, uid, tax, total, 1): total -= t['amount'] s = -total - data['debit'] = s>0 and s or 0.0 - data['credit'] = s<0 and -s or 0.0 + data['debit'] = s > 0 and s or 0.0 + data['credit'] = s < 0 and -s or 0.0 if account and account.currency_id: data['currency_id'] = account.currency_id.id acc = account if s>0: acc = acc1 - v = self.pool.get('res.currency').compute(cr, uid, - account.company_id.currency_id.id, - data['currency_id'], - s, account=acc, account_invert=True) + v = currency_obj.compute(cr, uid, account.company_id.currency_id.id, data['currency_id'], s, account=acc, account_invert=True) data['amount_currency'] = v return data @@ -306,20 +299,18 @@ class account_move_line(osv.osv): def _balance(self, cr, uid, ids, name, arg, context=None): if context is None: 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""", + """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""", + """ GROUP BY l2.id""", ] cr.execute('\n'.join(sql), [tuple(ids)]) @@ -341,8 +332,7 @@ class account_move_line(osv.osv): res[line_id] = invoice_id invoice_ids.append(invoice_id) invoice_names = {False: ''} - for invoice_id, name in invoice_obj.name_get(cursor, user, - invoice_ids, context=context): + for invoice_id, name in invoice_obj.name_get(cursor, user, invoice_ids, context=context): invoice_names[invoice_id] = name for line_id in res.keys(): invoice_id = res[line_id] @@ -363,12 +353,11 @@ class account_move_line(osv.osv): def _balance_search(self, cursor, user, obj, name, args, domain=None, context=None): if context is None: context = {} - if not args: return [] - where = ' and '.join(map(lambda x: '(abs(sum(debit-credit))'+x[1]+str(x[2])+')',args)) - cursor.execute('select id, sum(debit-credit) from account_move_line \ - group by id, debit, credit having '+where) + where = ' AND '.join(map(lambda x: '(abs(sum(debit-credit))'+x[1]+str(x[2])+')',args)) + cursor.execute('SELECT id, SUM(debit-credit) FROM account_move_line \ + GROUP BY id, debit, credit having '+where) res = cursor.fetchall() if not res: return [('id', '=', '0')] @@ -378,7 +367,6 @@ class account_move_line(osv.osv): if not args: return [] invoice_obj = self.pool.get('account.invoice') - i = 0 while i < len(args): fargs = args[i][0].split('.', 1) @@ -404,7 +392,7 @@ class account_move_line(osv.osv): qu2.append(x[2]) elif x[1] == 'in': if len(x[2]) > 0: - qu1.append('(i.id in (%s))' % (','.join(['%s'] * len(x[2])))) + qu1.append('(i.id IN (%s))' % (','.join(['%s'] * len(x[2])))) qu2 += x[2] else: qu1.append(' (False)') @@ -443,17 +431,15 @@ class account_move_line(osv.osv): 'reconcile_partial_id': fields.many2one('account.move.reconcile', 'Partial Reconcile', readonly=True, ondelete='set null', select=2), 'amount_currency': fields.float('Amount Currency', help="The amount expressed in an optional other currency if it is a multi-currency entry.", digits_compute=dp.get_precision('Account')), 'currency_id': fields.many2one('res.currency', 'Currency', help="The optional other currency if it is a multi-currency entry."), - 'period_id': fields.many2one('account.period', 'Period', required=True, select=2), 'journal_id': fields.many2one('account.journal', 'Journal', required=True, select=1), 'blocked': fields.boolean('Litigation', help="You can check this box to mark this journal item as a litigation with the associated partner"), - 'partner_id': fields.many2one('res.partner', 'Partner'), 'date_maturity': fields.date('Due date', help="This field is used for payable and receivable journal entries. You can put the limit date for the payment of this line."), 'date': fields.related('move_id','date', string='Effective date', type='date', required=True, - store={ - 'account.move': (_get_move_lines, ['date'], 20) - }), + store = { + 'account.move': (_get_move_lines, ['date'], 20) + }), 'date_created': fields.date('Creation date'), 'analytic_lines': fields.one2many('account.analytic.line', 'move_id', 'Analytic lines'), 'centralisation': fields.selection([('normal','Normal'),('credit','Credit Centralisation'),('debit','Debit Centralisation')], 'Centralisation', size=6), @@ -470,23 +456,21 @@ class account_move_line(osv.osv): #TODO: remove this #'amount_taxed':fields.float("Taxed Amount", digits_compute=dp.get_precision('Account')), 'company_id': fields.related('account_id', 'company_id', type='many2one', relation='res.company', string='Company', store=True, readonly=True) - } def _get_date(self, cr, uid, context): period_obj = self.pool.get('account.period') dt = time.strftime('%Y-%m-%d') if ('journal_id' in context) and ('period_id' in context): - cr.execute('select date from account_move_line ' \ - 'where journal_id=%s and period_id=%s ' \ - 'order by id desc limit 1', + cr.execute('SELECT date FROM account_move_line ' \ + 'WHERE journal_id = %s AND period_id = %s ' \ + 'ORDER BY id DESC limit 1', (context['journal_id'], context['period_id'])) res = cr.fetchone() if res: dt = res[0] else: - period = period_obj.browse(cr, uid, context['period_id'], - context=context) + period = period_obj.browse(cr, uid, context['period_id'], context=context) dt = period.date_start return dt @@ -497,17 +481,17 @@ class account_move_line(osv.osv): return cur and cur.id or False _defaults = { - 'blocked': lambda *a: False, - 'centralisation': lambda *a: 'normal', + 'blocked': False, + 'centralisation': 'normal', 'date': _get_date, - 'date_created': lambda *a: time.strftime('%Y-%m-%d'), - 'state': lambda *a: 'draft', + 'date_created': time.strftime('%Y-%m-%d'), + 'state': 'draft', 'currency_id': _get_currency, 'journal_id': lambda self, cr, uid, c: c.get('journal_id', False), 'period_id': lambda self, cr, uid, c: c.get('period_id', False), 'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'account.move.line', context=c) } - _order = "date desc,id desc" + _order = "date desc, id desc" _sql_constraints = [ ('credit_debit1', 'CHECK (credit*debit=0)', 'Wrong credit or debit value in accounting entry !'), ('credit_debit2', 'CHECK (credit+debit>=0)', 'Wrong credit or debit value in accounting entry !'), @@ -547,23 +531,29 @@ class account_move_line(osv.osv): ] #TODO: ONCHANGE_ACCOUNT_ID: set account_tax_id - def onchange_currency(self, cr, uid, ids, account_id, amount, currency_id, date=False, journal=False): + account_obj = self.pool.get('account.account') + journal_obj = self.pool.get('account.journal') + currency_obj = self.pool.get('res.currency') if (not currency_id) or (not account_id): return {} result = {} - acc =self.pool.get('account.account').browse(cr, uid, account_id) + acc = account_obj.browse(cr, uid, account_id) if (amount>0) and journal: - x = self.pool.get('account.journal').browse(cr, uid, journal).default_credit_account_id + x = journal_obj.browse(cr, uid, journal).default_credit_account_id if x: acc = x - v = self.pool.get('res.currency').compute(cr, uid, currency_id,acc.company_id.currency_id.id, amount, account=acc) + v = currency_obj.compute(cr, uid, currency_id, acc.company_id.currency_id.id, amount, account=acc) result['value'] = { - 'debit': v>0 and v or 0.0, - 'credit': v<0 and -v or 0.0 + 'debit': v > 0 and v or 0.0, + 'credit': v < 0 and -v or 0.0 } return result def onchange_partner_id(self, cr, uid, ids, move_id, partner_id, account_id=None, debit=0, credit=0, date=False, journal=False): + partner_obj = self.pool.get('res.partner') + payment_term_obj = self.pool.get('account.payment.term') + journal_obj = self.pool.get('account.journal') + fiscal_pos_obj = self.pool.get('account.fiscal.position') val = {} val['date_maturity'] = False @@ -571,51 +561,50 @@ class account_move_line(osv.osv): return {'value':val} if not date: date = datetime.now().strftime('%Y-%m-%d') - part = self.pool.get('res.partner').browse(cr, uid, partner_id) + part = partner_obj.browse(cr, uid, partner_id) if part.property_payment_term: - res = self.pool.get('account.payment.term').compute(cr, uid, part.property_payment_term.id, 100, date) + res = payment_term_obj.compute(cr, uid, part.property_payment_term.id, 100, date) if res: val['date_maturity'] = res[0][0] if not account_id: id1 = part.property_account_payable.id id2 = part.property_account_receivable.id if journal: - jt = self.pool.get('account.journal').browse(cr, uid, journal).type + jt = journal_obj.browse(cr, uid, journal).type #FIXME: Bank and cash journal are such a journal we can not assume a account based on this 2 journals # Bank and cash journal can have a payment or receipt transaction, and in both type partner account # will not be same id payment then payable, and if receipt then receivable #if jt in ('sale', 'purchase_refund', 'bank', 'cash'): if jt in ('sale', 'purchase_refund'): - val['account_id'] = self.pool.get('account.fiscal.position').map_account(cr, uid, part and part.property_account_position or False, id2) + val['account_id'] = fiscal_pos_obj.map_account(cr, uid, part and part.property_account_position or False, id2) elif jt in ('purchase', 'sale_refund', 'expense', 'bank', 'cash'): - val['account_id'] = self.pool.get('account.fiscal.position').map_account(cr, uid, part and part.property_account_position or False, id1) - + val['account_id'] = fiscal_pos_obj.map_account(cr, uid, part and part.property_account_position or False, id1) if val.get('account_id', False): d = self.onchange_account_id(cr, uid, ids, val['account_id']) val.update(d['value']) - return {'value':val} def onchange_account_id(self, cr, uid, ids, account_id=False, partner_id=False): + account_obj = self.pool.get('account.account') + partner_obj = self.pool.get('res.partner') + fiscal_pos_obj = self.pool.get('account.fiscal.position') val = {} if account_id: - res = self.pool.get('account.account').browse(cr, uid, account_id) + res = account_obj.browse(cr, uid, account_id) tax_ids = res.tax_ids if tax_ids and partner_id: - part = self.pool.get('res.partner').browse(cr, uid, partner_id) - tax_id = self.pool.get('account.fiscal.position').map_tax(cr, uid, part and part.property_account_position or False, tax_ids)[0] + part = partner_obj.browse(cr, uid, partner_id) + tax_id = fiscal_pos_obj.map_tax(cr, uid, part and part.property_account_position or False, tax_ids)[0] else: tax_id = tax_ids and tax_ids[0].id or False val['account_tax_id'] = tax_id - return {'value':val} - + return {'value': val} # # type: the type if reconciliation (no logic behind this field, for info) # # writeoff; entry generated for the difference between the lines # - def search(self, cr, uid, args, offset=0, limit=None, order=None, context=None, count=False): if context is None: context = {} @@ -635,7 +624,7 @@ class account_move_line(osv.osv): SELECT p.id FROM res_partner p RIGHT JOIN ( - SELECT l.partner_id as partner_id, SUM(l.debit) as debit, SUM(l.credit) as credit + SELECT l.partner_id AS partner_id, SUM(l.debit) AS debit, SUM(l.credit) AS credit FROM account_move_line l LEFT JOIN account_account a ON (a.id = l.account_id) LEFT JOIN res_partner p ON (l.partner_id = p.id) @@ -646,20 +635,19 @@ class account_move_line(osv.osv): GROUP BY l.partner_id ) AS s ON (p.id = s.partner_id) WHERE debit > 0 AND credit > 0 - ORDER BY p.last_reconciliation_date LIMIT 1 OFFSET %s""", (offset,) + ORDER BY p.last_reconciliation_date LIMIT 1 OFFSET %s""", (offset, ) ) return cr.fetchone() def reconcile_partial(self, cr, uid, ids, type='auto', context=None): + move_rec_obj = self.pool.get('account.move.reconcile') merges = [] unmerge = [] total = 0.0 merges_rec = [] - company_list = [] if context is None: context = {} - for line in self.browse(cr, uid, ids, context=context): if company_list and not line.company_id.id in company_list: raise osv.except_osv(_('Warning !'), _('To reconcile the entries company should be the same for all entries')) @@ -682,14 +670,19 @@ class account_move_line(osv.osv): if not total: res = self.reconcile(cr, uid, merges+unmerge, context=context) return res - r_id = self.pool.get('account.move.reconcile').create(cr, uid, { + r_id = move_rec_obj.create(cr, uid, { 'type': type, 'line_partial_ids': map(lambda x: (4,x,False), merges+unmerge) }) - self.pool.get('account.move.reconcile').reconcile_partial_check(cr, uid, [r_id] + merges_rec, context=context) + move_rec_obj.reconcile_partial_check(cr, uid, [r_id] + merges_rec, context=context) return True def reconcile(self, cr, uid, ids, type='auto', writeoff_acc_id=False, writeoff_period_id=False, writeoff_journal_id=False, context=None): + account_obj = self.pool.get('account.account') + move_obj = self.pool.get('account.move') + move_rec_obj = self.pool.get('account.move.reconcile') + partner_obj = self.pool.get('res.partner') + currency_obj = self.pool.get('res.currency') lines = self.browse(cr, uid, ids, context=context) unrec_lines = filter(lambda x: not x['reconcile_id'], lines) credit = debit = 0.0 @@ -698,13 +691,11 @@ class account_move_line(osv.osv): partner_id = False if context is None: context = {} - company_list = [] for line in self.browse(cr, uid, ids, context=context): if company_list and not line.company_id.id in company_list: raise osv.except_osv(_('Warning !'), _('To reconcile the entries company should be the same for all entries')) company_list.append(line.company_id.id) - for line in unrec_lines: if line.state <> 'valid': raise osv.except_osv(_('Error'), @@ -726,21 +717,21 @@ class account_move_line(osv.osv): 'FROM account_move_line '\ 'WHERE id IN %s '\ 'GROUP BY account_id,reconcile_id', - (tuple(ids),)) + (tuple(ids), )) r = cr.fetchall() #TODO: move this check to a constraint in the account_move_reconcile object if (len(r) != 1) and not context.get('fy_closing', False): 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 = self.pool.get('account.account').browse(cr, uid, account_id, context=context) + account = account_obj.browse(cr, uid, account_id, context=context) if not context.get('fy_closing', False) and 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 (not self.pool.get('res.currency').is_zero(cr, uid, account.company_id.currency_id, writeoff)) or \ - (account.currency_id and (not self.pool.get('res.currency').is_zero(cr, uid, account.currency_id, currency))): + 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 entry !')) if writeoff > 0: @@ -753,36 +744,34 @@ class account_move_line(osv.osv): credit = -writeoff self_credit = 0.0 self_debit = -writeoff - # If comment exist in context, take it if 'comment' in context and context['comment']: - libelle=context['comment'] + libelle = context['comment'] else: - libelle='Write-Off' - + libelle = 'Write-Off' writeoff_lines = [ (0, 0, { - 'name':libelle, - 'debit':self_debit, - 'credit':self_credit, - 'account_id':account_id, - 'date':date, - 'partner_id':partner_id, + 'name': libelle, + 'debit': self_debit, + 'credit': self_credit, + 'account_id': account_id, + 'date': date, + 'partner_id': partner_id, 'currency_id': account.currency_id.id or False, 'amount_currency': account.currency_id.id and -currency or 0.0 }), (0, 0, { - 'name':libelle, - 'debit':debit, - 'credit':credit, - 'account_id':writeoff_acc_id, + 'name': libelle, + 'debit': debit, + 'credit': credit, + 'account_id': writeoff_acc_id, 'analytic_account_id': context.get('analytic_id', False), - 'date':date, - 'partner_id':partner_id + 'date': date, + 'partner_id': partner_id }) ] - writeoff_move_id = self.pool.get('account.move').create(cr, uid, { + writeoff_move_id = move_obj.create(cr, uid, { 'period_id': writeoff_period_id, 'journal_id': writeoff_journal_id, 'date':date, @@ -793,11 +782,10 @@ class account_move_line(osv.osv): writeoff_line_ids = self.search(cr, uid, [('move_id', '=', writeoff_move_id), ('account_id', '=', account_id)]) ids += writeoff_line_ids - r_id = self.pool.get('account.move.reconcile').create(cr, uid, { - #'name': date, + r_id = move_rec_obj.create(cr, uid, { 'type': type, - 'line_id': map(lambda x: (4,x,False), ids), - 'line_partial_ids': map(lambda x: (3,x,False), ids) + '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 @@ -808,21 +796,21 @@ class account_move_line(osv.osv): if lines and lines[0]: partner_id = lines[0].partner_id and lines[0].partner_id.id or False if partner_id and context and context.get('stop_reconcile', False): - self.pool.get('res.partner').write(cr, uid, [partner_id], {'last_reconciliation_date': time.strftime('%Y-%m-%d %H:%M:%S')}) + partner_obj.write(cr, uid, [partner_id], {'last_reconciliation_date': time.strftime('%Y-%m-%d %H:%M:%S')}) return r_id def view_header_get(self, cr, user, view_id, view_type, context): context = self.convert_to_period(cr, user, context) if context.get('account_id', False): - cr.execute('select code from account_account where id=%s', (context['account_id'],)) + cr.execute('SELECT code FROM account_account WHERE id = %s', (context['account_id'], )) res = cr.fetchone() res = _('Entries: ')+ (res[0] or '') return res if (not context.get('journal_id', False)) or (not context.get('period_id', False)): return False - cr.execute('select code from account_journal where id=%s', (context['journal_id'],)) + cr.execute('SELECT code FROM account_journal WHERE id = %s', (context['journal_id'], )) j = cr.fetchone()[0] or '' - cr.execute('select code from account_period where id=%s', (context['period_id'],)) + cr.execute('SELECT code FROM account_period WHERE id = %s', (context['period_id'], )) p = cr.fetchone()[0] or '' if j or p: return j+(p and (':'+p) or '') @@ -855,22 +843,18 @@ class account_move_line(osv.osv): def fields_view_get(self, cr, uid, view_id=None, view_type='form', context={}, toolbar=False, submenu=False): journal_pool = self.pool.get('account.journal') - result = super(osv.osv, self).fields_view_get(cr, uid, view_id, view_type, context, toolbar=toolbar, submenu=submenu) if view_type != 'tree': #Remove the toolbar from the form view if view_type == 'form': if result.get('toolbar', False): result['toolbar']['action'] = [] - #Restrict the list of journal view in search view if view_type == 'search' and result['fields'].get('journal_id', False): result['fields']['journal_id']['selection'] = journal_pool.name_search(cr, uid, '', [], context=context) return result - if context.get('view_mode', False): return result - fld = [] fields = {} flds = [] @@ -893,45 +877,38 @@ class account_move_line(osv.osv): else: fields.get(field.field).append(journal.id) common_fields[field.field] = common_fields[field.field] + 1 - fld.append(('period_id', 3, 'Period')) fld.append(('journal_id', 10, 'Journal')) flds.append('period_id') flds.append('journal_id') fields['period_id'] = all_journal fields['journal_id'] = all_journal - fld = sorted(fld, key=itemgetter(1)) - widths = { 'statement_id': 50, 'state': 60, 'tax_code_id': 50, 'move_id': 40, } - for field_it in fld: field = field_it[0] - if common_fields.get(field) == total: fields.get(field).append(None) - # if field=='state': # state = 'colors="red:state==\'draft\'"' - attrs = [] if field == 'debit': - attrs.append('sum="Total debit"') + attrs.append('sum = "Total debit"') elif field == 'credit': - attrs.append('sum="Total credit"') + attrs.append('sum = "Total credit"') elif field == 'move_id': - attrs.append('required="False"') + attrs.append('required = "False"') elif field == 'account_tax_id': - attrs.append('domain="[(\'parent_id\',\'=\',False)]"') - attrs.append("context=\"{'journal_id':journal_id}\"") + attrs.append('domain="[(\'parent_id\', \'=\' ,False)]"') + attrs.append("context=\"{'journal_id': journal_id}\"") elif field == 'account_id' and journal.id: attrs.append('domain="[(\'journal_id\', \'=\', '+str(journal.id)+'),(\'type\',\'<>\',\'view\'), (\'type\',\'<>\',\'closed\')]" on_change="onchange_account_id(account_id, partner_id)"') @@ -940,17 +917,17 @@ class account_move_line(osv.osv): attrs.append('on_change="onchange_partner_id(move_id, partner_id, account_id, debit, credit, date, journal_id)"') elif field == 'journal_id': - attrs.append("context=\"{'journal_id':journal_id}\"") + attrs.append("context=\"{'journal_id': journal_id}\"") elif field == 'statement_id': - attrs.append("domain=\"[('state','!=','confirm'),('journal_id.type','=','bank')]\"") + attrs.append("domain=\"[('state', '!=', 'confirm'),('journal_id.type', '=', 'bank')]\"") elif field == 'date': attrs.append('on_change="onchange_date(date)"') if field in ('amount_currency', 'currency_id'): - attrs.append('on_change="onchange_currency(account_id, amount_currency,currency_id, date, journal_id)"') - attrs.append('''attrs="{'readonly':[('state','=','valid')]}"''') + attrs.append('on_change="onchange_currency(account_id, amount_currency, currency_id, date, journal_id)"') + attrs.append('''attrs="{'readonly': [('state', '=', 'valid')]}"''') if field in widths: attrs.append('width="'+str(widths[field])+'"') @@ -965,7 +942,7 @@ class account_move_line(osv.osv): def _check_moves(self, cr, uid, context): # use the first move ever created for this journal and period - cr.execute('select id, state, name from account_move where journal_id=%s and period_id=%s order by id limit 1', (context['journal_id'],context['period_id'])) + cr.execute('SELECT id, state, name FROM account_move WHERE journal_id = %s AND period_id = %s ORDER BY id limit 1', (context['journal_id'],context['period_id'])) res = cr.fetchone() if res: if res[1] != 'draft': @@ -981,7 +958,7 @@ class account_move_line(osv.osv): unlink_ids = [] if not move_ids: return True - recs = obj_move_line.read(cr, uid, move_ids, ['reconcile_id','reconcile_partial_id']) + recs = obj_move_line.read(cr, uid, move_ids, ['reconcile_id', 'reconcile_partial_id']) full_recs = filter(lambda x: x['reconcile_id'], recs) rec_ids = [rec['reconcile_id'][0] for rec in full_recs] part_recs = filter(lambda x: x['reconcile_partial_id'], recs) @@ -993,19 +970,23 @@ class account_move_line(osv.osv): return True def unlink(self, cr, uid, ids, context={}, check=True): + move_obj = self.pool.get('account.move') self._update_check(cr, uid, ids, context) result = False for line in self.browse(cr, uid, ids, context): - context['journal_id']=line.journal_id.id - context['period_id']=line.period_id.id + context['journal_id'] = line.journal_id.id + context['period_id'] = line.period_id.id result = super(account_move_line, self).unlink(cr, uid, [line.id], context=context) if check: - self.pool.get('account.move').validate(cr, uid, [line.move_id.id], context=context) + move_obj.validate(cr, uid, [line.move_id.id], context=context) return result def _check_date(self, cr, uid, vals, context=None, check=True): if context is None: context = {} + move_obj = self.pool.get('account.move') + journal_obj = self.pool.get('account.journal') + period_obj = self.pool.get('account.period') journal_id = False if 'date' in vals.keys(): if 'journal_id' in vals and 'journal_id' not in context: @@ -1014,17 +995,17 @@ class account_move_line(osv.osv): period_id = vals['period_id'] elif 'journal_id' not in context and 'move_id' in vals: if vals.get('move_id', False): - m = self.pool.get('account.move').browse(cr, uid, vals['move_id']) + m = move_obj.browse(cr, uid, vals['move_id']) journal_id = m.journal_id.id period_id = m.period_id.id else: - journal_id = context.get('journal_id',False) - period_id = context.get('period_id',False) + journal_id = context.get('journal_id', False) + period_id = context.get('period_id', False) if journal_id: - journal = self.pool.get('account.journal').browse(cr, uid, [journal_id])[0] + journal = journal_obj.browse(cr, uid, [journal_id])[0] if journal.allow_date and period_id: - period = self.pool.get('account.period').browse(cr, uid, [period_id])[0] - if not time.strptime(vals['date'][:10],'%Y-%m-%d')>=time.strptime(period.date_start,'%Y-%m-%d') or not time.strptime(vals['date'][:10],'%Y-%m-%d')<=time.strptime(period.date_stop,'%Y-%m-%d'): + period = period_obj.browse(cr, uid, [period_id])[0] + if not time.strptime(vals['date'][:10],'%Y-%m-%d') >= time.strptime(period.date_start, '%Y-%m-%d') or not time.strptime(vals['date'][:10], '%Y-%m-%d') <= time.strptime(period.date_stop, '%Y-%m-%d'): raise osv.except_osv(_('Error'),_('The date of your Journal Entry is not in the defined period!')) else: return True @@ -1032,10 +1013,12 @@ class account_move_line(osv.osv): def write(self, cr, uid, ids, vals, context=None, check=True, update_check=True): if context is None: context={} + move_obj = self.pool.get('account.move') + account_obj = self.pool.get('account.account') + journal_obj = self.pool.get('account.journal') if vals.get('account_tax_id', False): raise osv.except_osv(_('Unable to change tax !'), _('You can not change the tax, you should remove and recreate lines !')) self._check_date(cr, uid, vals, context, check) - account_obj = self.pool.get('account.account') if ('account_id' in vals) and not account_obj.read(cr, uid, vals['account_id'], ['active'])['active']: raise osv.except_osv(_('Bad account!'), _('You can not use an inactive account!')) if update_check: @@ -1047,7 +1030,7 @@ class account_move_line(osv.osv): todo_date = vals['date'] del vals['date'] - for line in self.browse(cr, uid, ids,context=context): + for line in self.browse(cr, uid, ids, context=context): ctx = context.copy() if ('journal_id' not in ctx): if line.move_id: @@ -1060,32 +1043,33 @@ class account_move_line(osv.osv): else: ctx['period_id'] = line.period_id.id #Check for centralisation - journal = self.pool.get('account.journal').browse(cr, uid, ctx['journal_id'], context=ctx) + journal = journal_obj.browse(cr, uid, ctx['journal_id'], context=ctx) if journal.centralisation: self._check_moves(cr, uid, context=ctx) - result = super(account_move_line, self).write(cr, uid, ids, vals, context) - if check: done = [] for line in self.browse(cr, uid, ids): if line.move_id.id not in done: done.append(line.move_id.id) - self.pool.get('account.move').validate(cr, uid, [line.move_id.id], context) + move_obj.validate(cr, uid, [line.move_id.id], context) if todo_date: - self.pool.get('account.move').write(cr, uid, [line.move_id.id], {'date': todo_date}, context=context) + move_obj.write(cr, uid, [line.move_id.id], {'date': todo_date}, context=context) return result def _update_journal_check(self, cr, uid, journal_id, period_id, context={}): - cr.execute('select state from account_journal_period where journal_id=%s and period_id=%s', (journal_id, period_id)) + journal_obj = self.pool.get('account.journal') + period_obj = self.pool.get('account.period') + jour_period_obj = self.pool.get('account.journal.period') + cr.execute('SELECT state FROM account_journal_period WHERE journal_id = %s AND period_id = %s', (journal_id, period_id)) result = cr.fetchall() for (state,) in result: - if state=='done': + if state == 'done': raise osv.except_osv(_('Error !'), _('You can not add/modify entries in a closed journal.')) if not result: - journal = self.pool.get('account.journal').browse(cr, uid, journal_id, context) - period = self.pool.get('account.period').browse(cr, uid, period_id, context) - self.pool.get('account.journal.period').create(cr, uid, { + journal = journal_obj.browse(cr, uid, journal_id, context) + period = period_obj.browse(cr, uid, period_id, context) + jour_period_obj.create(cr, uid, { 'name': (journal.code or journal.name)+':'+(period.name or ''), 'journal_id': journal.id, 'period_id': period.id @@ -1095,7 +1079,7 @@ class account_move_line(osv.osv): def _update_check(self, cr, uid, ids, context={}): done = {} for line in self.browse(cr, uid, ids, context): - if line.move_id.state<>'draft': + if line.move_id.state <> 'draft': raise osv.except_osv(_('Error !'), _('You can not do this modification on a confirmed entry ! Please note that you can just change some non important fields !')) if line.reconcile_id: raise osv.except_osv(_('Error !'), _('You can not do this modification on a reconciled entry ! Please note that you can just change some non important fields !')) @@ -1107,7 +1091,10 @@ class account_move_line(osv.osv): def create(self, cr, uid, vals, context=None, check=True): account_obj = self.pool.get('account.account') - tax_obj=self.pool.get('account.tax') + tax_obj = self.pool.get('account.tax') + move_obj = self.pool.get('account.move') + cur_obj = self.pool.get('res.currency') + journal_obj = self.pool.get('account.journal') if context is None: context = {} self._check_date(cr, uid, vals, context, check) @@ -1118,21 +1105,19 @@ class account_move_line(osv.osv): if 'period_id' in vals: context['period_id'] = vals['period_id'] if ('journal_id' not in context) and ('move_id' in vals) and vals['move_id']: - m = self.pool.get('account.move').browse(cr, uid, vals['move_id']) + m = move_obj.browse(cr, uid, vals['move_id']) context['journal_id'] = m.journal_id.id context['period_id'] = m.period_id.id self._update_journal_check(cr, uid, context['journal_id'], context['period_id'], context) move_id = vals.get('move_id', False) - journal = self.pool.get('account.journal').browse(cr, uid, context['journal_id']) - is_new_move = False + journal = journal_obj.browse(cr, uid, context['journal_id']) if not move_id: if journal.centralisation: #Check for centralisation res = self._check_moves(cr, uid, context) if res: vals['move_id'] = res[0] - if not vals.get('move_id', False): if journal.sequence_id: #name = self.pool.get('ir.sequence').get_id(cr, uid, journal.sequence_id.id) @@ -1141,12 +1126,10 @@ class account_move_line(osv.osv): 'period_id': context['period_id'], 'journal_id': context['journal_id'] } - move_id = self.pool.get('account.move').create(cr, uid, v, context) + move_id = move_obj.create(cr, uid, v, context) vals['move_id'] = move_id else: raise osv.except_osv(_('No piece number !'), _('Can not create an automatic sequence for this piece !\n\nPut a sequence in the journal definition for automatic numbering or create a sequence manually for this piece.')) - is_new_move = True - ok = not (journal.type_control_ids or journal.account_control_ids) if ('account_id' in vals): account = account_obj.browse(cr, uid, vals['account_id']) @@ -1161,18 +1144,15 @@ class account_move_line(osv.osv): if a.id == vals['account_id']: ok = True 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 'amount_currency' not in vals and account.currency_id.id != account.company_id.currency_id.id: vals['currency_id'] = account.currency_id.id - cur_obj = self.pool.get('res.currency') ctx = {} if 'date' in vals: ctx['date'] = vals['date'] vals['amount_currency'] = cur_obj.compute(cr, uid, account.company_id.currency_id.id, - account.currency_id.id, vals.get('debit', 0.0)-vals.get('credit', 0.0), - context=ctx) + account.currency_id.id, vals.get('debit', 0.0)-vals.get('credit', 0.0), context=ctx) if not ok: raise osv.except_osv(_('Bad account !'), _('You can not use this general account in this journal !')) @@ -1188,9 +1168,9 @@ class account_move_line(osv.osv): 'journal_id': journal.analytic_journal_id.id, 'ref': vals.get('ref', False), 'user_id': uid - })] + })] - result = super(osv.osv, self).create(cr, uid, vals, context) + result = super(osv.osv, self).create(cr, uid, vals, context=context) # CREATE Taxes if vals.get('account_tax_id', False): tax_id = tax_obj.browse(cr, uid, vals['account_tax_id']) @@ -1207,7 +1187,6 @@ class account_move_line(osv.osv): account_id = 'account_collected_id' base_sign = 'base_sign' tax_sign = 'tax_sign' - tmp_cnt = 0 for tax in tax_obj.compute_all(cr, uid, [tax_id], total, 1.00).get('taxes'): #create the base movement @@ -1236,7 +1215,6 @@ class account_move_line(osv.osv): } if data['tax_code_id']: self.create(cr, uid, data, context) - #create the VAT movement data = { 'move_id': vals['move_id'], @@ -1258,11 +1236,11 @@ class account_move_line(osv.osv): del vals['account_tax_id'] if check and ((not context.get('no_store_function')) or journal.entry_posted): - tmp = self.pool.get('account.move').validate(cr, uid, [vals['move_id']], context) + tmp = move_obj.validate(cr, uid, [vals['move_id']], context) if journal.entry_posted and tmp: - rs = self.pool.get('account.move').button_validate(cr,uid, [vals['move_id']],context) + move_obj.button_validate(cr,uid, [vals['move_id']], context) return result + account_move_line() # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account/account_report.xml b/addons/account/account_report.xml index c9f7cc6cf66..6090fe6fbc9 100644 --- a/addons/account/account_report.xml +++ b/addons/account/account_report.xml @@ -45,7 +45,7 @@ tree,form - + @@ -1445,7 +1445,7 @@ action="action_move_journal_line" id="menu_action_move_journal_line_form" parent="account.menu_finance_entries" - groups="group_account_user" + groups="group_account_user,group_account_manager" sequence="5"/> @@ -1712,7 +1712,7 @@ + parent="account.menu_configuration_misc" groups="base.group_extended,group_account_manager"/> - - - - - - - - - - - account.report.report.tree.simple - account.report.report - tree - - - - - - - - - - Custom reporting - account.report.report - form - tree,form - - - - - - - - - account.report.report.tree - account.report.report - tree - - child_ids - - - - - - - - - - - - Custom Reporting - account.fiscalyear - tree - - [('parent_id','=',False)] - - - - - - Fiscal Statements reporting - account.fiscalyear - tree - - [('type','=','fiscal'),('parent_id','=',False)] - - - - - Indicators reporting - account.fiscalyear - tree - - [('type','=','indicator'),('parent_id','=',False)] - - - - - Other reports - account.fiscalyear - tree - - [('type','=','other'),('parent_id','=',False)] - - - - - account.report.history1 - account.report.history - tree - - - - - - - - - - - - account.report.history2 - account.report.history - form - -
- - - - - - -
- - - account.report.history3 - account.report.history - graph - - - - - - - - - - - - - - tree_but_open - account.report.report - Open account history - - - - - - diff --git a/addons/account_report/account_wizard.xml b/addons/account_report/account_wizard.xml deleted file mode 100644 index c731b89a34b..00000000000 --- a/addons/account_report/account_wizard.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/addons/account_report/board_account_report_view.xml b/addons/account_report/board_account_report_view.xml deleted file mode 100644 index 633f4274f44..00000000000 --- a/addons/account_report/board_account_report_view.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - diff --git a/addons/account_report/i18n/account_report.pot b/addons/account_report/i18n/account_report.pot deleted file mode 100644 index 4e81259e030..00000000000 --- a/addons/account_report/i18n/account_report.pot +++ /dev/null @@ -1,521 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01:51+0000\n" -"PO-Revision-Date: 2009-08-28 16:01:51+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: \n" -"Plural-Forms: \n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "When the indicators are printed, if one indicator is set with this field to True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Note: The second arguement 'fiscalyear' and 'period' are optional arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "If the field is set to True, information will be printed as a Graph, otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" - diff --git a/addons/account_report/i18n/ar.po b/addons/account_report/i18n/ar.po deleted file mode 100644 index 747d37d7e37..00000000000 --- a/addons/account_report/i18n/ar.po +++ /dev/null @@ -1,529 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.4\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-02-03 06:24+0000\n" -"Last-Translator: <>\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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/bg.po b/addons/account_report/i18n/bg.po deleted file mode 100644 index 3f0a083e827..00000000000 --- a/addons/account_report/i18n/bg.po +++ /dev/null @@ -1,535 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-09-08 14:32+0000\n" -"Last-Translator: lem0na \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Показател" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Избор на PDF файл" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Оператори:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Родител" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Дебит на сметка:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Други" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "balance(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Бележки" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Ограничение на показател за добро качество:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Много лошо" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Стойност" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Ограничение на показател за лошо качество" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Лошо" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Избор на PDF файл на който ще бъдат отпечатани показателите" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Ограничение на показател за добро качество:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Ограничение на показател за лошо качество" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Много лошо" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "История на индикатора" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "credit(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Сума на справката:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Парични отчети" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Напред" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Печат" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Вид" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Отпечатване на показатели в PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Код на данък от сметка:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Добре" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "История на справка за сметка" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Невалиден XML за преглед на архитектурата" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Избор на критерии" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "debit(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Кредит от сметка:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" -"Избор на критерии на основата на който показателите ще бъдат отпечатани." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Ограничение на показател за лошо качество" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Много добре" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Забележка" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Валута:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Състояние" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Нормален" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Пример: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Активен" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Показване като дърво" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Справки за сметка" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Баланс от сметка:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Израз :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "report('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Израз" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Счетоводна справка" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Формула за нови записи от справка" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Код" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "временен" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Период" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Общи" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Леганда на операторите" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Отказ" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални " -"символи!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Печат на показател" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Дата на отпечатване:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Показатели в PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "на" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Счетоводна справка" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Ограничение на показател за добро качество" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Бележка: Втория аргумент 'fiscalyear' (финансова година) и 'period' (период) " -"са незадължителни. Ако стойността е -1, предишната финансова година или " -"период се вземат предвид" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Справка за финансов отчет" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Показатели" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Печат на показатели в PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Справка за показатели" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Име" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Избор на критерии" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "tax_code(['ACCOUNT_TAX_CODE',],period)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Финансова година" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Допълнителна справка" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Изглед" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Възвращаемост за състояние" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Последователност" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Сума" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/bs.po b/addons/account_report/i18n/bs.po deleted file mode 100644 index c59fe35ffee..00000000000 --- a/addons/account_report/i18n/bs.po +++ /dev/null @@ -1,541 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-02 22:09+0000\n" -"Last-Translator: mga (Open ERP) \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Indikator" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Odaberi PDF datoteku" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Neispravan naziv modela u definiciji zadatka." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operatori:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Sintetika" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Prikaži kao grafikon" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Dugovanje konta:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Ostali" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Tablični sažetak" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Bilješke" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Limit indikatora dobrote:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Vrlo loše" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Vrijednost" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Limit indikatora za loše:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Loše" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Odaberi PDF datoteku na kojoj će indikatori biti ispisani" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Limit indikatora dobrog:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Limit indikatora lošeg" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Vrlo loše" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Istorija indikatora" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Iznos izvještaja:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Fiskalni izvod" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Slijedeći" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Izvještavanje za računovodstvo" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Ispis" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Vrsta" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Ispiši indikatore u PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Porezni broj konta" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Dobro" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Istorija izvještaja konta" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Neodgovarajući XML za arhitekturu prikaza!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Ova vrijednost postavlja limit lošeg." - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Odaberite kriterij" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Potraživanje konta:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "Odaberite kriterije prema kojima će indikatori biti ispisani." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Limit indikatora lođeg:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Vrlo dobro" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Bilješka" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Valuta:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Status" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Kad su indikatori ispisani, ako je jedan od indikatora postavljen sa ovim " -"poljem, prikazat će jedan ili više grafova sa svim svojim podindikatorima u " -"stablu." - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normalno" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Npr: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Aktivan" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Prikaz stabla" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Bazirano na fiskalnim godinama" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Izvještavanje za konto" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Saldo konta:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Izraz :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Izraz" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Izvještavanje za računovodsvto" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Formula nove stavke izvještavanja" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Šifra" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "temp" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Period" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Općenito" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Legenda operatora" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Otkaži" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Potomci" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Naziv objekta mora počinjati sa x_ i ne smije sadržavati specijalne znakove!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Ova vrijednost postavlja limit za dobro." - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Ispis indikatora" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Datum ispisa:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Indikatori u PDF-u" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Računovodstveni izvještaj" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Limit indikatora dobroga" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Ostali izvještaji" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Napomena: Drugi argumenti 'fiscalyear' i 'period' su opcionalni. Ako je " -"vrijdnost -1, uzima se prethodna fiskalna gofina odn. period." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Izještavanje fiskalnim izvodima" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Bazirano na fiskalnim periodima" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Indikatori" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Ipis indikatora u PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Izvještavanje indikatora" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Naziv" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Odaberite kriterij" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Fisklana godina" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Prilagođeno izvještavanje" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Stranica" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Prikaz" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Indikatori -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Ukoliko je ovo polje postavljeno, informacija će biti ispisana kao grafikon. " -"U suprotnom, biti će ispisana kao niz." - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Povratna vrijednost statusa" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Sekvenca" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Iznos" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"Finansijsko i računovodstveno izvještavanje\n" -" Fiskalni izvodi\n" -" Indikator\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Fiskalni izvod" diff --git a/addons/account_report/i18n/ca.po b/addons/account_report/i18n/ca.po deleted file mode 100644 index e6a98e3d7ba..00000000000 --- a/addons/account_report/i18n/ca.po +++ /dev/null @@ -1,544 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-11-17 09:27+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Indicador" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Seleccioneu un fitxer PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Nom de model no vàlid en la definició de l'acció." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operadors:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Pare" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Mostra com gràfic" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Deure del compte:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Altres" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "balance(['ACCOUNT_CODE',],exercicifiscal)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Resum tabular" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Notes" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Límit indicador de bona situació:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Molt dolent" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Valor" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Límit indicador de mala situació:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Dolent" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Seleccioneu un fitxer PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Límit indicador de bona situació:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Límit indicador de mala situació" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Molt dolent" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Historial de l'indicador" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "credit(['ACCOUNT_CODE',],exercicifiscal)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Import de l'informe:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Apunts fiscals" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Següent" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Informe per comptabilitat" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Imprimeix" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tipus" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Imprimeix indicadors en PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Códi compte impostos:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Bo" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Historial de l'informe del compte" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML invàlid per a la definició de la vista!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Aquest valor estableix el límit més dolent." - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Seleccioneu els criteris" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "debit(['ACCOUNT_CODE',],exercicifiscal)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Haver del compte:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" -"Seleccioneu els criteris en que els indicadors es basaran per imprimir-se." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Límit indicador de mala situació:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Molt Bo" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Nota" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Moneda:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Posició" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Quan s'imprimeixen els indicadors, si un indicador té aquesta opció marcada, " -"es mostra un gràfic addicional amb tots els seus fills en arbre." - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normal" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Exemple: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Actiu" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Mostra arbre" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Basat en exercicis fiscals" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Informe de comptabilitat" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Balanç del compte:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Expressió :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "report('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Expressió" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Informe de comptabilitat" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Nou informe de comptabilitat" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Codi" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "temp" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Període" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "General" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Llegenda d'operadors" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Cancel·la" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Fills" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter " -"especial!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Aquest valor estableix el límit més bo." - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Imprimeix indicadors" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Data impressió:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Indicadors en PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "a les" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Informe de comptabilitat" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Límit indicador de bona situació" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Altres informes" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Nota: El segon argument 'exercicifiscal' i 'període' son arguments " -"opcionals. Si el valor es -1, es considera l'exercici fiscal o període " -"anterior." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Informe apunts fiscals" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Basat en períodes fiscals" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Indicadors" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Imprimeix indicadors en PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Informe d'indicadors" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Nom" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Selecciona criteris" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "tax_code(['ACCOUNT_TAX_CODE',],període)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Exercici fiscal" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Informe a mida" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Pàgina" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Vista" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Indicadors -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Si es marca aquesta opció, la informació serà impresa en forma de gràfic, en " -"cas contrari com una taula." - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Valor retorn de l'estat" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Seqüència" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Import" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"Informes financers i comptables\n" -" Declaracions fiscals\n" -" Indicadors\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Declaració fiscal" diff --git a/addons/account_report/i18n/cs.po b/addons/account_report/i18n/cs.po deleted file mode 100644 index 747d37d7e37..00000000000 --- a/addons/account_report/i18n/cs.po +++ /dev/null @@ -1,529 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.4\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-02-03 06:24+0000\n" -"Last-Translator: <>\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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/de.po b/addons/account_report/i18n/de.po deleted file mode 100644 index 44608284a84..00000000000 --- a/addons/account_report/i18n/de.po +++ /dev/null @@ -1,541 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-11-22 18:48+0000\n" -"Last-Translator: Ferdinand @ ChriCar \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Indikator" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Wähle PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Ungültiger Modellname in der Aktionsdefinition." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operatoren:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "(Ober-)Konto" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Als Graphik anzeigen" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Konto Forderungen" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Andere" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "Saldo(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Tabellenförmige Zusammenfassung" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Bemerkung" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "Indiziecredit(['ACCOUNT_CODE',],fiscalyear)rung Podsitives Limit" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Sehr schlecht" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Wert" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Schlecht- Indikator" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Schlecht" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "wähle pdf aus, auf dem die Indikatoren ausgegeben werden." - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Gut - Indikator" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Schlecht - Indikator" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Sehr schlecht" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Indikatoren Historie" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "Haben(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Report Betrag" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Steuererklärung" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Weiter" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Bericht für Buchhaltung" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Druck" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Typ" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Druck Indikatoren in PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Steuerkonto" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Gut" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Finanzkonto Historie" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Fehlerhafter xml Code für diese Ansicht!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Dieser Wert setzt das Limit für \"Schlechtheit\"" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Wähle Kriterium" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "Soll (['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Habenkonto" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "Wähle die Kriterien aus die zum Indikator ausgegeben werden sollen" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Schlecht Indikator" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Sehr gut" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Bemerkung" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Währung:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Status" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Wenn Indikatoren gedruckt werden und dieses Feld Wahr ist, dann wird eine " -"weitere Graphik mit all den Abhängigkeiten gezeigt." - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normal" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Beispiel: (Saldo(['6','45'],-1) - Haben(['7'])) / Bericht('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Aktiv" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Baum Ansicht" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Basierend auf Fiskaljahr" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Finanzreports" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Finanzkonto Saldo" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Ausdruck :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "Report('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Ausdruck" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Finanzberichte" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Neue Report Formel" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Kurzbez." - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "temp" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Periode" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Allgemein" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Legende Operatoren" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Abbrechen" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Kindelemente" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen " -"beinhalten" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Dieser Wert setzt die Grenze für die \"Güte\"" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Druck Indikatoren" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Datum Druck:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Indikatoren in PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "von" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Report Finanzen" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Gut - Indikator Limit" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "andere Reports" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Hinweis: Das zweite Argument 'Wirtschaftsjahr' und 'Periode' sind optional. " -"Falls der Wert -1 ist, wird das vorherige Jahr oder Periode genommen." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Steuererklärung Reporting" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Basierend auf Perioden" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Indikatoren" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Druck Indikatoren in PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Indikatoren Report" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Bezeichnung" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Wähle Kriterien" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "Steuerkonto(['ACCOUNT_TAX_CODE',],period)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Wirtschaftsjahr" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Benutzerdefinierter Bericht" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Seite" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Ansicht" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Kennzeichen -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Wenn diese Feld auf Wahr gesetzt wird, dann wird eine Graphik gedruckt sonst " -"ein Report" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Ausgabewert für Status" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Sequenzer" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Betrag" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"Finanz und Rechnungswesen Reports\n" -" Finanzberichte\n" -" Indikatoren\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Finanzbericht" diff --git a/addons/account_report/i18n/el.po b/addons/account_report/i18n/el.po deleted file mode 100644 index 30371ba66c5..00000000000 --- a/addons/account_report/i18n/el.po +++ /dev/null @@ -1,565 +0,0 @@ -# Greek translation for openobject-addons -# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2009. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-02 22:10+0000\n" -"Last-Translator: mga (Open ERP) \n" -"Language-Team: Greek \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Δείκτης" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Επιλέξτε ένα Αρχείο PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Λανθασμένο όνομα μοντέλου στην δήλωση ενέργειας" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Χρήστες:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Κατηγορία" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Προβολή Ώς Γράφημα" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Χρέωση Λογαριασμού:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Άλλοι" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "ισοζύγιο(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Πίνακας Σύνοψης" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Σημειώσεις" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Όριο Καλύτερη Δείκτη:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Πολύ κακό" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Αξία" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Όριο Χειρότερου Δείκτη:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Κακό" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Επιλέξτε το αρχείο PDF που θα εκτυπωθούν οι δείκτες." - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Όριο Καλύτερου Δείκτη:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Όριο Χειρότερου Δείκτη" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Πολύ Κακό" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Ιστορικό Δείκτη" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "πίστωση(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Ποσό Αναφοράς:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Οικονομικές Δηλώσεις" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Επόμενο" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Αναφορές για λογιστική" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Εκτύπωση" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Τύπος" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Εκτύπωση Δεικτών σε PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Κώδικας Λογαριασμού Φόρου:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Καλό" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Ιστορικό Αναφοράς Λογαριασμού" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Άκυρο XML για αρχιτεκτονική όψης!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Αυτή η τιμή θέτει το όριο χειρότερης τιμής." - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Επιλέξτε Κριτήριο" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "χρέωση(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Πίστωση Λογαριασμού:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "Επιλέξτε κριτήριο βασισμένο στους δείκτες που θα εκτυπωθούν." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Δείκτης Χειρότερου Ορίου:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Πολύ Καλό" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Σημείωση" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Νόμισμα:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Κατάσταση" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Όταν οι δείκτες εκτυπωθούν, εάν ένας δείκτης έχει ρυθμιστεί με αυτό το πεδίο " -"ως Αληθές, τότε θα προβληθούν ένα ή περισσότερα γραφήματα με όλες τις " -"υποκατηγορίες σε δενδροειδή μορφή" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Κανονικό" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" -"Παράδειγμα: (ισοζύγιο(['6','45'],-1) - πίστωση(['7'])) / αναφορά('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Ενεργό" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Προβολή Δένδρου" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Βασισμένο σε Λογιστικά Έτη" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Αναφορές λογαριασμού" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Ισοζύγιο Λογαριασμού:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Έκφραση :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "αναφορά('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Έκφραση" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Αναφορές λογιστικής" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "New Reporting Item Formula" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Κώδικας" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "temp" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Περίοδος" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Γενικά" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Legend of operators" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Άκυρο" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Υποκατηγορίες" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Το όνομα αντικειμένου θα πρέπει να ξεκινάει με x_ και να μην περιέχει " -"ειδικούς χαρακτήρες!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Αυτή η τιμή θέτει το όριο Καλύτερης δείκτη." - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Εκτύπωση Δεικτών" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Ημερομηνία εκτύπωσης;" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Δείκτες σε PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "σε" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Αναφορά Λογιστικής" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Όριο Καλύτερου Δείκτη" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Άλλες αναφορές" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Σημείωση: Το δεύτερο επιχείρημα 'fiscalyear' και 'period' είναι προαιρετικό. " -"Αν η τιμή είναι -1, περασμένη λογιστικά έτη ή περίοδοι λαμβάνονται υπόψη." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Αναφορές Λογιστικών Δηλώσεων" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Βασισμένο σε Λογιστικές Περίοδοι" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Δείκτες" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Εκτύπωση Δεικτών σε PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Αναφορές δεικτών" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Όνομα" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Επιλέξτε Κριτήριο" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "tax_code(['ACCOUNT_TAX_CODE',],period)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Λογιστικό Έτος" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Custom αναφορές" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Σελίδα" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Όψη" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Δείκτες -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Άν το πεδίο είναι ρυθμισμένο σε Αληθές, οι πληροφορίες θα εκτυπωθούν ως " -"γράφημα, ειδάλλως ως πίνακας." - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Τιμή επιστροφής για κατάσταση" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Αλληλουχία" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Ποσό" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"ΟΙκονοομικές και λογιστικές αναφορές\n" -" Λογιστικές δηλώσεις\n" -" Δείκτες\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Λογιστική Δήλωση" - -#, python-format -#~ msgid "Please select maximum 8 records to fit the page-width." -#~ msgstr "" -#~ "Παρακαλώ επιλέξτε το μέγιστο 8 εγγραφές για να χωρέσουν στο πλάτος σελίδας." - -#, python-format -#~ msgid "Error !" -#~ msgstr "Σφάλμα!" - -#, python-format -#~ msgid "" -#~ "You cannot delete an indicator history record. You may have to delete the " -#~ "concerned Indicator!" -#~ msgstr "" -#~ "Δεν μπορείτε να διαγράψετε μιά εγγραφή απο το ιστορικό του δείκτη. Ίσως " -#~ "χρειαστεί να διαγράψετε τον εν λόγω δείκτη!" - -#, python-format -#~ msgid "User Error!" -#~ msgstr "Σφάλμα Χρήστη!" diff --git a/addons/account_report/i18n/es.po b/addons/account_report/i18n/es.po deleted file mode 100644 index 3b9a5fcaf78..00000000000 --- a/addons/account_report/i18n/es.po +++ /dev/null @@ -1,544 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-11-17 09:27+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Indicador" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Seleccione un archivo PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Nombre de modelo no válido en la definición de acción." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operadores:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Padre" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Mostrar como gráfico" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Debe de la cuenta:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Otros" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "balance(['ACCOUNT_CODE',],ejerciciofiscal)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Resumen tabular" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Notas" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Límite indicador de buena situación:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Muy malo" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Valor" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Límite indicador de mala situación:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Malo" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Seleccione un archivo PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Límite indicador de buena situación:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Límite indicador de mala situación" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Muy Malo" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Historial del indicador" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "credit(['ACCOUNT_CODE',],ejerciciofiscal)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Importe del informe:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Apuntes fiscales" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Siguiente" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Informes para contabilidad" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Imprimir" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Imprimir indicadores en PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Código cuenta impuestos:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Bueno" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Historial del informe de la cuenta" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "¡XML inválido para la definición de la vista!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Este valor establece el límite de maldad." - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Seleccione los criterios" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "debit(['ACCOUNT_CODE',],ejerciciofiscal)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Haber de la cuenta:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" -"Seleccione los criterios en que los indicadores se basarán para imprimirse." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Límite indicador de mala situación:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Muy Bueno" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Nota" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Moneda:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Posición" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Cuando se imprimen los indicadores, si un indicador tiene esta opción " -"marcada, se muestra un gráfico adicional con todos sus hijos en árbol" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normal" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Ejemplo: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Activo" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Mostrar árbol" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Basado en ejercicios fiscales" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Informe contable" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Balance de la cuenta:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Expresión :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "report('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Expresión" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Informe de contabilidad" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Nuevo informe de contabilidad" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Código" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "temp" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Período" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "General" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Leyenda de operadores" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Hijos" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -"especial!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Este valor establece el límite de bondad." - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Imprimir indicadores" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Fecha impresión:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Indicadores en PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "a las" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Informe de contabilidad" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Límite indicador de buena situación" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Otros informes" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Nota: El segundo argumento 'ejerciciofiscal' y 'período' son argumentos " -"opcionales. Si el valor es -1, se considera el ejercicio fiscal o período " -"anterior." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Informe apuntes fiscales" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Basado en periodos fiscales" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Indicadores" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Imprimir indicadores en PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Informe de indicadores" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Nombre" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Seleccionar criterios" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "tax_code(['ACCOUNT_TAX_CODE',],período)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Ejercicio fiscal" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Informe a medida" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Página" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Vista" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Indicadores -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Si se marca esta opción, la información será impresa como un gráfico, de lo " -"contrario como una tabla." - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Valor devuelto del estado" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Secuencia" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Importe" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"Informes financieros y contables\n" -" Declaraciones fiscales\n" -" Indicadores\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Declaración fiscal" diff --git a/addons/account_report/i18n/es_AR.po b/addons/account_report/i18n/es_AR.po deleted file mode 100644 index 5a3af8c79c2..00000000000 --- a/addons/account_report/i18n/es_AR.po +++ /dev/null @@ -1,564 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-09-14 20:13+0000\n" -"Last-Translator: Silvana Herrera \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: 2010-09-29 04:53+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Indicador" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Seleccione un archivo PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operadores:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Padre" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Mostrar como gráfico" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Debe de la cuenta:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Otros" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "Saldo(['ACCOUNT_CODE',],ejerciciofiscal)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Resumen tabular" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Notas" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Límite indicador de buena situación:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Muy malo" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Valor" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Límite indicador de mala situación:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Malo" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Seleccione el archivo PDF donde serán impresos los indicadores" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Límite indicador de buena situación:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Límite indicador de mala situación" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Muy Malo" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Historial del indicador" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "Haber(['ACCOUNT_CODE',],ejerciciofiscal)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Importe del Reporte:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Declaración fiscal" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Siguiente" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Reporte para contabilidad" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Imprimir" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Imprimir indicadores en PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Código de cuenta impuestos:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Bueno" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Historial del reporte de la cuenta" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML inválido para la definición de la vista!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Este valor establece el límite de mala situación." - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Seleccione los criterios" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "Debe(['ACCOUNT_CODE',],ejerciciofiscal)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Haber de la cuenta:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" -"Seleccione los criterios en que los indicadores se basarán para imprimirse." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Límite indicador de mala situación:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Muy Bueno" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Nota" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Moneda:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Estado" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Cuando se imprimen los indicadores, si un indicador tiene esta casilla " -"tildada, se muestra un gráfico adicional con todos sus hijos en árbol" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normal" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Ejemplo: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Activo" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Mostrar árbol" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Basado en ejercicios fiscales" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Reporte de cuentas" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Saldo de la cuenta:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Expresión :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "reporte('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Expresión" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Reporte de contabilidad" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Nuevo reporte de contabilidad" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Código" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "temp" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Período" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "General" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Leyenda de operadores" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Hijos" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"¡El nombre del objeto debe empezar con x_ y no contener ningún caracter " -"especial!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Este valor establece el límite de buena situación." - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Imprimir indicadores" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Fecha de impresión:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Indicadores en PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "en" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Reporte de contabilidad" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Límite indicador de buena situación" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Otros reportes" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Nota: El segundo argumento 'ejerciciofiscal' y 'período' son argumentos " -"opcionales. Si el valor es -1, se considera el ejercicio fiscal o período " -"anterior." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Reporte de declaraciones fiscales" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Basado en periodos fiscales" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Indicadores" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Imprimir indicadores en PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Reporte de indicadores" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Nombre" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Seleccionar criterios" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "tax_code(['ACCOUNT_TAX_CODE',],período)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Año Fiscal" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Reportes personalizados" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Página" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Vista" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Indicadores -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Si se tilda esta casilla, la información será impresa como gráfico, de lo " -"contrario como tabla." - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Valor devuelto del estado" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Secuencia" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Importe" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"Reportes financieros / contables\n" -" Declaraciones fiscales\n" -" Indicadores\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Declaración fiscal" - -#, python-format -#~ msgid "Please select maximum 8 records to fit the page-width." -#~ msgstr "" -#~ "Seleccione un máximo de 8 registros para que encaje en el ancho de página." - -#, python-format -#~ msgid "Error !" -#~ msgstr "¡Error!" - -#, python-format -#~ msgid "" -#~ "You cannot delete an indicator history record. You may have to delete the " -#~ "concerned Indicator!" -#~ msgstr "" -#~ "No puede eliminar un registro del historial del indicador. ¡Podría tener que " -#~ "eliminar el indicador implicado!" - -#, python-format -#~ msgid "User Error!" -#~ msgstr "¡Error de usuario!" diff --git a/addons/account_report/i18n/es_EC.po b/addons/account_report/i18n/es_EC.po deleted file mode 100644 index a6df24fb46f..00000000000 --- a/addons/account_report/i18n/es_EC.po +++ /dev/null @@ -1,544 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-09-17 17:45+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\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: 2010-09-29 04:53+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Indicador" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Seleccione un archivo PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Nombre de modelo no válido en la definición de acción." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operadores:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Padre" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Mostrar como gráfico" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Debe de la cuenta:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Otros" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "balance(['ACCOUNT_CODE',],ejerciciofiscal)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Resumen tabular" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Notas" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Límite indicador de buena situación:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Muy malo" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Valor" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Límite indicador de mala situación:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Malo" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Seleccione un archivo PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Límite indicador de buena situación:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Límite indicador de mala situación" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Muy Malo" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Historial del indicador" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "credit(['ACCOUNT_CODE',],ejerciciofiscal)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Importe del informe:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Apuntes fiscales" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Siguiente" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Informes para contabilidad" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Imprimir" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Imprimir indicadores en PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Código cuenta impuestos:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Bueno" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Historial del informe de la cuenta" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "¡XML inválido para la definición de la vista!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Este valor establece el límite de maldad." - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Seleccione los criterios" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "debit(['ACCOUNT_CODE',],ejerciciofiscal)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Haber de la cuenta:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" -"Seleccione los criterios en que los indicadores se basarán para imprimirse." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Límite indicador de mala situación:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Muy Bueno" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Nota" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Moneda:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Posición" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Cuando se imprimen los indicadores, si un indicador tiene esta opción " -"marcada, se muestra un gráfico adicional con todos sus hijos en árbol" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normal" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Ejemplo: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Activo" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Mostrar árbol" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Basado en ejercicios fiscales" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Informe contable" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Balance de la cuenta:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Expresión :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "report('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Expresión" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Informe de contabilidad" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Nuevo informe de contabilidad" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Código" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "temp" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Período" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "General" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Leyenda de operadores" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Hijos" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -"especial!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Este valor establece el límite de bondad." - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Imprimir indicadores" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Fecha impresión:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Indicadores en PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "a las" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Informe de contabilidad" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Límite indicador de buena situación" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Otros informes" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Nota: El segundo argumento 'ejerciciofiscal' y 'período' son argumentos " -"opcionales. Si el valor es -1, se considera el ejercicio fiscal o período " -"anterior." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Informe apuntes fiscales" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Basado en periodos fiscales" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Indicadores" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Imprimir indicadores en PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Informe de indicadores" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Nombre" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Seleccionar criterios" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "tax_code(['ACCOUNT_TAX_CODE',],período)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Ejercicio fiscal" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Informe a medida" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Página" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Vista" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Indicadores -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Si se marca esta opción, la información será impresa como un gráfico, de lo " -"contrario como una tabla." - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Valor devuelto del estado" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Secuencia" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Importe" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"Informes financieros y contables\n" -" Declaraciones fiscales\n" -" Indicadores\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Declaración fiscal" diff --git a/addons/account_report/i18n/et.po b/addons/account_report/i18n/et.po deleted file mode 100644 index 1a2e0543cca..00000000000 --- a/addons/account_report/i18n/et.po +++ /dev/null @@ -1,530 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-11-09 16:26+0000\n" -"Last-Translator: Fabien (Open ERP) \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Näitur" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Vali PDF fail" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Vigane mudeli nimi toimingu definitsioonis." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operaatorid:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Ülem" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Kuva graafikuna" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Konto deebet:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Muud" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Märkused" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Väga halb" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Väärtus" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Halvima näituri limiit:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Halb" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Parima näituri limiit:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Halvima näituri limiit" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Väga halb" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Näituri ajalugu" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Majandusaruanded" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Järgmine" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Trüki" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Liik" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Trüki näiturid PDF-ina" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Konto maksukood:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Hea" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Konto aruande ajalugu" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Vigane XML vaate arhitektuurile!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Vali kriteerium" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Konto krediit:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Halvima näituri limiit:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Väga hea" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Märkus" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Valuuta:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Staatus" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normaalne" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Aktiivne" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Näita puud" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Paseerub Majandusaastal" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Konto aruandlus" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Konto balanss:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Avaldis :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Avaldis" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Raamatupidamise aruandlus" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Kood" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Periood" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Üldine" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Loobu" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Trüki näiturid" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Trükkimise kuupäev:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Näiturid PFD-ina" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Raamatupidamise aruanne" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Parima näituri limiit" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Näiturid" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Trüki näiturid PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Näiturite aruanne" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Nimi" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Vali kriteerium" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Majandusaasta" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Kohandatud aruandlus" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Leht" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Vaade" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Näiturid -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Järjekord" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Summa" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/fi.po b/addons/account_report/i18n/fi.po deleted file mode 100644 index 7c16c30dedc..00000000000 --- a/addons/account_report/i18n/fi.po +++ /dev/null @@ -1,534 +0,0 @@ -# Finnish translation for openobject-addons -# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2009. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-02 22:10+0000\n" -"Last-Translator: mga (Open ERP) \n" -"Language-Team: Finnish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Indikaattori" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Valitse PDF -tiedosto" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operaattorit:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Näytä kuvaajana" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Taulukko yhteenveto" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "Hyvyyden ilmaisimen raja:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Todella huono" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "Huonouden ilmaisimen raja:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Valitse PDF -tiedosto mihin ilmaisimet tulostetaan" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Todella huono" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Ilmaisinhistoria" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Tilin verokoodi" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Tämä arvo määrittää huonouden rajan" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Valitse kriteeri" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Todella hyvä" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Kun ilmaisimia tulostetaan ja jos jonkin ilmaisimen tämän kentän arvoksi on " -"asetettu \"Tosi\", näytetään kuvaaja enemmän, jossa näkyy periytymät puu -" -"muodossa" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Näytä puu" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Määritelmä:" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Uuden raportointikohdan kaava" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "väliaikainen" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Operaattoreiden historia" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Tämä arvo määrittää hyvyyden rajan" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Tulosta ilmaisimet" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Muut raportit" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Ilmaisimet" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Valitse kriteeri" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Omaehtoinen raportointi" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Jos tämän kentän arvo on tosi, tiedot tulostetaan kuvaajana, muutoin rivinä" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/fr.po b/addons/account_report/i18n/fr.po deleted file mode 100644 index b8952b08689..00000000000 --- a/addons/account_report/i18n/fr.po +++ /dev/null @@ -1,534 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_reporting -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-09-16 14:44+0000\n" -"Last-Translator: Fabien (Open ERP) \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Indicateur" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Sélectionnez un fichier PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Opérateurs" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Parent" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Autres" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Résumé tabulaire" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Notes" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Très mauvais" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Valeur" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Mauvais" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" -"Sélectionnez le fichier PDF sur lequel les indicateurs seront imprimés." - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Très mauvais" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Historique de l'Indicateur" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Extraits fiscaux" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Suivant" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Imprimer" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Type" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Imprimer les Indicateurs dans le fichier PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Bon" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML non valide pour l'architecture de la vue" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Choisissez les critères" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" -"Sélectionnez les critères sur lesquels seront basés les indicateurs à " -"imprimer." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Très bien" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Note" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Devise" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Status" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normal" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Actif" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Basé sur les Années Fiscales" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Rapport de compte" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Expression :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "Rapport comptable" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Expression" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Rapport comptable" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Nouvelle formule" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Code" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Période" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Général" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Légende des opérateurs" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Annuler" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères " -"spéciaux !" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Imprimer les Indicateurs" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Date d'impression" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Indicateurs en PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "à" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Rapport comptable" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Rapport des extraits fiscaux" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Basé sur les Périodes Fiscales" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Indicateurs" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Imprimer les Indicateurs dans le fichier PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Rapport d'indicateurs" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Nom" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Sélectionnez les critères" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Année Fiscale" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Personnaliser un rapport" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Page" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Vue" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Indicateurs -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Valeur de retour pour status" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Séquence" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Montant" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/hr.po b/addons/account_report/i18n/hr.po deleted file mode 100644 index 092b19ff066..00000000000 --- a/addons/account_report/i18n/hr.po +++ /dev/null @@ -1,529 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-09-07 07:18+0000\n" -"Last-Translator: Goran Kliska (Aplikacija d.o.o.) \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Pokazatelj" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Odaberite PDF datoteku" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Pogrešno ime modela u definiciji akcije." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operatori:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Nadređeni" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Prikaži kao grafikon" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Dugovni konto:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Ostalo" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Vrlo loše" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Vrijednost" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Loše" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Odaberite PDF datoteku na kojoj će biti ispisani pokazatelji" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Granica pokazivača dobrote" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Granica pokazivača slabosti" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Vrlo loše" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Povijest pokazivača" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Iznos izvješća:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Fiskalni izvodi" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Slijedeći" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Računovodstvena izvješća" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Ispiši" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tip" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Ispiši pokazivače u PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Dobro" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Neispravan XML za arhitekturu prikaza!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Odaberite uvjet" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Potražni konto" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "Odaberite uvjet zasnovan na pokazivačima koji će biti ispisani." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Granica pokazivača slabosti" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Vrlo dobro" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/hu.po b/addons/account_report/i18n/hu.po deleted file mode 100644 index 747d37d7e37..00000000000 --- a/addons/account_report/i18n/hu.po +++ /dev/null @@ -1,529 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.4\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-02-03 06:24+0000\n" -"Last-Translator: <>\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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/id.po b/addons/account_report/i18n/id.po deleted file mode 100644 index 147c898e112..00000000000 --- a/addons/account_report/i18n/id.po +++ /dev/null @@ -1,529 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-11-09 13:44+0000\n" -"Last-Translator: <>\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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/it.po b/addons/account_report/i18n/it.po deleted file mode 100644 index 2d3a600a78b..00000000000 --- a/addons/account_report/i18n/it.po +++ /dev/null @@ -1,543 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-10-12 07:46+0000\n" -"Last-Translator: OpenERP Administrators \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: 2010-10-13 04:58+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Indicatore" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Seleziona un file PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Nome del modello non valido nella definizione dell'azione." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operatori:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Padre" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Visualizza come Grafico" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Conto Debito:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Altri" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "Copy text \t balance(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Tabella di Riepilogo" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Note" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Limite Indicatore di bontà" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Pessimo" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Valore" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Limite indicatore del Peggiore" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Cattivo" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Seleziona il file PDF su cui gli indicatori saranno stampati" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Limite dell'indicatore di bontà:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Limite indicatore del Peggiore" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Pessimo" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Storico dell'indicatore" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "credit(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Report Importi:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Dichiarazione Fiscale" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Prossimo" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Stampe per personale contabile" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Stampa" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Stampa gli indicatori in PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Codice conto Tasse" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Buono" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Report Storico Conti" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML non valido per la struttura della vista" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Questo valore imposta il valore limite del peggiore." - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Seleziona il criterio" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "debit(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Conto Credito" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "Seleziona il criterio basato su quali indicatori verranno stampati" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Limite Indicatore del peggiore" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Molto Buono" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Nota" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Valuta:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Stato" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Quando gli 'indicatori saranno stampati, se un indicatore è impostato, con " -"questo campo, a Vero, allora verranno visualizzati uno o più grafici con " -"tuttii i figli nell'albero" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normale" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Esemio: (saldo(['6','45'],-1) - credito(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Attivo" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Visualizza ad Albero" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Basato su anni fiscali" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Stampe del piano dei conti" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Saldo Contabile:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Espressione :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "report('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Espressione" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Report per personale Contabile" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Nuova Formula di Riporto Oggetti" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Codice" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "temporaneo" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Periodo" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Generale" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Legenda degli operatori" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Annulla" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Figlio" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri " -"speciali!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Questo valore imposta il limite della Bontà." - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Stampa Indicatori" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Data di stampa:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Indicatori in PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "a" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Stampe per personale contabile" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Limite dell'indicatore di bontà" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Altri Report" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Nota: Il secondo argomento 'Anno Fiscale' e 'Periodo' sono considerati " -"opzionali. Se il valore è -1, sono presi in considerazione i precedenti Anni " -"Fiscali e Periodo." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Stampa dichiarazioni fiscali" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Basato su Periodi Fiscali" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Indicatori" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Stampa indicatori con PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Indicatori report" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Nome" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Seleziona il criterio" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "tax_code(['ACCOUNT_TAX_CODE',],period)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Anno Fiscale" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Report personalizzato" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Pagina" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Visualizza" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Indicatori -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Se il campo è impostato a Vero, l'informazione verrà stampante come un " -"Grafico, altrimenti come una lista." - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Valore ritornato per lo Stato" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Sequenza" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Importo" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"Stampe contabili e finanziarie\n" -" Dichiarazioni fiscali\n" -" Indicatori\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Dichiarazione Fiscale" diff --git a/addons/account_report/i18n/ko.po b/addons/account_report/i18n/ko.po deleted file mode 100644 index e166cf110d2..00000000000 --- a/addons/account_report/i18n/ko.po +++ /dev/null @@ -1,554 +0,0 @@ -# Korean translation for openobject-addons -# Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2009. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-09-08 13:56+0000\n" -"Last-Translator: ekodaq \n" -"Language-Team: Korean \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "지시자" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "PDf 파일 선택" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "오퍼레이터:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "페어런트" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "그래프로 표시" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "차변 계정:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "기타" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "밸런스(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "표 요약" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "노트" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= 좋음 지시자 리미트:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "매우 나쁨" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "값" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= 나쁨 지시자 리미트:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "나쁨" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "인디케이터가 인쇄될 PDF 파일 선택" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> 좋음 지시자 리미트:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "나쁨 지시자 리미트" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "매우 나쁨" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "지시자 히스토리" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "리포트 금액" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "회계 보고서" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "다음" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "회계 보고" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "인쇄" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "타입" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "PDF 인쇄 지시자" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "계정 세금 코드:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "좋음" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "계정 리포트 히스토리" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "유효하지 않은 뷰 아키텍처를 위한 XML !" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "이 값은 나쁨의 리미트를 설정합니다." - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "범주 선택" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "차변(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "계정 대변:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "지시자가 출력될 기초가 되는 범주를 선택하십시오." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< 나쁨 지시자 리미트:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "매우 좋음" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "노트" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "통화" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "상태" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"지시자를 출력할 때, 하나의 지시자에서 이 필드를 참으로 설정하면, 하나의 추가적인 그래프가 모든 칠드런들을 트리 구조로 포함한 현태로 " -"표시됩니다." - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "보통" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "예: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "활성" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "트리 보기" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "회계년도에 기초" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "회계 보고" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "계정 밸런스:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "표현식:" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "표현" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "회계 보고" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "새 보고 아이템 공식" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "코드" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "기간" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "일반" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "취소" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "칠드런" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "오브젝트 이름은 x_로 시작해야 하며, 특수 문자가 포함되면 안됩니다." - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "이 값은 좋음의 리미트를 설정합니다." - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "지시자 인쇄" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "인쇄 날짜:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "지시자 (PDF)" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "회계 리포트" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "좋음 지시자 리미트" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "기타 리포트" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "노트: 두번 째 변수인 'fiscalyear'과 'period'는 선택적변수입니다." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "회계 문서 리포팅" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "회계 기간에 기초" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "지시자" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "PDF로 지시자 인쇄" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "지시자 리포팅" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "이름" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "범주 선택" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "회계년도" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "페이지" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "뷰" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "지시자 -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "이 필드를 '참'으로 설정하면,정보가 그래프로 인쇄되며, 그렇지 않으면 배열로 인쇄됩니다." - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "상태에 관한 값을 돌려줌" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "시퀀스" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "금액" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"재무 및 회계 보고\n" -" 재무 보고서\n" -" 지시자\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "재무 보고서" - -#, python-format -#~ msgid "Please select maximum 8 records to fit the page-width." -#~ msgstr "페이지 폭에 맞도록 최대 8개의 레코드를 선택하십시오." - -#, python-format -#~ msgid "Error !" -#~ msgstr "에러!" - -#, python-format -#~ msgid "" -#~ "You cannot delete an indicator history record. You may have to delete the " -#~ "concerned Indicator!" -#~ msgstr "지시자 히스토리 레코드를 삭제할 수 없습니다. 관련 지시자를 삭제해야 할 수도 있습니다." - -#, python-format -#~ msgid "User Error!" -#~ msgstr "사용자 에러!" diff --git a/addons/account_report/i18n/lt.po b/addons/account_report/i18n/lt.po deleted file mode 100644 index 30b0e20d58a..00000000000 --- a/addons/account_report/i18n/lt.po +++ /dev/null @@ -1,530 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-09-09 06:56+0000\n" -"Last-Translator: Fabien (Open ERP) \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Pasirinkti PDF failą" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Pastabos" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Vertė" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Blogas" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Spausdinti" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tipas" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Geras" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Netinkamas XML peržiūros architektūrai!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Pastaba" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Valiuta:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Būsena" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Kodas" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Periodas" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Bendras" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Atšaukti" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Objekto pavadinimas turi prasidėti x_ ir neturėti jokių specialių simbolių!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Spausdinimo data:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Pavadinimas" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Mokestiniai metai" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Puslapis" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Seka" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Suma" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/nl.po b/addons/account_report/i18n/nl.po deleted file mode 100644 index a68a496030a..00000000000 --- a/addons/account_report/i18n/nl.po +++ /dev/null @@ -1,542 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-02 22:11+0000\n" -"Last-Translator: mga (Open ERP) \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Kental" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Kies een PDF Bestand" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Ongeldige modelnaam in de actie-definitie." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operatoren:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Bovenliggend" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Weergeven als diagram" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Debetrekening:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Overige" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "balance(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Samenvatting in tabelvorm" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Opmerkingen" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Goedheidskental limiet:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Zeer slecht" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Waarde" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Slechtheidskental limiet:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Slecht" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" -"Kies het PDF-bestand waarnaar de kengetallen moeten worden afgedrukt." - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Goedheidskental limiet:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Slechtheidskental limiet:" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Zeer Slecht" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Kentalgeschiedenis" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "credit(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Rapportbedrag:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Fiscale verklaringen" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Volgende" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Financiële overzichten" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Afdrukken" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Soort" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Afdrukken kengetallen naar PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Belastingcode" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Goed" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Historie financieel overzicht" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Ongeldige XML voor weergave!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Deze waarde geeft de limiet voor slechtheid." - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Kies criteria" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "debit(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Creditrekening" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "Kies de basiscriteria voor de af te drukken kentallen." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Slechtheidskental limiet:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Zeer Goed" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Opmerking" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Valuta:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Status" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Indien enig kental ingesteld wordt met dit veld op Waar, dan zal bij het " -"afdrukken van de kentallen één of meerdere diagrammen getoond worden met " -"alle onderliggende kentallen in een boomstructuur." - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normaal" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Voorbeeld: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Actief" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Boomweergave" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Gebaseerd op boekjaren" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Financiële overzichten" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Balans:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Uitdrukking :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "report('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Uitdrukking" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Financiële overzichten" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Nieuwe formule overzichts-item" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Code" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "tijdelijk" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Periode" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Algemeen" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Legenda van operatoren" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Annuleren" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Dochters" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"De objectnaam moet beginnen met x_ en mag geen speciale tekens bevatten!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Deze waarde geeft de limiet voor goedheid." - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Afdrukken kentallen" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Afdrukdatum:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Kentallen in PDF-formaat" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "op" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Financieel overzicht" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Goeheidskental limiet" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Overige overzichten" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Opmerking: de twee argumenten 'fiscalyear' en 'period' zijn optioneel. Als " -"de waarde -1 is, wordt het voorgaande boekjaar of periode genomen." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Fiscale overzichten" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Gebaseerd op fiscale perioden" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Kentallen" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Afdrukken kentallen met PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Kentallen overzichten" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Naam" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Kies criteria" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "tax_code(['ACCOUNT_TAX_CODE',],period)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Boekjaar" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Aangepaste overzichten" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Pagina" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Weergave" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Kentallen -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Indien dit op 'Waar' gezet wordt, zal de informatie in diagramvorm afgedrukt " -"worden, anders in tabelvorm." - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Te retourneren waarde voor status" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Reeks" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Bedrag" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"Financiële- en accountancyrapportage\n" -" Belastingverklaringen\n" -" Kentallen\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Belastingverklaring" diff --git a/addons/account_report/i18n/nl_BE.po b/addons/account_report/i18n/nl_BE.po deleted file mode 100644 index 851698f9b0f..00000000000 --- a/addons/account_report/i18n/nl_BE.po +++ /dev/null @@ -1,530 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-04-20 10:09+0000\n" -"Last-Translator: Fabien (Open ERP) \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: 2010-09-29 04:53+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/oc.po b/addons/account_report/i18n/oc.po deleted file mode 100644 index be60d44ccac..00000000000 --- a/addons/account_report/i18n/oc.po +++ /dev/null @@ -1,532 +0,0 @@ -# Occitan (post 1500) translation for openobject-addons -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-02 22:11+0000\n" -"Last-Translator: Cédric VALMARY (Tot en òc) \n" -"Language-Team: Occitan (post 1500) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Nom del Modèl invalid per la definicion de l'accion." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Parent" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Autres" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Nòtas" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Valor" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Seguent" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Estampar" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tipe" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Bon" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML invalid per l'arquitectura de la vista" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Nòta" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Devisa :" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Estat" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normala" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Actiu" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Expression :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Expression" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Còde" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Periòde" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "General" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Anullar" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Enfants" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Lo nom de l'objècte deu començar amb x_ e conténer pas de caractèrs " -"especials !" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "a" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Indicadors" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Nom" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Pagina" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Afichatge" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Sequéncia" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Soma" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/pl.po b/addons/account_report/i18n/pl.po deleted file mode 100644 index ea3670b33ab..00000000000 --- a/addons/account_report/i18n/pl.po +++ /dev/null @@ -1,541 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-11-17 09:25+0000\n" -"Last-Translator: Fabien (Open ERP) \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Wskaźnik" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Wybierz plik PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operatory:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Nadrzędny" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Wyświetl jako wykres" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Konto Winien:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Inne" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Podsumowanie tabelaryczne" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Uwagi" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Granica wskaźnika dobrego stanu:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Bardzo źle" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Wartość" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Granica wskaźnika złego stanu:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Zły" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Wybierz plik PDF do wydruku wskaźników." - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Granica wskaźnika dobrego stanu:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Granica wskaźnika złego stanu" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Bardzo źle" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Historia wskaźnika" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Kwota raportu:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Zestawienia podatkowe" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Następny" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Raportowanie dla księgowości" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Drukuj" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Typ" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Drukuj wskaźniki w PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Kod podatkowy konta:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Dobrze" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Historia raportu kont" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML niewłaściwy dla tej architektury wyświetlania!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Ta wartość ustawia granicę złego stanu" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Wybierz kryteria" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Konto Ma:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "Wybierz kryteria, na których będą oparte drukowane wskaźniki." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Granica wskaźnika złego stanu:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Bardzo dobrze" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Uwaga" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Waluta:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Stan" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Jeśli wskaźnik jest ustawiony na Prawda, to kiedy będzie drukowany, " -"wyświetli jeden dodatkowy wykres ze wszystkimi swoimi podrzędnymi w drzewie" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normalny" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Przykład: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Aktywne" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Wyświetl drzewo" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Oparty o rok podatkowy" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Raport konta" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Saldo konta:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Wyrażenie:" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Wyrażenie" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Raportowanie księgowe" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Nowa formuła elementu raportowania" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Kod" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Okres" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Ogólne" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Legenda dla operatorów" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Anuluj" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Podrzędne" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków " -"specjalnych !" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Ta wartość ustala granicę dobrego stanu." - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Drukuj wskaźniki" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Data wydruku:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Wskaźniki w PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "na" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Raport księgowy" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Granica wskaźnika dobrego stanu" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Inne raporty" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Uwaga: Argumenty 'fiscalyear' i 'period' są opcjonalne. Wartość -1 będzie " -"oznaczała poprzedni okres lub rok podatkowy." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Raport deklaracji podatkowej" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Oparty na okresach" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Wskaźniki" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Drukuj wskaźniki w PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Raportowanie wskaźników" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Nazwa" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Wybierz kryteria" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Rok podatkowy" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Raportowanie własne" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Strona" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Widok" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Wskaźniki -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Jeśli pole jest ustawione na Prawda, to informacja będzie drukowana jako " -"wykres, w przeciwnym przypadku jako macierz." - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Wartość zwrotna dla stanu" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Numeracja" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Kwota" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"Raportowanie finansowo-księgowe\n" -" Deklaracje podatkowe\n" -" Wskaźniki\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Deklaracja podatkowa" diff --git a/addons/account_report/i18n/pt.po b/addons/account_report/i18n/pt.po deleted file mode 100644 index a6b7eb10a5e..00000000000 --- a/addons/account_report/i18n/pt.po +++ /dev/null @@ -1,538 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-11-28 23:56+0000\n" -"Last-Translator: Paulino \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Indicador" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Seleccione um ficheiro PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Nome de modelo inválido na definição da acção" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operadores:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Pai" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Mostrar como Gráfico" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Debito da conta:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Outros" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Notas" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Limite indicador de bondade" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Muito mau" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Valor" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Limite indicador de maldade:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Mau" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Seleccione o ficheiro PDF em que os indicadores serão imprimido." - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Limite indicador de bondade" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Limite indicador de maldade" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Muito mau" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Histórico de indicador" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Montante do relatório" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Declarações fiscais" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Seguinte" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Relatórios da Contabilidade" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Imprimir" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Imprimir indicadores em PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Código do imposto da conta" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Bom" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Histórico do relatório da conta" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML inválido para a arquitectura de vista" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Escolher critério" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Credito da conta:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "Seleccione o critério baseado em qual indicador será usado." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Indicador de limite de maldade:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Muito bom" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Nota" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Moeda:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Status" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normal" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" -"Exemplo: (balanço(['6','45'],-1) - credito(['7'])) / relatório('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Activo" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Mostrar árvore" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Baseado no ano fiscal" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Relatório de Contabilidade" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Balanço da conta:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Expressão:" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "report('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Expressão" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Relatório de Contabilidade" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Novo item da formula do Relatório" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Código" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Período" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Geral:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Legenda dos operadores" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Contas-filho" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"O nome do objecto deve começar com x_ e não pode conter um carácter especial!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Imprimir indicadores" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Data de impressão:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Indicadores em PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "às" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Relatório de Contabilidade" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Limite indicador de bondade" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Outros relatórios" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Nota: O segundo argumento 'ano fiscal' e ' período' são os argumentos " -"opcionais. Se o valor é -1, o ano fiscal precedente ou o período serão " -"considerados." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Relatório de declarações fiscais" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Baseado em periodos fiscais" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Indicadores" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Imprimir indicador com o PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Relatório de indicadores" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Nome" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Seleccionar critério" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Ano fiscal" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Relatório do cliente" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Página" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Ver" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Indicadores -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Valor de retorno para o estado" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Sequência" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Montante" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"Relatórios da contabilidade financeira\n" -" Declarações fiscais\n" -" Indicadores\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Declaração fiscal" diff --git a/addons/account_report/i18n/pt_BR.po b/addons/account_report/i18n/pt_BR.po deleted file mode 100644 index 325eb102c9c..00000000000 --- a/addons/account_report/i18n/pt_BR.po +++ /dev/null @@ -1,542 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-02 22:11+0000\n" -"Last-Translator: mga (Open ERP) \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: 2010-09-29 04:53+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Indicador" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Selecionar um Arquivo PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Nome de modelo inválido na definição da ação" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operadores" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Conta-pai" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Mostrar como Gráfico" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Débito Conta:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Outros" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "saldo(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Resumo Tabular" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Notas" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Limite do Indicador de Melhora" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Muito mal" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Valor" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= Limite do Indicador de Piora" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Mal" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Selecione o arquivo PDF no qual serão impressos os Indicadores" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Limite do Indicador de Melhora:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Limite do Indicador de Piora" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Muito Mal" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Histórico do indicador" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "crédito(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Valor do Relatório" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Demonstrativos Fiscais" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Próximo" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Relatórios para contabilização" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Imprimir" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tipo" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Imprimir Indicadores em PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Código Contábil do Imposto" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Bom" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Histórico do Relatório de Conta" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Invalido XML para Arquitetura da View" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Este Valor define o limite de piora." - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Escolha o critério" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "débito(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Crédito Conta:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "Selecione o critério em função de quais Indicadores serão impressos." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Limite do Indicador de Piora" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Muito Bom" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Nota" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Moeda:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Estado" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Quando os indicadores são impressos, se um deles estiver marcado nesse campo " -"como Verdadeiro, então irá mostrar um ou mais gráficos com todas as contas-" -"filhas em árvore" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normal" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Exemplo: (saldo(['6','45'],-1) - crédito(['7'])) / relatório('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Ativo" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Mostrar Árvore" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Com Base em Anos Fiscais" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Relatório de conta" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Saldo de Conta" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Expressão :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "relatório('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Expressão" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Relatório contábil" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Fórmula para Item Novo de Relatório" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Código" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "temporário" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Período" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Geral" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Legenda dos operadores" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Filhas (contas-filhas)" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"O nome do objeto precisa iniciar com x_ e não conter nenhum caracter " -"especial!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Este valor definie o limite de melhora." - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Imprimir Indicadores" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Data de impressão:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "indicadores em PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "em" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Relatório Contábil" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Limite do Indicador de Melhora" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Outros relatórios" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Nota: O segundo argumento 'ano fiscal' e 'período' são opcionais. Se o valor " -"for -1 o \"ano fiscal' e 'período' considerados serão os anteriores." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Relatório de Demonstrativos Fiscais" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Com base nos Períodos Fiscais" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Indicadores" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Imprimir Indicadores em PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Relatório de Indicadores" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Nome" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Selecione o Critério" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "tax_code(['ACCOUNT_TAX_CODE',],period)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Ano fiscal" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Relatórios personalizados" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Página" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Ver" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Indicadores -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Se o campo for definido como Verdadeiro. a informação será impressa como " -"Gráfico, caso contrário como tabela." - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Valor retornado para Estado" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Sequência" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Valor" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"Relatório financeiro e contábil\n" -" Demonstrativos fiscais\n" -" Indicadores\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Demonstrativo Fiscal" diff --git a/addons/account_report/i18n/ro.po b/addons/account_report/i18n/ro.po deleted file mode 100644 index 0a60e40cc2b..00000000000 --- a/addons/account_report/i18n/ro.po +++ /dev/null @@ -1,542 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-02 22:12+0000\n" -"Last-Translator: mga (Open ERP) \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Indicator" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Selectaţi un fişier PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Nume invalid de model în definirea acţiunii" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operatori:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Părinte" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Afiseaza grafic" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Debit cont" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Altele" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "balance(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Sumar tabular" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Note" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "=Limita de indicare BUN:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Foarte rău" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Valoare" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "=Limita de indicare RAU:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Rău" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Selectare PDF în care se vor tipări indicatorii" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr ">Limita de indicare BUN" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Limita de indicare RAU" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Foarte rău" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Istoric indicator" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "credit(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Sumă raport" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Declaraţie fiscală" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Urmare" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Raportare pentru contabilitate" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Tipărire" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tip" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Tipărire indicator în PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Cod taxă cont" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Bun" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Istoric raportare cont" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "XML invalid pentru arhitectura machetei de afișare !" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Această valoare stabileşte limita de indicare RAU" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Alegere criterii" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "debit(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Credit cont" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "Alegere criterii după care se face tipărirea indicatorilor" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "\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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Индикатор" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Выберете PDF документ" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Недопустимое имя модели в определении действия." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Операторы:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Предок" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Показать как график" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Прочие" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Примечания" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Очень плохой" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Значение" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Плохой" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Очень плохой" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Далее" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Печать" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Тип" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Хороший" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Неправильный XML для просмотра архитектуры!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Выберите критерии" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Очень хороший" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Заметка" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Валюта:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Статус" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Нормальный" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Активен" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Отчетность по счету" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Выражение" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Бухгалтерская отчетность" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Формула нового элемента отчетности" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Код" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Период" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Общий" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Описание операторов" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Отмена" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Дети" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Название объекта должно начинаться с x_ и не должно содержать специальных " -"символов !" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Дата вывода на печать" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "в" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Бухгалтерский отчет" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Другие отчеты" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Индикаторы" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Индикаторы отчета" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Название" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Выбор критерия" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Финансовый год" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Пользовательскаяя отчетность" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Страница" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Просмотр" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Вернуть значение статуса" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Последовательность" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Сумма" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/sl.po b/addons/account_report/i18n/sl.po deleted file mode 100644 index cc5d7129b00..00000000000 --- a/addons/account_report/i18n/sl.po +++ /dev/null @@ -1,530 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-02 22:12+0000\n" -"Last-Translator: mga (Open ERP) \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Kazalnik" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Izberidte datoteko PDF" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Napačno ime modela v definiciji dejanja." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operatorji:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Starš" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Prikaži kot graf" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Breme konta:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Drugi" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "balance(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Opombe" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Zelo slabo" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Vrednost" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Slabo" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Izberi ime PDF datoteke za izpis indikatorjev." - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Zelo slabo" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Zgodovina indikatorja" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "credit(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Znesek poročila:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Naslednji" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Natisni" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tip" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Izpiši indikatorje v PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Dobro" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Neveljaven XML za arhitekturo pogleda." - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Izberi pogoje" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "debit(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Dobro konta:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Zelo dobro" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Opomba" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Valuta:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Stanje" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Navadno" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Primer: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Aktivno" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Prikaži drevo" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Poročanje konta" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Stanje konta:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Izraz:" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "poročilo('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Izraz" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Računovodsko poročilo" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Oznaka" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "zač." - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Obdobje" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Splošno" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Prekliči" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Otroci" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Natisnjeno dne:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Indikatorji v PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "pri" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Računovodska poročila" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Ostala poročila" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Kazalci" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Ime" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Izberi pogoje" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "tax_code(['ACCOUNT_TAX_CODE',],period)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Davčno leto" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Poročila po meri" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Stran" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Pogled" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Indikatorji -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Zaporedje" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Znesek" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/sq.po b/addons/account_report/i18n/sq.po deleted file mode 100644 index dfc31564d51..00000000000 --- a/addons/account_report/i18n/sq.po +++ /dev/null @@ -1,530 +0,0 @@ -# Albanian translation for openobject-addons -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-02 14:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Albanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/sr.po b/addons/account_report/i18n/sr.po deleted file mode 100644 index a79525b4502..00000000000 --- a/addons/account_report/i18n/sr.po +++ /dev/null @@ -1,542 +0,0 @@ -# Serbian translation for openobject-addons -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-10-14 13:32+0000\n" -"Last-Translator: zmmaj \n" -"Language-Team: Serbian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-10-15 04:42+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Pokazatelj" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Odaberite PDF datoteku" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "Pogrešno ime modela u definiciji akcije." - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Operatori:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Prikaži kao grafikon" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Dugovni konto:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Drugo" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "balance(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "Tablični pregled" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Napomene" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "= Granica pokazivača dobrote" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Vrlo loše" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Vrednost" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "= GRanica pokazivaca slabosti" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Loše" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "Odaberite PDF datoteku na kojoj će biti ispisani pokazivaci" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "> Granice pokazivaca dobrote" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "Pokazivac granice slabosti" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Vrlo lose" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "Istorija Pokazivaca" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "credit(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "izveštaj Iznosa:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Fiskalni izvodi" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Sledeće" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "Računovodstveni izveštaji" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Štampaj" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tip" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "Ispiši pokazivače u PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Šifra poreznog računa:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Dobar" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "Istiorija izveštaja računa" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Nevažeći XML za pregled arhitekture" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "Ova vrednost predstavlja granicu slabosti" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "Izaberi Kriterijum" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "debit(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Potražni konto" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "Odaberite uslov zasnovan na pokazivačima koji će biti ispisani." - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "< Granica Pokazivaca Slabosti" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Vrlo Dobro" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Napomena" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Valuta:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Status" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" -"Kada su pokazivaci prikazani, ako je polje jednog od njih postavljeno na ' " -"Istina', tada ce se prikazati jos jedan grafikon sa svim podgrupama koje " -"sadrzi." - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normalan" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "Primer: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Aktivan" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "Prikazi Stablo" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "Bazirano na Fiskalnim Godinama" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Računovodstveni izveštaji" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "Saldo računa:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Izraz :" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "report('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Izraz" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Računovodstveni izveštaji" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Formula nove stavke izveštaja" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Šifra" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "privremen" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Razdoblje" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Opšte" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Objasnjenje Operatera" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Otkaži" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Podređeni" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Ime objekta mora da počinje sa x_ i ne sme da sadrži specijalne karaktere !" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "Ova vrednost predstavlja granicu dobrote" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "Ispis Pokazatelja" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Datum Stampe:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "Pokazivaci u PDF" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "u" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Računovodstveni izvještaj" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "Pokazivac granice dobrote" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Ostali izvještaji" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" -"Napomena: Drugi argument 'fiskalna godina' i 'period' su opcionalni. Ako je " -"vrednost -1, prethodna fiskalna godina ili period su upotrebljeni." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Izveštaji fiskalnih izvoda" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Bazirano na fiskalnim periodima" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "Pokazivači" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "Ispiši pokazivače sa PDF" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Izvještavanje pokazivača" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Ime" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "Selektuj Kriterijum" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "tax_code(['ACCOUNT_TAX_CODE',],period)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Fiskalna Godina" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Posebno izvještavanje" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Strana" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Pregled" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "Pokazivači -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" -"Ako je ovo polje postavljeno na ' Istina' , INformacija ce biti ispisana kao " -"grafikon, a inace ce biti prikazana kao niz." - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Vrati vrednost za stanje" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Sekvenca" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Iznos" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27,7cm 20cm 27,7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"Finansijski i Kontni Izvestaj\n" -" Fiskalna Izjava\n" -" Pokazivaci\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "Fiskalna Izjava" diff --git a/addons/account_report/i18n/sv.po b/addons/account_report/i18n/sv.po deleted file mode 100644 index b538e32ae0d..00000000000 --- a/addons/account_report/i18n/sv.po +++ /dev/null @@ -1,530 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-02 22:12+0000\n" -"Last-Translator: Anders Wallenquist \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "Välj PDF-fil" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "Visa som graf" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Värde" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Dålig" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "Nästa" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Typ" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Felaktig XML för Vyarkitektur!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Valuta:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Status" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normal" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Aktiva" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "Uttryck:" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Uttryck" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "temporär" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Period" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "Avbryt" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "Underliggande" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Namn" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Sida" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/tlh.po b/addons/account_report/i18n/tlh.po deleted file mode 100644 index bebdebe0c2c..00000000000 --- a/addons/account_report/i18n/tlh.po +++ /dev/null @@ -1,529 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev_rc3\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-02-03 06:24+0000\n" -"Last-Translator: <>\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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/tr.po b/addons/account_report/i18n/tr.po deleted file mode 100644 index 949ab847c1a..00000000000 --- a/addons/account_report/i18n/tr.po +++ /dev/null @@ -1,529 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-09-09 07:07+0000\n" -"Last-Translator: Fabien (Open ERP) \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Üst" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "Borç Hesabı:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Diğer Bilgiler" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Notlar" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Değer" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "Rapor Tutarı:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "Yazdır" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Tipi" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "Vergi Hesap Kodu:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Görüntüleme mimarisi için Geçersiz XML" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "Alacak Hesabı :" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Not" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Döviz:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Durum" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Normal" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Aktif" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Kodu" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "Dönem" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Genel" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Operatör Açıklaması" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "İptal" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Yazdırma Tarihi:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "Diğer Raporlar" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "Mali Dönemlere Bağlı" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Adı" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "Mali Yıl" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "Sayfa" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "Görünüm" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "İade değer durumu" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Sıra No" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Miktar" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/uk.po b/addons/account_report/i18n/uk.po deleted file mode 100644 index 66b1189d379..00000000000 --- a/addons/account_report/i18n/uk.po +++ /dev/null @@ -1,530 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-09-08 12:38+0000\n" -"Last-Translator: Eugene Babiy \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: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "Показник" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "Оператори:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "Власник" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "Інші" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "Замітки" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "Дуже погано" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "Значення" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "Погано" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "Дуже погано" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "Податкова звітність" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "Тип" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "Добре" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "Неправильний XML для Архітектури Вигляду!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "Дуже добре" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "Примітки" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "Валюта:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "Статус" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "Нормальний" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "Активний" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "Звіти по рахунку" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "Вираз" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "Бухгалтерська Звітність" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "Формула нової позиції звітності" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "Код" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "Загальний" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "Підписи операторів" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" -"Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "Дата друку:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "в" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "Бухгалтерський Звіт" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "Податкова звітність" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "Звітність за показниками" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "Назва" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "Звіти користувача" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "Повернуте значення для статусу" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "Послідовність" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "Сума" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/vi.po b/addons/account_report/i18n/vi.po deleted file mode 100644 index 9d0d1014829..00000000000 --- a/addons/account_report/i18n/vi.po +++ /dev/null @@ -1,530 +0,0 @@ -# Vietnamese translation for openobject-addons -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: openobject-addons\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-08-02 14:41+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-09-29 04:52+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/i18n/zh_CN.po b/addons/account_report/i18n/zh_CN.po deleted file mode 100644 index 46003a51292..00000000000 --- a/addons/account_report/i18n/zh_CN.po +++ /dev/null @@ -1,531 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-09-29 08:34+0000\n" -"Last-Translator: Black Jack \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: 2010-09-30 04:38+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "指标" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "选择一个PDF文件" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "在动作定义使用了无效的模式名称。" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "操作:" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "上级" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "图形" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "科目借方:" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "其它" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "余额(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "表格摘要" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "备注" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "=良好指标范围:" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "非常差" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "值" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "=不良指标范围:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "差" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "选择一个指标打印为PDF" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr ">良好指标范围:" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "不良指标范围" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "非常差" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "指标过去的记录" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "贷方(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "金额:" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "财务报表" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "下一个" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "会计报表" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "打印" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "类型" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "打印PDF指标" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "税代码:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "好" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "报表日志" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "无效XML视图结构!" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "这个值设置为不良范围" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "选择标准" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "借方(['ACCOUNT_CODE',],fiscalyear)" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "科目贷方:" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "选择标准的指标基于将要被打印" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "<不良指标范围:" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "非常好" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "备注" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "货币:" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "状态" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "打印指标时如果一个指标字段为真将显示一个所有子树的图形" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "一般" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "例子: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "启用" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "显示树" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "基于会计年度" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "科目报表" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "科目余额:" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "表达式:" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "报表('REPORT_CODE')" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "表达式" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "会计报表" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "新报表项公式" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "代码" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "temp" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "会计期间" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "普通" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "操作员说明" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "取消" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "子项" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "对象名称必须以“x_”开头且不能包含任何特殊字符!" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "这个值设为好范围" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "打印指标" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "+ - * / ( )" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "打印日期:" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "指标PDF文件" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "在" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "会计报表" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "良好指标范围" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "其它报表" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "备注:第二参数‘会计年度’和‘会计期间’是可选参数. 如果值为-1会计年度或会计期间是以前的." - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr ")" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "财务报表" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "基于会计期间" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "指标" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "打印PDF指标" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "指标报表" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "名称" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "选择标准" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "税号(['ACCOUNT_TAX_CODE',],period)" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "会计年度" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "自定义报表" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "页" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "视图" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "指标 -" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "如果这字段设为真信息将打印为图形否则为数组" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "状态返回值" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "序列" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "金额" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "1cm 27.7cm 20cm 27.7cm" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" -"财务和会计,财务报表指标\n" -" " - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "财务报表" diff --git a/addons/account_report/i18n/zh_TW.po b/addons/account_report/i18n/zh_TW.po deleted file mode 100644 index 9164eb97328..00000000000 --- a/addons/account_report/i18n/zh_TW.po +++ /dev/null @@ -1,529 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_report -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.4\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-01-30 12:43+0000\n" -"Last-Translator: <>\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: 2010-09-29 04:53+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_report -#: field:account.report.history,name:0 -#: selection:account.report.report,type:0 -#: model:ir.model,name:account_report.model_account_report_history -msgid "Indicator" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators.pdf,init,file:0 -msgid "Select a PDF File" -msgstr "" - -#. module: account_report -#: constraint:ir.actions.act_window:0 -msgid "Invalid model name in the action definition." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Operators:" -msgstr "" - -#. module: account_report -#: field:account.report.report,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_graph:0 -msgid "Display As Graph" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Debit:" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Others" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "balance(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Tabular Summary" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Notes" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Very bad" -msgstr "" - -#. module: account_report -#: field:account.report.history,val:0 -#: field:account.report.report,amount:0 -msgid "Value" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "= Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Bad" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Select the PDF file on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "> Goodness Indicator Limit:" -msgstr "" - -#. module: account_report -#: field:account.report.report,badness_limit:0 -msgid "Badness Indicator Limit" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Very Bad" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.account_report_history_record_structure -msgid "Indicator history" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "credit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Report Amount:" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.fiscal_statements -msgid "Fiscal Statements" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,next:0 -msgid "Next" -msgstr "" - -#. module: account_report -#: model:ir.module.module,shortdesc:account_report.module_meta_information -msgid "Reporting for accounting" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,next,print:0 -#: wizard_button:print.indicators.pdf,init,print:0 -msgid "Print" -msgstr "" - -#. module: account_report -#: field:account.report.report,type:0 -msgid "Type" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_indicator_pdf -msgid "Print Indicators in PDF" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Tax Code:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Good" -msgstr "" - -#. module: account_report -#: view:account.report.history:0 -msgid "Account Report History" -msgstr "" - -#. module: account_report -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" -msgstr "" - -#. module: account_report -#: help:account.report.report,badness_limit:0 -msgid "This Value sets the limit of badness." -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,init,select_base:0 -msgid "Choose Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "debit(['ACCOUNT_CODE',],fiscalyear)" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Credit:" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators,init:0 -msgid "Select the criteria based on which Indicators will be printed." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "< Badness Indicator Limit:" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -#: selection:account.report.report,status:0 -msgid "Very Good" -msgstr "" - -#. module: account_report -#: field:account.report.report,note:0 -msgid "Note" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Currency:" -msgstr "" - -#. module: account_report -#: field:account.report.report,status:0 -msgid "Status" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_tree:0 -msgid "" -"When the indicators are printed, if one indicator is set with this field to " -"True, then it will display one more graphs with all its children in tree" -msgstr "" - -#. module: account_report -#: selection:account.report.report,status:0 -msgid "Normal" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Example: (balance(['6','45'],-1) - credit(['7'])) / report('RPT1')" -msgstr "" - -#. module: account_report -#: field:account.report.report,active:0 -msgid "Active" -msgstr "" - -#. module: account_report -#: field:account.report.report,disp_tree:0 -msgid "Display Tree" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based On Fiscal Years" -msgstr "" - -#. module: account_report -#: model:ir.model,name:account_report.model_account_report_report -msgid "Account reporting" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Account Balance:" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Expression :" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "report('REPORT_CODE')" -msgstr "" - -#. module: account_report -#: field:account.report.report,expression:0 -msgid "Expression" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Accounting reporting" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_form -#: model:ir.ui.menu,name:account_report.menu_action_account_report_form -msgid "New Reporting Item Formula" -msgstr "" - -#. module: account_report -#: field:account.report.report,code:0 -#: rml:accounting.report:0 -msgid "Code" -msgstr "" - -#. module: account_report -#: field:account.report.history,tmp:0 -msgid "temp" -msgstr "" - -#. module: account_report -#: field:account.report.history,period_id:0 -msgid "Period" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "General" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Legend of operators" -msgstr "" - -#. module: account_report -#: wizard_button:print.indicators,init,end:0 -#: wizard_button:print.indicators,next,end:0 -#: wizard_button:print.indicators.pdf,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_report -#: field:account.report.report,child_ids:0 -msgid "Children" -msgstr "" - -#. module: account_report -#: constraint:ir.model:0 -msgid "" -"The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: account_report -#: help:account.report.report,goodness_limit:0 -msgid "This Value sets the limit of goodness." -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_print_indicators -#: model:ir.ui.menu,name:account_report.menu_wizard_print_indicators -#: wizard_view:print.indicators,init:0 -#: wizard_view:print.indicators,next:0 -msgid "Print Indicators" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "+ - * / ( )" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Printing date:" -msgstr "" - -#. module: account_report -#: model:ir.actions.wizard,name:account_report.wizard_indicators_with_pdf -msgid "Indicators in PDF" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "at" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Accounting Report" -msgstr "" - -#. module: account_report -#: field:account.report.report,goodness_limit:0 -msgid "Goodness Indicator Limit" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_other -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_other -msgid "Other reports" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "" -"Note: The second arguement 'fiscalyear' and 'period' are optional " -"arguements.If the value is -1,previous fiscalyear or period is considered." -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid ")" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_fiscal -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_fiscal -msgid "Fiscal Statements reporting" -msgstr "" - -#. module: account_report -#: selection:print.indicators,init,select_base:0 -msgid "Based on Fiscal Periods" -msgstr "" - -#. module: account_report -#: model:ir.actions.report.xml,name:account_report.report_print_indicators -#: rml:print.indicators:0 -msgid "Indicators" -msgstr "" - -#. module: account_report -#: wizard_view:print.indicators.pdf,init:0 -msgid "Print Indicators with PDF" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view_indicator -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view_indicator -msgid "Indicators reporting" -msgstr "" - -#. module: account_report -#: field:account.report.report,name:0 -#: rml:accounting.report:0 -#: rml:print.indicators:0 -msgid "Name" -msgstr "" - -#. module: account_report -#: wizard_field:print.indicators,next,base_selection:0 -msgid "Select Criteria" -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "tax_code(['ACCOUNT_TAX_CODE',],period)" -msgstr "" - -#. module: account_report -#: field:account.report.history,fiscalyear_id:0 -msgid "Fiscal Year" -msgstr "" - -#. module: account_report -#: model:ir.actions.act_window,name:account_report.action_account_report_tree -#: model:ir.actions.act_window,name:account_report.action_account_report_tree_view -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_define -#: model:ir.ui.menu,name:account_report.menu_action_account_report_tree_view -msgid "Custom reporting" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Page" -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "View" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "Indicators -" -msgstr "" - -#. module: account_report -#: help:account.report.report,disp_graph:0 -msgid "" -"If the field is set to True, information will be printed as a Graph, " -"otherwise as an array." -msgstr "" - -#. module: account_report -#: view:account.report.report:0 -msgid "Return value for status" -msgstr "" - -#. module: account_report -#: field:account.report.report,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_report -#: rml:accounting.report:0 -msgid "Amount" -msgstr "" - -#. module: account_report -#: rml:print.indicators:0 -msgid "1cm 27.7cm 20cm 27.7cm" -msgstr "" - -#. module: account_report -#: model:ir.module.module,description:account_report.module_meta_information -msgid "" -"Financial and accounting reporting\n" -" Fiscal statements\n" -" Indicators\n" -" " -msgstr "" - -#. module: account_report -#: selection:account.report.report,type:0 -msgid "Fiscal Statement" -msgstr "" diff --git a/addons/account_report/report/__init__.py b/addons/account_report/report/__init__.py deleted file mode 100644 index 27ab1f7ac2a..00000000000 --- a/addons/account_report/report/__init__.py +++ /dev/null @@ -1,26 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -import accounting_report -import print_indicator - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account_report/report/accounting_report.py b/addons/account_report/report/accounting_report.py deleted file mode 100644 index f38f09d1e7f..00000000000 --- a/addons/account_report/report/accounting_report.py +++ /dev/null @@ -1,59 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -import pooler -import time -from report import report_sxw - - -class accounting_report(report_sxw.rml_parse): - - def __init__(self, cr, uid, name, context): - super(accounting_report, self).__init__(cr, uid, name, context=context) - self.ret_list = [] - self.localcontext.update({ - 'time': time, - 'childs':self.process - }) - - def process(self,id,level=0): - res = pooler.get_pool(self.cr.dbname).get('account.report.report').read(self.cr,self.uid,[id]) - ret_dict={ - 'name':res[0]['name'], - 'code':res[0]['code'], - 'amount':res[0]['amount'], - 'note':res[0]['note'], - 'level': level, - } - - self.ret_list.append(ret_dict) - for child_id in res[0]['child_ids']: - self.process(child_id,level+1) - return self.ret_list - - -report_sxw.report_sxw('report.accounting.report', 'account.report.report', - 'addons/account_report/report/accounting_report.rml', - parser=accounting_report, header=False) - - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account_report/report/accounting_report.rml b/addons/account_report/report/accounting_report.rml deleted file mode 100644 index 4425506b6b8..00000000000 --- a/addons/account_report/report/accounting_report.rml +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [[ repeatIn(objects,'o') ]] - - - - Accounting Report - - - - [[ company.name ]] - - Currency: [[ company.currency_id.name]] - - - Printing date: [[ time.strftime('%Y-%m-%d') ]] at [[ time.strftime('%H:%M:%S') ]] - - - Name - Code - Amount - - - -
- [[repeatIn(childs(o.id),'obj')]] - - - [[ '....'*(obj['level']) ]][[ obj['name'] ]] - [[obj['code'] ]] - [['%.2f' % obj['amount'] ]] - - - [[ repeatIn((obj['note'] and obj['note'].splitlines()) or [], 'l') ]][[ l or removeParentNode('table') ]] - - - - - -
-
-
- - diff --git a/addons/account_report/report/print_indicator.py b/addons/account_report/report/print_indicator.py deleted file mode 100644 index 84593a32b8c..00000000000 --- a/addons/account_report/report/print_indicator.py +++ /dev/null @@ -1,260 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -import pooler -import time -from report import report_sxw -from pychart import * -import StringIO -import tools -import os - -theme.use_color = 1 -theme.default_font_family = "Helvetica-Bold" -theme.default_font_size = 18 -theme.default_line_width = 1.0 - - - -class accounting_report_indicator(report_sxw.rml_parse): - - def __init__(self, cr, uid, name, context): - super(accounting_report_indicator, self).__init__(cr, uid, name, context=context) - self.ret_list = [] - self.localcontext.update({ - 'time': time, - 'getgraph': self.getgraph, - 'lines':self.lines, - 'getarray':self.getarray, - 'gettree':self.gettree, - 'getarray_head':self.getarray_head, - }) - self.count = 0 - self.treecount = 0 - self.list = [] - self.header_name = [] - self.header_val = [] - self.main_dict = {} - -# - - def lines(self,data): - res={} - result=[] - ind_ids=self.pool.get('account.report.report').search(self.cr,self.uid,[]) - obj_inds=self.pool.get('account.report.report').browse(self.cr,self.uid,ind_ids) - - - for obj_ind in obj_inds: - level = 0 - res = { - 'id':obj_ind.id, - 'name':obj_ind.name, - 'code':obj_ind.code, - 'expression':obj_ind.expression, - 'disp_graph':obj_ind.disp_graph, - 'disp_tree':obj_ind.disp_tree, - 'note':obj_ind.note, - 'level': obj_ind.parent_id or 0, - 'type':obj_ind.type, - 'array_table': False, - } - if obj_ind.parent_id: - for record in result: - if record['id'] == obj_ind.parent_id.id: - res['level'] = record['level'] + 1 - break - if len(obj_ind.expression)>=2: - res['array_table'] = True - result.append(res) - return result - - def getarray_head(self,data,object,array_header=''): - self.getgraph(data,object,intercall=True) - self.header_val=[str(x) for x in self.header_val] - if data['select_base'] == 'year': - year = [1,2,3,4,5,6,7,8] - temp_head = [str(x) for x in self.header_name] - head_dict = dict(zip(year,temp_head)) - else: - temp_head = [str(x[0:3]) for x in self.header_name] - head_dict = dict(zip(temp_head,temp_head)) - return [head_dict] - - def getarray(self,data,object,array_header=''): - res={} - result=[] - self.getgraph(data,object,intercall=True) - self.header_val = [str(x) for x in self.header_val] - if data['select_base'] == 'year': - year = [1,2,3,4,5,6,7,8] - temp_dict = zip(year,self.header_val) - else: - temp_head = [str(x[0:3]) for x in self.header_name] - temp_dict = zip(temp_head,self.header_val) - res=dict(temp_dict) - array_header = eval(array_header,{'year':'Fiscal Year','periods':'Periods'}) - res[array_header]=object['name'] - result.append(res) - return result - - def gettree(self,data,object): - pool_history=self.pool.get('account.report.report') - obj_history=pool_history.browse(self.cr,self.uid,object['id']) - result=[] - self.treecount +=1 - path=tools.config['addons_path']+"/account_report/tmp_images/tree_image" - - dirname =tools.config['addons_path']+'/account_report/tmp_images/' - if not os.path.isdir(dirname): - os.mkdir(dirname) - - can = canvas.init('tree_image'+str(self.treecount)+".png") - - theme.default_font_size = 12 - - self.child_dist=0 - - level=0 - self.level=0 - self.child_dist=0 - - def draw_tree(obj_history,base_x,base_y,level=0,i=0): - self.line_y=base_y - if obj_history.child_ids: - if self.child_dist: - diff=i*self.child_dist - self.child_dist=0 - else: - diff=i - if self.level>0 and (base_y-(50*diff)) >= self.level: - base_y=self.level-(50*i) - else: - base_y=base_y-(50*diff) - tb = text_box.T(loc=(base_x,base_y),line_style=line_style.darkblue,text="/hC"+str(obj_history.code)+":\n"+str(obj_history.amount)) - - tb.add_arrow((base_x+100,base_y)) - tb.draw() - - if level!=0: - a = arrow.T(head_style = 1) - a.draw([(base_x-30,base_y), (base_x,base_y)]) - level+=1 - - if i>0: - can.line(line_style.black,base_x-30,base_y,base_x-30,self.line_y) - - i=0 - for child in obj_history.child_ids: - draw_tree(child,base_x+(100),base_y,level,i) - i+=1 - - child_dist=len(obj_history.child_ids) - self.child_dist=max(self.child_dist,child_dist) - - else: - - if self.level>0 and (base_y-(50*i)) >= self.level: - base_y=self.level-(50) - else: - base_y=base_y-(50*(i)) - - tb12 = text_box.T(loc=(base_x,base_y), text="/hC"+str(obj_history.code)+":\n"+str(obj_history.amount)) - tb12.draw() - - if i>0: - can.line(line_style.black,base_x-30,base_y,base_x-30,self.line_y) - a = arrow.T(head_style = 1) - a.draw([(base_x-30,base_y), (base_x,base_y)]) - self.level=base_y - self.line_y=900 - draw_tree(obj_history,0,900,0) - can.close() - - os.system('cp '+'tree_image'+str(self.treecount)+'.png ' +path+str(self.treecount)+'.png') - os.system('rm '+'tree_image'+str(self.treecount)+'.png') - - return path+str(self.treecount)+'.png' - - def getgraph(self,data,object,intercall=False): - obj_history=self.pool.get('account.report.history') - - if data['select_base']=='year': - tuple_search=('fiscalyear_id','in',data['base_selection']) - base='year' - else: - tuple_search=('period_id','in',data['base_selection']) - base='period' - - history_ids=obj_history.search(self.cr,self.uid,[('name','=',object['id']),tuple_search]) - history_ids.sort() - obj_his=obj_history.browse(self.cr,self.uid,history_ids) - - data_val=[] - data_period=[] - if base=='period': - for item in obj_his: - data_val.append(item.val) - data_period.append(item.period_id.name) - else: - for i in data['base_selection']: - val_temp=[] - data_period.append(self.pool.get('account.fiscalyear').browse(self.cr,self.uid,i).name) - for item in obj_his: - if item.fiscalyear_id.id==i: - val_temp.append(item.val) - data_val.append(sum(val_temp)) - - self.header_name=data_period - self.header_val=data_val - - if intercall: - return True - self.count +=1 - path=tools.config['addons_path']+"/account_report/tmp_images/image" - - dirname =tools.config['addons_path']+'/account_report/tmp_images/' - if not os.path.isdir(dirname): - os.mkdir(dirname) - - can = canvas.init('image'+str(self.count)+".png") - - data=zip(self.header_name,self.header_val) - - ar = area.T(size = (650,450),x_coord = category_coord.T(data, 0), y_range = (None, None), - x_axis = axis.X(label="Period // Year",format="/a-30{}%s"), - y_axis = axis.Y(label="Value")) - - ar.add_plot(bar_plot.T(data = data,width=15, data_label_format="/o/15{}%s",label = "Value",fill_style=fill_style.red)) - ar.draw() - - can.close() - os.system('cp '+'image'+str(self.count)+'.png ' +path+str(self.count)+'.png') - os.system('rm '+'image'+str(self.count)+'.png') - return path+str(self.count)+'.png' - -report_sxw.report_sxw('report.print.indicators', 'account.report.history', - 'addons/account_report/report/print_indicator.rml', - parser=accounting_report_indicator, header=False) - - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account_report/report/print_indicator.rml b/addons/account_report/report/print_indicator.rml deleted file mode 100644 index 659a392daa4..00000000000 --- a/addons/account_report/report/print_indicator.rml +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Indicators - - - - - [[ company.name ]] - Currency: [[ company.currency_id.name]] - - - - Printing date: [[ time.strftime('%Y-%m-%d') ]] at [[ time.strftime('%H:%M:%S') ]] - - - - Name - - - - - [[ repeatIn(lines(data['form']),'o')]] -
- - - [['.....'*(o['level']) ]][[ o['type']<>'view' and setTag('para','para',{'fontName':'Helvetica-Bold','fontSize':'10.5'}) ]]()[[ o['name'] ]] ([[ o['code'] ]]) - - - [[ o['disp_tree'] and setTag('para','image',{'width':'450.00','height':'215.00','file':gettree(data['form'],o)}) or removeParentNode('para') ]] - [[ o['disp_graph'] and setTag('para','image',{'width':'450.00','height':'215.00','file':getgraph(data['form'],o)}) or removeParentNode('para') ]] - - - - [['..........' *(o['level']) ]]Expression :[[ o['expression'] ]] - - - - - [['..........'*(o['level']) ]] [[ format(o['note'] or '') or removeParentNode('blockTable') ]] - - -
- - Tabular Summary -
- [[ repeatIn(getarray_head(data['form'],o,array_header=data['form']['select_base']),'array_header')]] - - - Indicators - [[ array_header['Jan'] or '' ]][[ array_header[1] or '' ]] - [[ array_header['Feb'] or '' ]][[ array_header[2] or '' ]] - [[ array_header['Mar'] or '' ]][[ array_header[3] or '' ]] - [[ array_header['Apr'] or '' ]][[ array_header[4] or '' ]] - [[ array_header['May'] or '' ]][[ array_header[5] or '' ]] - [[ array_header['Jun'] or '' ]][[ array_header[6] or '' ]] - [[ array_header['Jul'] or '' ]][[ array_header[7] or '' ]] - [[ array_header['Aug'] or '' ]][[ array_header[8] or '' ]] - [[ array_header['Sep'] or '' ]] - [[ array_header['Oct'] or '' ]] - [[ array_header['Nov'] or '' ]] - [[ array_header['Dec'] or '' ]] - - -
-
- [[ repeatIn(lines(data['form']),'obj')]] -
- [[ repeatIn(getarray(data['form'],obj,array_header=data['form']['select_base']),'array')]] - - - [['.....'*(obj['level']) ]][[ obj['code'] ]] - [[ array['Jan'] or '' ]][[ array[1] or '' ]] - [[ array['Feb'] or '' ]][[ array[2] or '' ]] - [[ array['Mar'] or '' ]][[ array[3] or '' ]] - [[ array['Apr'] or '' ]][[ array[4] or '' ]] - [[ array['May'] or '' ]][[ array[5] or '' ]] - [[ array['Jun'] or '' ]][[ array[6] or '' ]] - [[ array['Jul'] or '' ]][[ array[7] or '' ]] - [[ array['Aug'] or '' ]][[ array[8] or '' ]] - [[ array['Sep'] or '' ]] - [[ array['Oct'] or '' ]] - [[ array['Nov'] or '' ]] - [[ array['Dec'] or '' ]] - - -
-
-
-
- - diff --git a/addons/account_report/security/ir.model.access.csv b/addons/account_report/security/ir.model.access.csv deleted file mode 100644 index 789f18530e0..00000000000 --- a/addons/account_report/security/ir.model.access.csv +++ /dev/null @@ -1,4 +0,0 @@ -"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" -"access_account_report_history","account.report.history","model_account_report_history","account.group_account_manager",1,0,0,0 -"access_account_report_report","account.report.report","model_account_report_report","account.group_account_user",1,1,0,0 -"access_account_report_report_manager","account.report.report manager","model_account_report_report","account.group_account_manager",1,1,1,1 diff --git a/addons/account_report/test/account_report_report.yml b/addons/account_report/test/account_report_report.yml deleted file mode 100644 index d94dce1f553..00000000000 --- a/addons/account_report/test/account_report_report.yml +++ /dev/null @@ -1,17 +0,0 @@ -- - In order to test the PDF reports defined on Account, Print a Financial Statement Report -- - !python {model: account.report.report}: | - import netsvc, tools, os - (data, format) = netsvc.LocalService('report.accounting.report').create(cr, uid, [ref('account_report.account_report_1')], {}, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account_report-financial_statement_report.'+format), 'wb+').write(data) -- - Print the Indicators Report in Normal mode -- - !python {model: account.report.history }: | - import netsvc, tools, os, time - data_dict = {'model': 'ir.ui.menu', 'form': {'select_base':'year','base_selection':[ref('account.data_fiscalyear')],'context':{}}} - (data, format) = netsvc.LocalService('report.print.indicators').create(cr, uid, [], data_dict, {}) - if tools.config['test_report_directory']: - file(os.path.join(tools.config['test_report_directory'], 'account_report-indicators_report.'+format), 'wb+').write(data) \ No newline at end of file diff --git a/addons/account_report/wizard/__init__.py b/addons/account_report/wizard/__init__.py deleted file mode 100644 index cae88f16a32..00000000000 --- a/addons/account_report/wizard/__init__.py +++ /dev/null @@ -1,25 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -import account_report_print_indicators -import account_report_print_indicators_with_pdf - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_report/wizard/account_report_print_indicators.py b/addons/account_report/wizard/account_report_print_indicators.py deleted file mode 100644 index af855db2c89..00000000000 --- a/addons/account_report/wizard/account_report_print_indicators.py +++ /dev/null @@ -1,94 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## -from lxml import etree - -from osv import fields, osv -from tools.translate import _ - -class account_report_print_indicators(osv.osv_memory): - """ - This wizard will print indicators - """ - _name = "account.report.print.indicators" - _description = "Print Indicators" - _columns = { - 'select_base': fields.selection([('year','Based On Fiscal Years'), - ('periods','Based on Fiscal Periods')],'Choose Criteria',required=True), - 'base_selection': fields.many2many('account.fiscalyear', 'indicator_rel','account_id','fiscalyear_id','Fiscal year'), - } - _defaults ={ - 'select_base':'year' - } - - def next(self, cr, uid, ids, context=None): - obj_model = self.pool.get('ir.model.data') - if context is None: - context = {} - data = self.read(cr, uid, ids, [])[0] - context.update({'base': data['select_base']}) - model_data_ids = obj_model.search(cr,uid,[('model','=','ir.ui.view'),('name','=','account_report_print_indicators_relation_view')]) - resource_id = obj_model.read(cr, uid, model_data_ids, fields=['res_id'])[0]['res_id'] - return { - 'view_type': 'form', - 'view_mode': 'form', - 'res_model': 'account.report.print.indicators', - 'views': [(resource_id,'form')], - 'type': 'ir.actions.act_window', - 'target': 'new', - 'context': context, - } - - def fields_view_get(self, cr, uid, view_id=None, view_type='form', context=None, toolbar=False, submenu=False): - record_id = context and context.get('base', False) or False - res = super(account_report_print_indicators, self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar,submenu=False) - fields = res.get('fields',{}) - if record_id: - if record_id == 'periods': - fields.update({'base_selection': {'domain': [],'string': 'Periods','relation': 'account.period','context': '', 'selectable': True,'type':'many2many'}}) - view_obj = etree.XML(res['arch']) - child = view_obj.getchildren()[0] - field = etree.Element('field', attrib={'name':'base_selection'}) - child.addprevious(field) - res['arch'] = etree.tostring(view_obj) - return res - - def check_report(self, cr, uid, ids, context=None): - datas = {} - if context is None: - context = {} - data = self.read(cr, uid, ids, [])[0] - data['select_base']=context['base'] - if len(data['base_selection'])>8: - raise osv.except_osv(_('User Error!'),_("Please select maximum 8 records to fit the page-width.")) - datas = { - 'ids': context.get('active_ids', []), - 'model': 'ir.ui.menu', - 'form': data - } - return { - 'type': 'ir.actions.report.xml', - 'report_name': 'print.indicators', - 'datas': datas, - } - -account_report_print_indicators() - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_report/wizard/account_report_print_indicators_view.xml b/addons/account_report/wizard/account_report_print_indicators_view.xml deleted file mode 100644 index 466ed21d3c4..00000000000 --- a/addons/account_report/wizard/account_report_print_indicators_view.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - account.report.print.indicators.form - account.report.print.indicators - form - -
- - - - - - -
- - - account.invoice.supplier.pay - account.invoice - form - - - - - - + + account.invoice.customer.pay + account.invoice + form + + + + + + + + account.invoice.supplier.pay + account.invoice + form + + + + +
diff --git a/addons/account_voucher/account_voucher_report.xml b/addons/account_voucher/account_voucher_report.xml index db1b4279620..785fd91df73 100644 --- a/addons/account_voucher/account_voucher_report.xml +++ b/addons/account_voucher/account_voucher_report.xml @@ -19,6 +19,5 @@ auto="False" header = "False" menu="True"/> - diff --git a/addons/account_voucher/invoice.py b/addons/account_voucher/invoice.py index b930db97823..5560f57ce81 100644 --- a/addons/account_voucher/invoice.py +++ b/addons/account_voucher/invoice.py @@ -24,6 +24,7 @@ from tools.translate import _ class invoice(osv.osv): _inherit = 'account.invoice' + def invoice_pay_customer(self, cr, uid, ids, context={}): if not ids: return [] inv = self.browse(cr, uid, ids[0], context=context) @@ -49,3 +50,5 @@ class invoice(osv.osv): } invoice() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/account_voucher/report/__init__.py b/addons/account_voucher/report/__init__.py index b451c21b6a0..010f6446338 100644 --- a/addons/account_voucher/report/__init__.py +++ b/addons/account_voucher/report/__init__.py @@ -21,3 +21,5 @@ import account_voucher import account_voucher_print + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/account_voucher/report/account_voucher.py b/addons/account_voucher/report/account_voucher.py index c37d921ecbc..7931daffbac 100644 --- a/addons/account_voucher/report/account_voucher.py +++ b/addons/account_voucher/report/account_voucher.py @@ -69,4 +69,6 @@ report_sxw.report_sxw( 'account.voucher', 'addons/account_voucher/report/account_voucher.rml', parser=report_voucher,header="external" -) \ No newline at end of file +) + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/account_voucher/report/account_voucher_print.py b/addons/account_voucher/report/account_voucher_print.py index d39b77d8374..8bd8644c03c 100644 --- a/addons/account_voucher/report/account_voucher_print.py +++ b/addons/account_voucher/report/account_voucher_print.py @@ -92,3 +92,5 @@ report_sxw.report_sxw( 'addons/account_voucher/report/account_voucher_print.rml', parser=report_voucher_print,header="external" ) + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/account_voucher/report/account_voucher_print.rml b/addons/account_voucher/report/account_voucher_print.rml index 358f28b87d5..18735bd7fc2 100755 --- a/addons/account_voucher/report/account_voucher_print.rml +++ b/addons/account_voucher/report/account_voucher_print.rml @@ -181,7 +181,7 @@ Currency: - [[ voucher.currency_id.code ]] + [[ voucher.currency_id.symbol ]] diff --git a/addons/analytic/analytic.py b/addons/analytic/analytic.py index dd727e993b6..f6263bfeb0d 100644 --- a/addons/analytic/analytic.py +++ b/addons/analytic/analytic.py @@ -236,7 +236,6 @@ class account_analytic_account(osv.osv): if not parent_id: return {} parent = self.read(cr, uid, [parent_id], ['partner_id','code'])[0] - childs = self.search(cr, uid, [('parent_id', '=', parent_id)]) if parent['partner_id']: partner = parent['partner_id'][0] else: diff --git a/addons/auction/report/buyer_list.rml b/addons/auction/report/buyer_list.rml index 4ac6e6694e1..c5e9ef9ca7b 100644 --- a/addons/auction/report/buyer_list.rml +++ b/addons/auction/report/buyer_list.rml @@ -75,13 +75,13 @@ Lot - Adj.([[ company.currency_id.code ]]) + Adj.([[ company.currency_id.symbol ]]) Buyer costs([[ o['amount' ]*100 ]]%) - To pay ([[ company.currency_id.code ]]) + To pay ([[ company.currency_id.symbol ]]) diff --git a/addons/base_setup/todo.py b/addons/base_setup/todo.py index ae16f260876..8f16a491bc7 100644 --- a/addons/base_setup/todo.py +++ b/addons/base_setup/todo.py @@ -164,8 +164,8 @@ class res_currency(osv.osv): return [] if isinstance(ids, (int, long)): ids = [ids] - reads = self.read(cr, uid, ids, ['name','code'], context, load='_classic_write') - return [(x['id'], tools.ustr(x['name']) + ' (' + tools.ustr(x['code']) + ')') for x in reads] + reads = self.read(cr, uid, ids, ['name','symbol'], context, load='_classic_write') + return [(x['id'], tools.ustr(x['name']) + ' (' + tools.ustr(x['symbol']) + ')') for x in reads] res_currency() diff --git a/addons/document_email/__init__.py b/addons/document_email/__init__.py deleted file mode 100644 index 40d4f14c4d1..00000000000 --- a/addons/document_email/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python -#-*- coding:utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved -# fp@tinyerp.com -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -# -############################################################################## - -import document_email diff --git a/addons/document_email/__openerp__.py b/addons/document_email/__openerp__.py deleted file mode 100644 index 6f61ba62858..00000000000 --- a/addons/document_email/__openerp__.py +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/env python -#-*- coding:utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved -# fp@tinyerp.com -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -# -############################################################################## - -{ - "name" : "Email Integrated Document", - "version" : "1.1", - "depends" : ["base", "document", "fetchmail","mail_gateway"], - "description": """Email Integrated Document - * Email based Document submission - * user based document submission - """, - 'author': 'OpenERP SA', - 'website': 'http://www.openerp.com', - 'init_xml': [], - 'update_xml': [ - "document_email.xml" - ], - 'demo_xml': [ - - ], - 'installable': True, - 'active': False -} diff --git a/addons/document_email/document_email.py b/addons/document_email/document_email.py deleted file mode 100644 index e4e94fa6c1f..00000000000 --- a/addons/document_email/document_email.py +++ /dev/null @@ -1,115 +0,0 @@ -#!/usr/bin/env python -#-*- coding:utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved -# fp@tinyerp.com -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -# -############################################################################## - -import os -import binascii - -import netsvc - -from osv import osv -from osv import fields -from tools.translate import _ - -logger = netsvc.Logger() - -class email_to_document(osv.osv): - - _name = 'document.email' - _description = "Emails to Documents Gateway" - - _columns = { - 'name':fields.char('Name', size=64, required=True, readonly=False), - 'user_id':fields.many2one('res.users', 'User', required=True), - 'directory_id':fields.many2one('document.directory', 'Directory', required=True), - 'accept_files':fields.char('File Extension', size=1024, required=True), - 'note': fields.text('Description'), - 'server_id': fields.many2one('email.server',"Mail Server", select=True), - } - - _defaults = { - 'accept_files': lambda *a: "['.txt', '.ppt', '.doc', '.xls', '.pdf', '.jpg', '.png']", - 'user_id': lambda self, cr, uid, ctx: uid, - } - - _sql_constraints = [ - ('name_uniq', 'unique (user_id, server_id)', 'You can not configure one serve for multiple directory !'), - ] - - def message_new(self, cr, uid, msg, context): - """ - Automatically calls when new email message arrives - - @param self: The object pointer - @param cr: the current row, from the database cursor, - @param uid: the current user’s ID for security checks - """ - server_id = context.get('server_id', False) - file_pool = self.pool.get('ir.attachment') - if server_id: - ids = self.search(cr, uid, [('server_id', '=', server_id)]) - dr = self.browse(cr, uid, ids[0]) - id = dr.directory_id.id - - partner = self.pool.get('email.server.tools').get_partner(cr, uid, msg.get('from'), context) - ext = eval(dr.accept_files, {}) - attachents = msg.get('attachments', []) - - for attactment in attachents: - file_ext = os.path.splitext(attactment) - if file_ext[1] not in ext: - logger.notifyChannel('document', netsvc.LOG_WARNING, 'file type %s is not allows to process for directory %s' % (file_ext[1], dr.directory_id.name)) - continue - - data_attach = { - 'name': attactment, - 'datas':binascii.b2a_base64(str(attachents.get(attactment))), - 'datas_fname': attactment, - 'description': msg.get('body', 'Mail attachment'), - 'parent_id': id, - 'partner_id':partner.get('partner_id', False), - 'res_model': 'document.directory', - 'res_id': id, - } - file_pool.create(cr, uid, data_attach) - - return id - return 0 - - def message_update(self, cr, uid, ids, vals={}, msg="", default_act=None, context={}): - """ - @param self: The object pointer - @param cr: the current row, from the database cursor, - @param uid: the current user’s ID for security checks, - @param ids: List of update mail’s IDs - """ - logger.notifyChannel('document', netsvc.LOG_WARNING, 'method not implement to keep multipe version of file') - return True -email_to_document() - -class document_directory(osv.osv): - _inherit = 'document.directory' - - _columns = { - 'email_ids':fields.one2many('document.email', 'directory_id', 'Document to Email', required=False), - } -document_directory() diff --git a/addons/document_email/document_email.xml b/addons/document_email/document_email.xml deleted file mode 100644 index 5509d6e8cfb..00000000000 --- a/addons/document_email/document_email.xml +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - document.directory - document.directory - form - - - - - - - - - -
- - - - - - - - - - - - - - - - - - -
-
-
-
-
-
- - - document.email.tree - document.email - tree - - - - - - - - - - - document.email.form - document.email - form - -
- - - - - - - - - - - - - - - - - - - -
-
-
- - - Email to Document - document.email - form - tree,form - - {} - [] - - -
-
diff --git a/addons/hr_payroll/hr_payroll.py b/addons/hr_payroll/hr_payroll.py index bb5edbd8d18..2004e78f5a8 100644 --- a/addons/hr_payroll/hr_payroll.py +++ b/addons/hr_payroll/hr_payroll.py @@ -312,7 +312,6 @@ class hr_contract(osv.osv): _inherit = 'hr.contract' _description = 'Employee Contract' - _columns = { 'permit_no':fields.char('Work Permit No', size=256, required=False, readonly=False), 'passport_id':fields.many2one('hr.passport', 'Passport', required=False), @@ -335,6 +334,7 @@ class payroll_register(osv.osv): """ Payroll Register """ + _name = 'hr.payroll.register' _description = 'Payroll Register' @@ -495,9 +495,9 @@ class payroll_advice(osv.osv): ''' Bank Advice Note ''' + _name = 'hr.payroll.advice' _description = 'Bank Advice Note' - _columns = { 'register_id':fields.many2one('hr.payroll.register', 'Payroll Register', required=False), 'name':fields.char('Name', size=2048, required=True, readonly=False), @@ -557,9 +557,9 @@ class payroll_advice_line(osv.osv): ''' Bank Advice Lines ''' + _name = 'hr.payroll.advice.line' _description = 'Bank Advice Lines' - _columns = { 'advice_id':fields.many2one('hr.payroll.advice', 'Bank Advice', required=False), 'name':fields.char('Bank Account A/C', size=64, required=True, readonly=False), @@ -595,6 +595,7 @@ class contrib_register(osv.osv): ''' Contribution Register ''' + _name = 'hr.contibution.register' _description = 'Contribution Register' @@ -634,6 +635,7 @@ class contrib_register_line(osv.osv): ''' Contribution Register Line ''' + _name = 'hr.contibution.register.line' _description = 'Contribution Register Line' @@ -669,7 +671,6 @@ class payment_category(osv.osv): _name = 'hr.allounce.deduction.categoty' _description = 'Allowance Deduction Heads' - _columns = { 'name':fields.char('Categoty Name', size=64, required=True, readonly=False), 'code':fields.char('Categoty Code', size=64, required=True, readonly=False), @@ -710,7 +711,6 @@ class company_contribution(osv.osv): _name = 'company.contribution' _description = "Company Contribution" - _columns = { 'category_id':fields.many2one('hr.allounce.deduction.categoty', 'Heads', required=False), 'name':fields.char('Name', size=256, required=True, readonly=False), @@ -784,7 +784,6 @@ class company_contribution_line(osv.osv): _name = 'company.contribution.line' _description = 'Allowance Deduction Categoty' _order = 'sequence' - _columns = { 'contribution_id':fields.many2one('company.contribution', 'Contribution', required=False), 'name':fields.char('Name', size=64, required=False, readonly=False), @@ -799,8 +798,8 @@ class company_contribution_line(osv.osv): company_contribution_line() class hr_holidays_status(osv.osv): + _inherit = "hr.holidays.status" - _columns = { 'company_id':fields.many2one('res.company', 'Company', required=False), 'type':fields.selection([ @@ -824,6 +823,7 @@ class hr_payslip(osv.osv): ''' Pay Slip ''' + _name = 'hr.payslip' _description = 'Pay Slip' @@ -1315,6 +1315,7 @@ class hr_payslip_line(osv.osv): ''' Payslip Line ''' + _name = 'hr.payslip.line' _description = 'Payslip Line' @@ -1396,10 +1397,10 @@ class hr_payslip_line_line(osv.osv): ''' Function Line ''' + _name = 'hr.payslip.line.line' _description = 'Function Line' _order = 'sequence' - _columns = { 'slipline_id':fields.many2one('hr.payslip.line', 'Slip Line', required=False), 'name':fields.char('Name', size=64, required=False, readonly=False), @@ -1417,6 +1418,7 @@ class hr_employee(osv.osv): ''' Employee ''' + _inherit = 'hr.employee' _description = 'Employee' diff --git a/addons/hr_payroll/report/__init__.py b/addons/hr_payroll/report/__init__.py index c0f35b40bfc..925b5e4c97d 100755 --- a/addons/hr_payroll/report/__init__.py +++ b/addons/hr_payroll/report/__init__.py @@ -27,4 +27,6 @@ import report_payroll_advice import report_year_salary import report_payroll_register import report_employees_detail -import report_emp_salary_structure \ No newline at end of file +import report_emp_salary_structure + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/hr_payroll/report/payslip.rml b/addons/hr_payroll/report/payslip.rml index cdbbe6bd5f4..18a2bc7230c 100755 --- a/addons/hr_payroll/report/payslip.rml +++ b/addons/hr_payroll/report/payslip.rml @@ -505,13 +505,13 @@ - Total Earnings([[ o.company_id and o.company_id.currency_id.code or '' ]]) + Total Earnings([[ o.company_id and o.company_id.currency_id.symbol or '' ]]) [[ formatLang(o.allounce + o.basic) ]] [[ o.company_id and o.company_id.currency_id.symbol ]] - Total Deductions([[ o.company_id and o.company_id.currency_id.code or '' ]]) + Total Deductions([[ o.company_id and o.company_id.currency_id.symbol or '' ]]) [[ formatLang(o.deduction) ]] [[ o.company_id and o.company_id.currency_id.symbol or '' ]] @@ -558,7 +558,7 @@ - Net Amount([[ o.company_id and o.company_id.currency_id.code or '' ]]) + Net Amount([[ o.company_id and o.company_id.currency_id.symbol or '' ]]) [[ formatLang(o.net) ]] [[ o.company_id and o.company_id.currency_id.symbol or '' ]] diff --git a/addons/hr_payroll/report/report_emp_salary_structure.py b/addons/hr_payroll/report/report_emp_salary_structure.py index e875e774b43..6d22ab2a2a2 100644 --- a/addons/hr_payroll/report/report_emp_salary_structure.py +++ b/addons/hr_payroll/report/report_emp_salary_structure.py @@ -24,7 +24,6 @@ import time from report import report_sxw -from tools import amount_to_text_en class salary_structure_report(report_sxw.rml_parse): @@ -89,13 +88,6 @@ class salary_structure_report(report_sxw.rml_parse): report_sxw.report_sxw('report.salary.structure', 'hr.employee', 'hr_payroll/report/report_emp_salary_structure.rml', parser=salary_structure_report) - - - - - - - # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_payroll/report/report_employees_detail.py b/addons/hr_payroll/report/report_employees_detail.py index 67481dc1a7d..a71fda1492c 100644 --- a/addons/hr_payroll/report/report_employees_detail.py +++ b/addons/hr_payroll/report/report_employees_detail.py @@ -1,3 +1,27 @@ +#!/usr/bin/env python +#-*- coding:utf-8 -*- + +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# d$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + import time import locale import datetime @@ -48,7 +72,7 @@ class employees_salary_report(rml_parse.rml_parse): m = datetime.date(cy, cm, 1).strftime('%b') mnth_name.append(m) self.mnths.append(str(cm)+'-'+str(cy)) - + if cm == 12: cm = 0 cy = ly diff --git a/addons/hr_payroll/report/report_payroll_advice.py b/addons/hr_payroll/report/report_payroll_advice.py index 1c7fbd91357..ec79d2a85e1 100644 --- a/addons/hr_payroll/report/report_payroll_advice.py +++ b/addons/hr_payroll/report/report_payroll_advice.py @@ -1,5 +1,30 @@ +#!/usr/bin/env python +#-*- coding:utf-8 -*- + +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# d$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + import time from datetime import datetime + from report import report_sxw from tools import amount_to_text_en diff --git a/addons/hr_payroll/report/report_payroll_register.py b/addons/hr_payroll/report/report_payroll_register.py index e991ede4903..a67fc1e6b70 100644 --- a/addons/hr_payroll/report/report_payroll_register.py +++ b/addons/hr_payroll/report/report_payroll_register.py @@ -1,12 +1,35 @@ +#!/usr/bin/env python +#-*- coding:utf-8 -*- + +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# d$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + import time from datetime import datetime from report import report_sxw -from tools import amount_to_text_en class report_payroll_register(report_sxw.rml_parse): def __init__(self, cr, uid, name, context): super(report_payroll_register, self).__init__(cr, uid, name, context) - + self.total_amount = 0.00 self.total_bysal = 0.00 self.localcontext.update({ @@ -28,7 +51,7 @@ class report_payroll_register(report_sxw.rml_parse): self.grows = 0.0 self.deduct = 0.0 self.net = 0.0 - + def add_line(self, line): self.basic += line.basic self.other += line.other_pay @@ -36,37 +59,37 @@ class report_payroll_register(report_sxw.rml_parse): self.grows += line.grows self.deduct += line.deduction self.net += line.net - + def get_basic(self,obj): for line in obj.line_ids: self.basic += line.basic return self.basic - + def get_other(self,obj): for line in obj.line_ids: self.other += line.other_pay return self.other - + def get_allow(self,obj): for line in obj.line_ids: self.allow += line.allounce return self.allow - + def get_grows(self,obj): for line in obj.line_ids: self.grows += line.grows return self.grows - + def get_deduct(self,obj): for line in obj.line_ids: self.deduct += line.deduction return self.deduct - + def get_net(self,obj): for line in obj.line_ids: self.net += line.net return self.net - + def get_month(self, indate): new_date = datetime.strptime(indate, '%Y-%m-%d') out_date = new_date.strftime('%B')+'-'+new_date.strftime('%Y') @@ -75,10 +98,12 @@ class report_payroll_register(report_sxw.rml_parse): def get_no(self): self.no += 1 return self.no - + report_sxw.report_sxw( - 'report.hr.payroll.register.sheet', - 'hr.payroll.register', - 'hr_payroll/report/payroll_register.rml', + 'report.hr.payroll.register.sheet', + 'hr.payroll.register', + 'hr_payroll/report/payroll_register.rml', parser=report_payroll_register -) +) + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/hr_payroll/report/report_payslip.py b/addons/hr_payroll/report/report_payslip.py index 7de5dfee0d9..3d6a4fc550a 100755 --- a/addons/hr_payroll/report/report_payslip.py +++ b/addons/hr_payroll/report/report_payslip.py @@ -22,95 +22,80 @@ # ############################################################################## -import time from datetime import datetime + from report import report_sxw from tools import amount_to_text_en class payslip_report(report_sxw.rml_parse): - def __init__(self, cr, uid, name, context): - super(payslip_report, self).__init__(cr, uid, name, context) - self.localcontext.update({ - 'convert' : self.convert, - 'get_month' : self.get_month, - 'get_earnings': self.get_earnings, - 'get_deductions':self.get_deductions, - 'get_leave':self.get_leave, - 'get_others':self.get_others, - }) + def __init__(self, cr, uid, name, context): + super(payslip_report, self).__init__(cr, uid, name, context) + self.localcontext.update({ + 'convert': self.convert, + 'get_month': self.get_month, + 'get_earnings': self.get_earnings, + 'get_deductions':self.get_deductions, + 'get_leave':self.get_leave, + 'get_others':self.get_others, + }) + def convert(self, amount, cur): + amt_en = amount_to_text_en.amount_to_text(amount, 'en', cur) + return amt_en - def convert(self,amount, cur): - amt_en = amount_to_text_en.amount_to_text(amount,'en',cur) - return amt_en + def get_others(self, obj): + payslip_line = self.pool.get('hr.payslip.line') + res = [] + ids = [] + for id in range(len(obj)): + if obj[id].category_id.type in ('advance', 'loan', 'otherpay', 'otherdeduct', 'installment'): + ids.append(obj[id].id) + if len(ids): + res = payslip_line.browse(self.cr, self.uid, ids) + return res - def get_others(self,obj): - res = [] - ids = [] - for id in range(len(obj)): - if obj[id].category_id.type in ('advance','loan','otherpay','otherdeduct','installment'): - ids.append(obj[id].id) - payslip_line = self.pool.get('hr.payslip.line') - if len(ids): - res = payslip_line.browse(self.cr, self.uid, ids) - return res + def get_leave(self, obj): + payslip_line = self.pool.get('hr.payslip.line') + res = [] + ids = [] + for id in range(len(obj)): + if obj[id].type == 'leaves': + ids.append(obj[id].id) + if len(ids): + res = payslip_line.browse(self.cr, self.uid, ids) + return res - def get_leave(self,obj): - res = [] - ids = [] - for id in range(len(obj)): - if obj[id].type == 'leaves': - ids.append(obj[id].id) - payslip_line = self.pool.get('hr.payslip.line') - if len(ids): - res = payslip_line.browse(self.cr, self.uid, ids) - return res + def get_earnings(self, obj): + payslip_line = self.pool.get('hr.payslip.line') + res = [] + ids = [] + for id in range(len(obj)): + if obj[id].category_id.type == 'allowance' and obj[id].type != 'leaves': + ids.append(obj[id].id) + if len(ids): + res = payslip_line.browse(self.cr, self.uid, ids) + return res - def get_earnings(self,obj): - res = [] - ids = [] - for id in range(len(obj)): - if obj[id].category_id.type == 'allowance' and obj[id].type != 'leaves': - ids.append(obj[id].id) - payslip_line = self.pool.get('hr.payslip.line') - if len(ids): - res = payslip_line.browse(self.cr, self.uid, ids) - return res + def get_deductions(self, obj): + payslip_line = self.pool.get('hr.payslip.line') + res = [] + ids = [] + for id in range(len(obj)): + if obj[id].category_id.type == 'deduction' and obj[id].type != 'leaves': + ids.append(obj[id].id) + if len(ids): + res = payslip_line.browse(self.cr, self.uid, ids) + return res - def get_deductions(self,obj): - res = [] - ids = [] - for id in range(len(obj)): - if obj[id].category_id.type == 'deduction' and obj[id].type != 'leaves': - ids.append(obj[id].id) - payslip_line = self.pool.get('hr.payslip.line') - if len(ids): - res = payslip_line.browse(self.cr, self.uid, ids) - return res - - def get_month(self,obj): - res = { - 'mname':'' - } - date = datetime.strptime(obj.date, '%Y-%m-%d') - res['mname']= date.strftime('%B')+"-"+date.strftime('%Y') - return res['mname'] + def get_month(self, obj): + res = { + 'mname':'' + } + date = datetime.strptime(obj.date, '%Y-%m-%d') + res['mname']= date.strftime('%B')+"-"+date.strftime('%Y') + return res['mname'] report_sxw.report_sxw('report.payslip.pdf', 'hr.payslip', 'hr_payroll/report/payslip.rml', parser=payslip_report) - - - - - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - - - - - - - - - +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/hr_payroll/report/report_year_salary.py b/addons/hr_payroll/report/report_year_salary.py index 2db2d7d7e2d..f084eb2d340 100755 --- a/addons/hr_payroll/report/report_year_salary.py +++ b/addons/hr_payroll/report/report_year_salary.py @@ -1,5 +1,27 @@ -import time -import locale +#!/usr/bin/env python +#-*- coding:utf-8 -*- + +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# d$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + import datetime from report import report_sxw import time @@ -51,7 +73,6 @@ class year_salary_report(rml_parse.rml_parse): def get_employee(self,form): ls1=[] ls = [] - periods = [] tol_mnths=['Total',0,0,0,0,0,0,0,0,0,0,0,0] emp = pooler.get_pool(self.cr.dbname).get('hr.employee') emp_ids = form['employee_ids'] @@ -98,5 +119,5 @@ class year_salary_report(rml_parse.rml_parse): report_sxw.report_sxw('report.year.salary', 'hr.payslip', 'hr_payroll/report/report_year_report.rml', parser=year_salary_report,header='internal landscape') - +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_payroll/report/rml_parse.py b/addons/hr_payroll/report/rml_parse.py index 0eb783de39f..21fbda2f774 100755 --- a/addons/hr_payroll/report/rml_parse.py +++ b/addons/hr_payroll/report/rml_parse.py @@ -19,15 +19,10 @@ # along with this program. If not, see . # ############################################################################## +from time import strptime + from report import report_sxw -import xml.dom.minidom -import os, time -import osv import re -import tools -import pooler -import re -import sys from lxml import etree @@ -56,12 +51,14 @@ class rml_parse(report_sxw.rml_parse): return new else: return self.comma_me(new) + def _ellipsis(self, string, maxlen=100, ellipsis = '...'): ellipsis = ellipsis or '' try: return string[:maxlen - len(ellipsis) ] + (ellipsis, '')[len(string) < maxlen] - except Exception, e: + except Exception: return False + def _strip_name(self, name, maxlen=50): return self._ellipsis(name, maxlen, '...') @@ -119,7 +116,6 @@ class rml_parse(report_sxw.rml_parse): def repair_string(self,chaine): ast = list(chaine) UnicodeAst = [] - _previouslyfound = False i = 0 while i < len(ast): elem = ast[i] @@ -136,21 +132,6 @@ class rml_parse(report_sxw.rml_parse): i += i + 1 return "".join(UnicodeAst) - def ReencodeAscii(self,str): - print sys.stdin.encoding - try: - Stringer = str.decode("ascii") - except UnicodeEncodeError: - print "REENCODING ERROR" - return str.encode("ascii") - except UnicodeDecodeError: - print "DECODING ERROR" - return str.encode("ascii") - - else: - print Stringer - return Stringer - def _add_header(self, node, header='external'): if header=='internal': rml_head = self.rml_header2 @@ -169,3 +150,5 @@ class rml_parse(report_sxw.rml_parse): else : found.getparent().replace(found,tag) return True + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/hr_payroll/wizard/__init__.py b/addons/hr_payroll/wizard/__init__.py index 93222a2e343..4fb72fb4695 100755 --- a/addons/hr_payroll/wizard/__init__.py +++ b/addons/hr_payroll/wizard/__init__.py @@ -24,3 +24,5 @@ import hr_payroll_employees_detail #import hr_payroll_create_analytic import hr_payroll_year_salary + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/hr_payroll_account/__init__.py b/addons/hr_payroll_account/__init__.py index 81979b0ae58..de1b7b6c0ba 100644 --- a/addons/hr_payroll_account/__init__.py +++ b/addons/hr_payroll_account/__init__.py @@ -21,3 +21,5 @@ ############################################################################## import hr_payroll_account + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/hr_payroll_account/__openerp__.py b/addons/hr_payroll_account/__openerp__.py index d65570a1ad9..9da1394382a 100644 --- a/addons/hr_payroll_account/__openerp__.py +++ b/addons/hr_payroll_account/__openerp__.py @@ -46,3 +46,5 @@ 'installable': True, 'active': False, } + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/hr_payroll_account/hr_payroll_account.py b/addons/hr_payroll_account/hr_payroll_account.py index d9f963ed537..629aecc9255 100644 --- a/addons/hr_payroll_account/hr_payroll_account.py +++ b/addons/hr_payroll_account/hr_payroll_account.py @@ -19,7 +19,6 @@ # along with this program. If not, see . # ############################################################################## - import time import netsvc from datetime import date, datetime, timedelta @@ -668,3 +667,4 @@ class account_move_link_slip(osv.osv): } account_move_link_slip() +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/hr_payroll_account/hr_payroll_account_view.xml b/addons/hr_payroll_account/hr_payroll_account_view.xml index 43734060243..f32141a9741 100644 --- a/addons/hr_payroll_account/hr_payroll_account_view.xml +++ b/addons/hr_payroll_account/hr_payroll_account_view.xml @@ -253,6 +253,5 @@
- diff --git a/addons/hr_payroll_account/hr_payroll_account_workflow.xml b/addons/hr_payroll_account/hr_payroll_account_workflow.xml index f3c0eaccb06..ff627f2619d 100644 --- a/addons/hr_payroll_account/hr_payroll_account_workflow.xml +++ b/addons/hr_payroll_account/hr_payroll_account_workflow.xml @@ -1,7 +1,6 @@ - account_check @@ -28,6 +27,5 @@ cancel_sheet - diff --git a/addons/l10n_be/__openerp__.py b/addons/l10n_be/__openerp__.py index 05de2e74294..bbc56b91ebb 100644 --- a/addons/l10n_be/__openerp__.py +++ b/addons/l10n_be/__openerp__.py @@ -42,7 +42,6 @@ 'author': 'OpenERP SA', 'depends': [ 'account', - 'account_report', 'base_vat', 'base_iban', 'account_chart', @@ -59,7 +58,7 @@ 'fiscal_templates.xml', 'security/ir.model.access.csv' ], - 'demo_xml': ['account.report.report.csv'], + 'demo_xml': [], 'installable': True, 'certificate': '0031977724637', } diff --git a/addons/l10n_be/account.report.report.csv b/addons/l10n_be/account.report.report.csv deleted file mode 100644 index 8bf965c741c..00000000000 --- a/addons/l10n_be/account.report.report.csv +++ /dev/null @@ -1,21 +0,0 @@ -"expression","note","parent_id","sequence","badness_limit","goodness_limit","type","code","name" -0,,,,0,1,"indicator","BILAN","Bilan" -"report('BIMMO','BSTOCK','BREAL','BDISPO')",,"BILAN",,0,1,"fiscal","Actif","Actif" -"balance('2')",,"Actif",,0,1,"indicator","BIMMO","Valeurs immobilisées" -"balance('3')",,"Actif",2,0,1,"indicator","BSTOCK","Stocks" -"balance('4')",,"Actif",3,0,1,"indicator","BREAL","Réalisable" -"balance('5')",,"Actif",4,0,1,"fiscal","BDISPO","Disponible" -"report('BCAP') + report('BRESNET')",,"BILAN",1,0,1,"fiscal","PASSIF","Passif" -"balance('1')",,"PASSIF",1,0,1,"indicator","BCAP","Capitaux propores" -"-balance('7')+balance('6')",,"PASSIF",,0,1,"fiscal","BRESNET","Résultat net" -0,,,,0,1,"fiscal","CRES","Compte des résultats" -"report('CCHAR','CBENEF')",,"CRES",,0,1,"fiscal","CRESACTIF","Résultat Actif" -"balance('6')",,"CRESACTIF",,0,1,"fiscal","CCHAR","Total des charges" -"report('CRESPROD')",,"CRES",,0,1,"fiscal","CRESPASSIF","Résultat Passif" -"-balance('7')",,"CRESPASSIF",,0,1,"fiscal","CRESPROD","Total des produits" -"-balance('7')+balance('6')",,"CRESACTIF",,0,1,"fiscal","CBENEF","Résultat (Bénéfice)" -0,,,,0,1,"indicator","IIMMO","Immobilisations" -"balance('1')/balance(map(str(range(21,29))))","Dans une entreprise normalement équilibrée, les valeurs immobilisées sont couvertes en premier lieu par les capitaux propres et, en second lieu, par tout ou partie du passif à long terme. Idéalement, ce ratio (rapport entre capitaux permanents et les valeurs immobilisées) doit être suppérieur à l'unité.","IIMMO",,0,1,"indicator","CIMMO","Couverture des immobilisations" -0,,,,0,1,"indicator","ITRE","Trésorerie" -"balance('3','4','5') / balance('101','13','15','16','17','18')","Détermine si l'entreprise a la possibilité de s'acquitter de ses dettes à court terme dans des conditions normales. Calculé comme suit: (Stocks + Réalisable + Disponible ) / Passif exigible à court terme","ITRE",,0,1,"indicator","IFR","Indice du fond de roulement" -"balance('4','5') / balance('101','13','15','16','17','18')",,"ITRE",,0,1,"indicator","RTRE","Ratio de trésorerie" diff --git a/addons/l10n_ch/report/bvr_invoice_report.rml b/addons/l10n_ch/report/bvr_invoice_report.rml index 46798ae7da4..ee69eedee2e 100755 --- a/addons/l10n_ch/report/bvr_invoice_report.rml +++ b/addons/l10n_ch/report/bvr_invoice_report.rml @@ -241,7 +241,7 @@ [[ round(l.discount) ]] - [[ comma_me(l.price_subtotal) ]] [[o.currency_id.code ]] + [[ comma_me(l.price_subtotal) ]] [[o.currency_id.symbol ]] @@ -293,7 +293,7 @@ Total (excl. taxes): - [[ comma_me(o.amount_untaxed) ]] [[o.currency_id.code ]] + [[ comma_me(o.amount_untaxed) ]] [[o.currency_id.symbol ]] @@ -301,7 +301,7 @@ Taxes: - [[ comma_me(o.amount_tax) ]] [[o.currency_id.code ]] + [[ comma_me(o.amount_tax) ]] [[o.currency_id.symbol ]] @@ -309,7 +309,7 @@ Total (incl. taxes): - [[ comma_me(o.amount_total) ]] [[o.currency_id.code ]] + [[ comma_me(o.amount_total) ]] [[o.currency_id.symbol ]] diff --git a/addons/l10n_ch/wizard/create_dta.py b/addons/l10n_ch/wizard/create_dta.py index d3e2856387d..5de49008ae2 100644 --- a/addons/l10n_ch/wizard/create_dta.py +++ b/addons/l10n_ch/wizard/create_dta.py @@ -405,7 +405,7 @@ def _create_dta(obj, cr, uid, data, context=None): v['sequence'] = str(seq).rjust(5).replace(' ', '0') v['amount_to_pay']= str(pline.amount_currency).replace('.', ',') v['number'] = pline.name - v['currency'] = pline.currency.code + v['currency'] = pline.currency.symbol v['partner_bank_name'] = pline.bank_id.bank.name or False v['partner_bank_clearing'] = pline.bank_id.bank.clearing or False diff --git a/addons/l10n_fr/__openerp__.py b/addons/l10n_fr/__openerp__.py index 0de26734781..287cdf47227 100644 --- a/addons/l10n_fr/__openerp__.py +++ b/addons/l10n_fr/__openerp__.py @@ -35,7 +35,7 @@ Credits: Sistheo Zeekom CrysaLEAD """, - "depends" : ['base', 'account', 'account_chart', 'account_report', 'base_vat'], + "depends" : ['base', 'account', 'account_chart', 'base_vat'], "init_xml" : [], "update_xml" : [ "fr_report_demo.xml", @@ -44,7 +44,6 @@ Credits: Sistheo Zeekom CrysaLEAD "fr_pcg_taxes_demo.xml", "fr_tax_demo.xml", "fr_fiscal_templates_demo.xml", - "fr_pcg_account_report_demo.xml", "security/ir.model.access.csv", "wizard/fr_report_bilan_view.xml", "wizard/fr_report_compute_resultant_view.xml", diff --git a/addons/l10n_fr/fr_pcg_account_report_demo.xml b/addons/l10n_fr/fr_pcg_account_report_demo.xml deleted file mode 100644 index 3e195d4f8f4..00000000000 --- a/addons/l10n_fr/fr_pcg_account_report_demo.xml +++ /dev/null @@ -1,824 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/addons/l10n_lu/__openerp__.py b/addons/l10n_lu/__openerp__.py index d1f6ba49905..c7fd50ad037 100644 --- a/addons/l10n_lu/__openerp__.py +++ b/addons/l10n_lu/__openerp__.py @@ -32,7 +32,7 @@ This module installs: *the main taxes used in Luxembourg""", 'author': 'OpenERP SA', 'website': 'http://openerp.com', - 'depends': ['account', 'account_report', 'base_vat', 'base_iban'], + 'depends': ['account', 'base_vat', 'base_iban'], 'init_xml': [], 'update_xml': [ 'account.tax.code.template.csv', @@ -42,7 +42,7 @@ This module installs: 'wizard/print_vat_view.xml' ], 'test': ['test/l10n_lu_report.yml'], - 'demo_xml': ['account.report.report.csv'], + 'demo_xml': [], 'installable': True, 'active': False, 'certificate': '0078164766621', diff --git a/addons/l10n_lu/account.report.report.csv b/addons/l10n_lu/account.report.report.csv deleted file mode 100644 index 89e497ce8c6..00000000000 --- a/addons/l10n_lu/account.report.report.csv +++ /dev/null @@ -1,21 +0,0 @@ -"expression","note","parent_id","sequence","badness_limit","goodness_limit","type","code","name" -0,,,,0,1,"indicator","BILAN","Bilan" -"report('BIMMO','BSTOCK','BREAL','BDISPO')",,"BILAN",,0,1,"fiscal","Actif","Actif" -"balance(['2'])",,"Actif",,0,1,"indicator","BIMMO","Valeurs immobilisées" -"balance(['3']",,"Actif",2,0,1,"indicator","BSTOCK","Stocks" -"balance(['4'])",,"Actif",3,0,1,"indicator","BREAL","Réalisable" -"balance(['5'])",,"Actif",4,0,1,"fiscal","BDISPO","Disponible" -"report('BCAP') + report('BRESNET')",,"BILAN",1,0,1,"fiscal","PASSIF","Passif" -"balance(['1'])",,"PASSIF",1,0,1,"indicator","BCAP","Capitaux propores" -"-balance(['7'])+balance(['6'])",,"PASSIF",,0,1,"fiscal","BRESNET","Résultat net" -0,,,,0,1,"fiscal","CRES","Compte des résultats" -"report('CCHAR','CBENEF')",,"CRES",,0,1,"fiscal","CRESACTIF","Résultat Actif" -"balance(['6'])",,"CRESACTIF",,0,1,"fiscal","CCHAR","Total des charges" -"report('CRESPROD')",,"CRES",,0,1,"fiscal","CRESPASSIF","Résultat Passif" -"-balance(['7'])",,"CRESPASSIF",,0,1,"fiscal","CRESPROD","Total des produits" -"-balance(['7'])+balance(['6'])",,"CRESACTIF",,0,1,"fiscal","CBENEF","Résultat (Bénéfice)" -0,,,,0,1,"indicator","IIMMO","Immobilisations" -"balance(['1'])/balance(map(str(range(21,29))))","Dans une entreprise normalement équilibrée, les valeurs immobilisées sont couvertes en premier lieu par les capitaux propres et, en second lieu, par tout ou partie du passif à long terme. Idéalement, ce ratio (rapport entre capitaux permanents et les valeurs immobilisées) doit être suppérieur à l'unité.","IIMMO",,0,1,"indicator","CIMMO","Couverture des immobilisations" -0,,,,0,1,"indicator","ITRE","Trésorerie" -"balance(['3','4','5']) / balance(['101','13','15','16','17','18'])","Détermine si l'entreprise a la possibilité de s'acquitter de ses dettes à court terme dans des conditions normales. Calculé comme suit: (Stocks + Réalisable + Disponible ) / Passif exigible à court terme","ITRE",,0,1,"indicator","IFR","Indice du fond de roulement" -"balance(['4','5']) / balance(['101','13','15','16','17','18'])",,"ITRE",,0,1,"indicator","RTRE","Ratio de trésorerie" diff --git a/addons/report_intrastat/report/invoice.rml b/addons/report_intrastat/report/invoice.rml index 08a1ab14fe0..ac9eeef69c3 100644 --- a/addons/report_intrastat/report/invoice.rml +++ b/addons/report_intrastat/report/invoice.rml @@ -330,7 +330,7 @@
[[ repeatIn(o.invoice_line,'l') ]] - + [[ l.name ]] @@ -360,7 +360,7 @@ [[ formatLang(l.price_subtotal) ]] - [[ o.currency_id.code ]] + [[ o.currency_id.symbol ]] @@ -437,7 +437,7 @@ - + Total (excl. taxes): @@ -446,14 +446,14 @@ [[ formatLang(o.amount_untaxed) ]] - [[ o.currency_id.code ]] + [[ o.currency_id.symbol ]] - + Taxes: @@ -462,14 +462,14 @@ [[ formatLang(o.amount_tax) ]] - [[ o.currency_id.code ]] + [[ o.currency_id.symbol ]] - + Total (inclu. taxes): @@ -478,7 +478,7 @@ [[ formatLang(o.amount_total) ]] - [[ o.currency_id.code ]] + [[ o.currency_id.symbol ]] diff --git a/addons/sale/company.py b/addons/sale/company.py index 52d513f6dc9..2b310925107 100644 --- a/addons/sale/company.py +++ b/addons/sale/company.py @@ -19,7 +19,7 @@ # ############################################################################## -from osv import osv,fields +from osv import osv, fields class company(osv.osv): _inherit = 'res.company' diff --git a/addons/sale/product.py b/addons/sale/product.py index 95d45c29575..cf86f49f583 100644 --- a/addons/sale/product.py +++ b/addons/sale/product.py @@ -30,10 +30,10 @@ class product_product(osv.osv): if context is None: context = {} if name == 'pricelist_purchase': - pricelist_ids = pricelist_obj.search(cr,uid,[('type','=','purchase')]) + pricelist_ids = pricelist_obj.search(cr, uid, [('type', '=', 'purchase')]) else: - pricelist_ids = pricelist_obj.search(cr,uid,[('type','=','sale')]) - pricelist_browse = pricelist_obj.browse(cr,uid,pricelist_ids) + pricelist_ids = pricelist_obj.search(cr, uid, [('type', '=', 'sale')]) + pricelist_browse = pricelist_obj.browse(cr, uid, pricelist_ids) for product in self.browse(cr, uid, ids, context): result[product.id] = "" for pricelist in pricelist_browse: diff --git a/addons/sale/report/sale_order.py b/addons/sale/report/sale_order.py index 88a2d32c490..430e1a03f76 100644 --- a/addons/sale/report/sale_order.py +++ b/addons/sale/report/sale_order.py @@ -30,7 +30,7 @@ class order(report_sxw.rml_parse): 'time': time, }) -report_sxw.report_sxw('report.sale.order','sale.order','addons/sale/report/sale_order.rml',parser=order, header="external") +report_sxw.report_sxw('report.sale.order', 'sale.order', 'addons/sale/report/sale_order.rml', parser=order, header="external") # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale/report/sale_report.py b/addons/sale/report/sale_report.py index 3590a87c4f5..25046063391 100644 --- a/addons/sale/report/sale_report.py +++ b/addons/sale/report/sale_report.py @@ -20,7 +20,7 @@ ############################################################################## import tools -from osv import fields,osv +from osv import fields, osv class sale_report(osv.osv): _name = "sale.report" diff --git a/addons/sale/sale.py b/addons/sale/sale.py index 409be07a765..0d7b2a6a606 100644 --- a/addons/sale/sale.py +++ b/addons/sale/sale.py @@ -54,7 +54,7 @@ def _incoterm_get(self, cr, uid, context=None): class sale_order(osv.osv): _name = "sale.order" _description = "Sale Order" - + def copy(self, cr, uid, id, default=None, context=None): if context is None: context = {} @@ -109,7 +109,7 @@ class sale_order(osv.osv): for id in ids: res[id] = [0.0, 0.0] cr.execute('''SELECT - p.sale_id,sum(m.product_qty), mp.state as mp_state + p.sale_id, sum(m.product_qty), mp.state as mp_state FROM stock_move m LEFT JOIN @@ -117,7 +117,7 @@ class sale_order(osv.osv): LEFT JOIN procurement_order mp on (mp.move_id=m.id) WHERE - p.sale_id IN %s GROUP BY mp.state, p.sale_id''',(tuple(ids),)) + p.sale_id IN %s GROUP BY mp.state, p.sale_id''', (tuple(ids),)) for oid, nbr, mp_state in cr.fetchall(): if mp_state == 'cancel': continue @@ -321,7 +321,7 @@ class sale_order(osv.osv): def action_cancel_draft(self, cr, uid, ids, *args): if not len(ids): return False - cr.execute('select id from sale_order_line where order_id IN %s and state=%s',(tuple(ids),'cancel')) + cr.execute('select id from sale_order_line where order_id IN %s and state=%s', (tuple(ids), 'cancel')) line_ids = map(lambda x: x[0], cr.fetchall()) self.write(cr, uid, ids, {'state': 'draft', 'invoice_ids': [], 'shipped': 0}) self.pool.get('sale.order.line').write(cr, uid, line_ids, {'invoiced': False, 'state': 'draft', 'invoice_lines': [(6, 0, [])]}) @@ -409,11 +409,11 @@ class sale_order(osv.osv): def _make_invoice(self, cr, uid, order, lines, context=None): journal_obj = self.pool.get('account.journal') inv_obj = self.pool.get('account.invoice') - + obj_invoice_line = self.pool.get('account.invoice.line') if context is None: context = {} - journal_ids = journal_obj.search(cr, uid, [('type', '=','sale'),('company_id', '=', order.company_id.id)], limit=1) + journal_ids = journal_obj.search(cr, uid, [('type', '=', 'sale'), ('company_id', '=', order.company_id.id)], limit=1) if not journal_ids: raise osv.except_osv(_('Error !'), _('There is no sale journal defined for this company: "%s" (id:%d)') % (order.company_id.name, order.company_id.id)) @@ -431,7 +431,7 @@ class sale_order(osv.osv): for preinv in order.invoice_ids: if preinv.state not in ('cancel',) and preinv.id not in from_line_invoice_ids: for preline in preinv.invoice_line: - inv_line_id = self.pool.get('account.invoice.line').copy(cr, uid, preline.id, {'invoice_id': False, 'price_unit': -preline.price_unit}) + inv_line_id = obj_invoice_line.copy(cr, uid, preline.id, {'invoice_id': False, 'price_unit': -preline.price_unit}) lines.append(inv_line_id) inv = { 'name': order.client_order_ref or order.name, @@ -448,8 +448,8 @@ class sale_order(osv.osv): 'comment': order.note, 'payment_term': pay_term, 'fiscal_position': order.fiscal_position.id or order.partner_id.property_account_position.id, - 'date_invoice' : context.get('date_invoice',False), - 'company_id' : order.company_id.id, + 'date_invoice': context.get('date_invoice',False), + 'company_id': order.company_id.id, 'user_id':order.user_id and order.user_id.id or False } inv.update(self._inv_get(cr, uid, order)) @@ -474,11 +474,11 @@ class sale_order(osv.osv): for record in self.pool.get('sale.order').browse(cr, uid, id).invoice_ids: inv_ids1.add(record.id) inv_ids = list(inv_ids1.difference(inv_ids)) - + result = mod_obj._get_id(cr, uid, 'account', 'invoice_form') res = mod_obj.read(cr, uid, result, ['res_id']) result = { - 'name': 'Invoices', + 'name': 'Customer Invoices', 'view_type': 'form', 'view_mode': 'form', 'view_id': [res['res_id']], @@ -498,6 +498,7 @@ class sale_order(osv.osv): invoice_ids = [] picking_obj = self.pool.get('stock.picking') invoice = self.pool.get('account.invoice') + obj_sale_order_line = self.pool.get('sale.order.line') if context is None: context = {} # If date was specified, use it as date invoiced, usefull when invoices are generated this month and put the @@ -511,7 +512,7 @@ class sale_order(osv.osv): continue elif (line.state in states): lines.append(line.id) - created_lines = self.pool.get('sale.order.line').invoice_line_create(cr, uid, lines) + created_lines = obj_sale_order_line.invoice_line_create(cr, uid, lines) if created_lines: invoices.setdefault(o.partner_id.id, []).append((o, created_lines)) if not invoices: @@ -521,7 +522,7 @@ class sale_order(osv.osv): return i.id for val in invoices.values(): if grouped: - res = self._make_invoice(cr, uid, val[0][0], reduce(lambda x,y: x + y, [l for o,l in val], []), context=context) + res = self._make_invoice(cr, uid, val[0][0], reduce(lambda x, y: x + y, [l for o, l in val], []), context=context) invoice_ref = '' for o, l in val: invoice_ref += o.name + '|' @@ -589,11 +590,12 @@ class sale_order(osv.osv): # Update the sale order state. # if order.state == 'invoice_except': - self.write(cr, uid, [order.id], {'state' : 'progress'}, context=context) + self.write(cr, uid, [order.id], {'state': 'progress'}, context=context) return True def action_cancel(self, cr, uid, ids, context=None): + wf_service = netsvc.LocalService("workflow") if context is None: context = {} sale_order_line_obj = self.pool.get('sale.order.line') @@ -605,7 +607,6 @@ class sale_order(osv.osv): _('You must first cancel all picking attached to this sale order.')) for r in self.read(cr, uid, ids, ['picking_ids']): for pick in r['picking_ids']: - wf_service = netsvc.LocalService("workflow") wf_service.trg_validate(uid, 'stock.picking', pick, 'button_cancel', cr) for inv in sale.invoice_ids: if inv.state not in ('draft', 'cancel'): @@ -614,7 +615,6 @@ class sale_order(osv.osv): _('You must first cancel all invoices attached to this sale order.')) for r in self.read(cr, uid, ids, ['invoice_ids']): for inv in r['invoice_ids']: - wf_service = netsvc.LocalService("workflow") wf_service.trg_validate(uid, 'account.invoice', inv, 'invoice_cancel', cr) sale_order_line_obj.write(cr, uid, [l.id for l in sale.order_line], {'state': 'cancel'}) @@ -681,6 +681,7 @@ class sale_order(osv.osv): return canceled def action_ship_create(self, cr, uid, ids, *args): + wf_service = netsvc.LocalService("workflow") picking_id = False company = self.pool.get('res.users').browse(cr, uid, uid).company_id for order in self.browse(cr, uid, ids, context={}): @@ -756,11 +757,9 @@ class sale_order(osv.osv): val = {} for proc_id in proc_ids: - wf_service = netsvc.LocalService("workflow") wf_service.trg_validate(uid, 'procurement.order', proc_id, 'button_confirm', cr) if picking_id: - wf_service = netsvc.LocalService("workflow") wf_service.trg_validate(uid, 'stock.picking', picking_id, 'button_confirm', cr) if order.state == 'shipping_except': @@ -892,7 +891,7 @@ class sale_order_line(osv.osv): 'salesman_id':fields.related('order_id', 'user_id', type='many2one', relation='res.users', string='Salesman'), 'company_id': fields.related('order_id', 'company_id', type='many2one', relation='res.company', string='Company', store=True, readonly=True, states={'draft':[('readonly',False)]}), } - _order = 'sequence, id' + _order = 'sequence, id desc' _defaults = { 'discount': 0.0, 'delay': 0.0, diff --git a/addons/sale/stock.py b/addons/sale/stock.py index ab4b165201a..ae29b70837b 100644 --- a/addons/sale/stock.py +++ b/addons/sale/stock.py @@ -27,10 +27,10 @@ class stock_move(osv.osv): 'sale_line_id': fields.many2one('sale.order.line', 'Sale Order Line', ondelete='set null', select=True, readonly=True), } - def _create_chained_picking(self, cr, uid, pick_name,picking,ptype,move, context=None): - res=super(stock_move, self)._create_chained_picking(cr, uid, pick_name,picking,ptype,move, context=context) + def _create_chained_picking(self, cr, uid, pick_name, picking, ptype, move, context=None): + res = super(stock_move, self)._create_chained_picking(cr, uid, pick_name, picking, ptype, move, context=context) if picking.sale_id: - self.pool.get('stock.picking').write(cr,uid,[res],{'sale_id':picking.sale_id.id}) + self.pool.get('stock.picking').write(cr, uid, [res], {'sale_id': picking.sale_id.id}) return res stock_move() diff --git a/addons/sale/test/prepaid_order_policy.yml b/addons/sale/test/prepaid_order_policy.yml index 0a8f2aafa81..944a983ec8c 100644 --- a/addons/sale/test/prepaid_order_policy.yml +++ b/addons/sale/test/prepaid_order_policy.yml @@ -41,7 +41,7 @@ sale_order_obj = self.pool.get('sale.order') so = sale_order_obj.browse(cr, uid, ref("sale_order_so1")) picking_id = self.search(cr, uid, [('origin','=',so.name),('type','=','out')]) - assert picking_id,"There is a picking attached to this sale order" + assert picking_id,"As the order policy is prepaid, the sale order shouldn't have already a picking." - I open the Invoice for the SO. - diff --git a/addons/sale/unit_test/__init__.py b/addons/sale/unit_test/__init__.py deleted file mode 100644 index f96719c920e..00000000000 --- a/addons/sale/unit_test/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). All Rights Reserved -# $Id$ -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -# -############################################################################## - - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale/unit_test/test.py b/addons/sale/unit_test/test.py deleted file mode 100644 index f1a90b4e2d9..00000000000 --- a/addons/sale/unit_test/test.py +++ /dev/null @@ -1,160 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). All Rights Reserved -# $Id$ -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -# -############################################################################## -import unittest -import pooler -import netsvc -from cStringIO import StringIO -from osv import osv - -cr = None -uid = None -order_id = None - -class sale_order_test_case(unittest.TestCase): - def setUp(self): - try: - self.pool = pooler.get_pool(cr.dbname) - self.sale_order = self.pool.get('sale.order') - except osv.except_osv,e: - self.fail(e.name + e.value) - except Exception,e: - self.fail(e) - - - def tearDown(self): - try: - self.pool = None - self.sale_order = None - except osv.except_osv,e: - self.fail(e.name + e.value) - except Exception,e: - self.fail(e) - - - def test_1_Create(self): - - try: - global order_id - model_obj = self.pool.get('ir.model.data') - - ### SALE ORDER - shop = model_obj._get_id(cr, uid, 'sale', 'shop') - shop_id = model_obj.browse(cr, uid, shop).res_id - partner = model_obj._get_id(cr,uid, 'base', 'res_partner_9') - partner_id = model_obj.browse(cr, uid, partner,).res_id - partner_invoice = model_obj._get_id(cr, uid, 'base', 'res_partner_address_9') - partner_invoice_id = model_obj.browse(cr, uid, partner_invoice).res_id - pricelist_id = self.pool.get('res.partner').browse(cr, uid,partner_id).property_product_pricelist.id - order_id = self.sale_order.create(cr,uid, - {'shop_id':shop_id,'pricelist_id':pricelist_id,'user_id':uid, - 'partner_id':partner_id,'partner_invoice_id':partner_invoice_id, - 'partner_shipping_id':partner_invoice_id,'partner_order_id':partner_invoice_id}) - ### SALE ORDER LINE - product = model_obj._get_id(cr,uid, 'product', 'product_product_pc2') - product_id = model_obj.browse(cr, uid, product).res_id - product_uom = model_obj._get_id(cr, uid, 'product', 'product_uom_unit') - product_uom_id = model_obj.browse(cr, uid, product_uom).res_id - self.pool.get('sale.order.line').create(cr,uid, - {'order_id':order_id,'name':'[PC2] Computer assembled on demand', - 'product_id':product_id,'product_uom':product_uom_id,'price_unit':600, - 'type':'make_to_order'}) - except osv.except_osv,e: - self.fail(e.name + e.value) - except Exception,e: - self.fail(e) - - def test_2_ConfirmOrder(self): - try: - self.failUnless(order_id,"No Sale Order Created !") - wf_service = netsvc.LocalService("workflow") - res = wf_service.trg_validate(uid, 'sale.order',order_id, 'order_confirm', cr) - except osv.except_osv,e: - self.fail(e.name + e.value) - except Exception,e: - self.fail(e) - - def test_3_CreateInvoice(self): - - try: - self.failUnless(order_id,"No Sale Order Created !") - wf_service = netsvc.LocalService("workflow") - res = wf_service.trg_validate(uid, 'sale.order',order_id, 'manual_invoice', cr) - except osv.except_osv,e: - self.fail(e.name + e.value) - except Exception,e: - self.fail(e) - - def test_4_CancelPicking(self): - try: - self.failUnless(order_id,"No Sale Order Created !") - picking_obj = self.pool.get('stock.picking') - pickings = picking_obj.search(cr,uid,[('sale_id','=',order_id)]) - picking_obj.action_cancel(cr, uid, pickings) - except osv.except_osv,e: - self.fail(e.name + e.value) - except Exception,e: - self.fail(e) - - def test_5_PrintOrder(self): - try: - self.failUnless(order_id,"No Sale Order Created !") - report_service = netsvc.ExportService.getService('report') - model_obj = self.pool.get('ir.model.data') - passwd = self.pool.get('res.users').browse(cr,uid,uid).password - report = model_obj._get_id(cr, uid, 'sale', 'report_sale_order') - report_id = model_obj.browse(cr, uid, report).res_id - report_service.exp_report(cr.dbname, uid, 'sale.order', [order_id]) - except osv.except_osv,e: - self.fail(e.name + e.value) - except Exception,e: - self.fail(e) - - def test_6_CancelOrder(self): - try: - self.failUnless(order_id,"No Sale Order Created !") - self.sale_order.action_cancel(cr, uid, [order_id]) - except osv.except_osv,e: - self.fail(e.name + e.value) - except Exception,e: - self.fail(e) - - def test_7_Unlink(self): - try: - self.failUnless(order_id,"No Sale Order Created !") - self.sale_order.unlink(cr, uid, [order_id]) - except osv.except_osv,e: - self.fail(e.name + e.value) - except Exception,e: - self.fail(e) - - -def runTest(cursor=None, user=None): - global cr - global uid - cr = cursor - uid = user - out = StringIO() - suite = unittest.TestLoader().loadTestsFromTestCase(sale_order_test_case) - res = unittest.TextTestRunner(stream=out,verbosity=2).run(suite) - if res.wasSuccessful(): - return (True,out.getvalue()) - return (res,out.getvalue()) diff --git a/addons/sale/wizard/sale_line_invoice.py b/addons/sale/wizard/sale_line_invoice.py index b7ea27a3049..4281e180970 100644 --- a/addons/sale/wizard/sale_line_invoice.py +++ b/addons/sale/wizard/sale_line_invoice.py @@ -19,7 +19,7 @@ # ############################################################################## -from osv import fields, osv +from osv import osv from tools.translate import _ import netsvc @@ -80,7 +80,7 @@ class sale_order_line_make_invoice(osv.osv_memory): sales_order_line_obj = self.pool.get('sale.order.line') sales_order_obj = self.pool.get('sale.order') wf_service = netsvc.LocalService('workflow') - for line in sales_order_line_obj.browse(cr,uid,context['active_ids']): + for line in sales_order_line_obj.browse(cr, uid, context['active_ids']): if (not line.invoiced) and (line.state not in ('draft','cancel')): if not line.order_id.id in invoices: invoices[line.order_id.id] = [] @@ -90,24 +90,26 @@ class sale_order_line_make_invoice(osv.osv_memory): invoices[line.order_id.id].append((line, lid)) sales_order_line_obj.write(cr, uid, [line.id], {'invoiced': True}) + for result in invoices.values(): + order = result[0][0].order_id + il = map(lambda x: x[1], result) + res = make_invoice(order, il) + cr.execute('INSERT INTO sale_order_invoice_rel \ + (order_id,invoice_id) values (%s,%s)', (order.id, res)) + flag = True - data_sale = sales_order_obj.browse(cr,uid,line.order_id.id) + data_sale = sales_order_obj.browse(cr, uid, line.order_id.id) for line in data_sale.order_line: if not line.invoiced: flag = False break if flag: wf_service.trg_validate(uid, 'sale.order', line.order_id.id, 'all_lines', cr) - sales_order_obj.write(cr,uid,[line.order_id.id],{'state' : 'progress'}) + sales_order_obj.write(cr, uid, [line.order_id.id], {'state' : 'progress'}) if not invoices: - raise osv.except_osv(_('Warning'),_('Invoice cannot be created for this Sale Order Line due to one of the following reasons:\n1.The state of this sale order line is either "draft" or "cancel"!\n2.The Sale Order Line is Invoiced!')) - for result in invoices.values(): - order = result[0][0].order_id - il = map(lambda x: x[1], result) - res = make_invoice(order, il) - cr.execute('INSERT INTO sale_order_invoice_rel \ - (order_id,invoice_id) values (%s,%s)', (order.id, res)) + raise osv.except_osv(_('Warning'), _('Invoice cannot be created for this Sale Order Line due to one of the following reasons:\n1.The state of this sale order line is either "draft" or "cancel"!\n2.The Sale Order Line is Invoiced!')) + return {} sale_order_line_make_invoice() diff --git a/addons/sale/wizard/sale_make_invoice.py b/addons/sale/wizard/sale_make_invoice.py index e1d26c7b987..8d0b191620b 100644 --- a/addons/sale/wizard/sale_make_invoice.py +++ b/addons/sale/wizard/sale_make_invoice.py @@ -45,17 +45,17 @@ class sale_make_invoice(osv.osv_memory): def make_invoices(self, cr, uid, ids, context={}): order_obj = self.pool.get('sale.order') newinv = [] - data = self.read(cr,uid,ids)[0] - order_obj.action_invoice_create(cr, uid, context.get(('active_ids'),[]), data['grouped'],date_inv = data['invoice_date']) + data = self.read(cr, uid, ids)[0] + order_obj.action_invoice_create(cr, uid, context.get(('active_ids'), []), data['grouped'], date_inv = data['invoice_date']) wf_service = netsvc.LocalService("workflow") - for id in context.get(('active_ids'),[]): + for id in context.get(('active_ids'), []): wf_service.trg_validate(uid, 'sale.order', id, 'manual_invoice', cr) - for o in order_obj.browse(cr, uid, context.get(('active_ids'),[]), context): + for o in order_obj.browse(cr, uid, context.get(('active_ids'), []), context): for i in o.invoice_ids: newinv.append(i.id) - mod_obj =self.pool.get('ir.model.data') + mod_obj = self.pool.get('ir.model.data') result = mod_obj._get_id(cr, uid, 'account', 'view_account_invoice_filter') id = mod_obj.read(cr, uid, result, ['res_id']) diff --git a/addons/sale/wizard/sale_make_invoice_advance.py b/addons/sale/wizard/sale_make_invoice_advance.py index 0037c10405d..ea7cdd56704 100644 --- a/addons/sale/wizard/sale_make_invoice_advance.py +++ b/addons/sale/wizard/sale_make_invoice_advance.py @@ -20,7 +20,6 @@ from osv import fields, osv from tools.translate import _ -import ir class sale_advance_payment_inv(osv.osv_memory): _name = "sale.advance.payment.inv" @@ -55,8 +54,6 @@ class sale_advance_payment_inv(osv.osv_memory): for sale_adv_obj in self.browse(cr, uid, ids): for sale in obj_sale.browse(cr, uid, context['active_ids']): - address_contact = False - address_invoice = False create_ids = [] ids_inv = [] if sale.order_policy == 'postpaid': @@ -107,7 +104,7 @@ class sale_advance_payment_inv(osv.osv_memory): # If invoice on picking: add the cost on the SO # If not, the advance will be deduced when generating the final invoice # - if sale.order_policy=='picking': + if sale.order_policy == 'picking': self.pool.get('sale.order.line').create(cr, uid, { 'order_id': sale.id, 'name': val['value']['name'], @@ -138,30 +135,20 @@ sale_advance_payment_inv() class sale_open_invoice(osv.osv_memory): _name = "sale.open.invoice" _description = "Sale Open Invoice" - _columns = { - } - def open_invoice(self, cr, uid, ids, context): """ To open invoice. - @param self: The object pointer. @param cr: A database cursor @param uid: ID of the user currently logged in @param ids: the ID or list of IDs if we want more than one @param context: A standard dictionary - @return: """ - record_id = context and context.get('active_id', False) or False mod_obj = self.pool.get('ir.model.data') - obj_inv = self.pool.get('account.invoice') - invoices = [] - invoice = obj_inv.browse(cr, uid, record_id, context=context) - for advance_pay in self.browse(cr, uid, ids): result = mod_obj._get_id(cr, uid, 'account', 'view_account_invoice_filter') id = mod_obj.read(cr, uid, result, ['res_id']) diff --git a/addons/sale_crm/wizard/crm_make_sale.py b/addons/sale_crm/wizard/crm_make_sale.py index 1112ebd73b6..c5317950f1a 100644 --- a/addons/sale_crm/wizard/crm_make_sale.py +++ b/addons/sale_crm/wizard/crm_make_sale.py @@ -37,16 +37,16 @@ class crm_make_sale(osv.osv_memory): @param cr: the current row, from the database cursor, @param uid: the current user’s ID for security checks, @param context: A standard dictionary for contextual values - @return : default value of partner_id field. + @return: default value of partner_id field. """ if not context: context = {} - + lead_obj = self.pool.get('crm.lead') active_id = context and context.get('active_id', False) or False if not active_id: return False - + lead = lead_obj.read(cr, uid, active_id, ['partner_id']) return lead['partner_id'] @@ -63,7 +63,7 @@ class crm_make_sale(osv.osv_memory): @param uid: the current user’s ID for security checks, @param ids: List of crm make sale' ids @param context: A standard dictionary for contextual values - @return : Dictionary value of created sale order. + @return: Dictionary value of created sale order. """ if not context: context = {} diff --git a/addons/sale_journal/sale_journal.py b/addons/sale_journal/sale_journal.py index 09902b21099..00c3a77126d 100644 --- a/addons/sale_journal/sale_journal.py +++ b/addons/sale_journal/sale_journal.py @@ -72,6 +72,7 @@ class sale(osv.osv): } def action_ship_create(self, cr, uid, ids, *args): result = super(sale, self).action_ship_create(cr, uid, ids, *args) + obj_stock_pick = self.pool.get('stock.picking') for order in self.browse(cr, uid, ids, context={}): pids = [ x.id for x in order.picking_ids] self.pool.get('stock.picking').write(cr, uid, pids, { diff --git a/addons/sale_layout/report/report_sale_layout.py b/addons/sale_layout/report/report_sale_layout.py index 3e61a6cd3e9..847c2cb4834 100755 --- a/addons/sale_layout/report/report_sale_layout.py +++ b/addons/sale_layout/report/report_sale_layout.py @@ -46,10 +46,10 @@ class sale_order_1(report_sxw.rml_parse): info = [] order_lines = [] res = {} - - ids = self.pool.get('sale.order.line').search(self.cr, self.uid, [('order_id', '=', sale_order.id)]) + obj_order_line = self.pool.get('sale.order.line') + ids = obj_order_line.search(self.cr, self.uid, [('order_id', '=', sale_order.id)]) for id in range(0, len(ids)): - order = self.pool.get('sale.order.line').browse(self.cr, self.uid, ids[id], self.context.copy()) + order = obj_order_line.browse(self.cr, self.uid, ids[id], self.context.copy()) order_lines.append(order) i = 1 diff --git a/addons/sale_margin/sale_margin.py b/addons/sale_margin/sale_margin.py index daa8011246e..03b16962a71 100644 --- a/addons/sale_margin/sale_margin.py +++ b/addons/sale_margin/sale_margin.py @@ -83,7 +83,7 @@ class stock_picking(osv.osv): invoice_ids = [] margin_deduce = 0.0 picking_obj = self.pool.get('stock.picking') - picking_obj.write(cr, uid, ids, {'invoice_state' : '2binvoiced'}) + picking_obj.write(cr, uid, ids, {'invoice_state': '2binvoiced'}) res = picking_obj.action_invoice_create(cr, uid, ids, type='out_invoice', context={}) invoice_ids = res.values() picking_obj.write(cr, uid, ids,{'invoice_ids': [[6,0,invoice_ids]]}) @@ -107,6 +107,6 @@ class account_invoice_line(osv.osv): res = self.pool.get('product.product').read(cr, uid, [vals['product_id']], ['standard_price']) vals['cost_price'] = res[0]['standard_price'] return super(account_invoice_line, self).create(cr, uid, vals, context) - + account_invoice_line() # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file