diff --git a/addons/account/__terp__.py b/addons/account/__terp__.py index 921dc8c8cb9..a09b20d33f5 100644 --- a/addons/account/__terp__.py +++ b/addons/account/__terp__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- ############################################################################## -# +# # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # @@ -15,7 +15,7 @@ # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# along with this program. If not, see . # ############################################################################## @@ -33,6 +33,7 @@ Budgets Customer and Supplier Invoices Bank statements + Account Balance Report """, 'website': 'http://www.openerp.com', 'init_xml': [], diff --git a/addons/account/account_move_line.py b/addons/account/account_move_line.py index 15c2c93b8fb..0ab2b5cbe96 100644 --- a/addons/account/account_move_line.py +++ b/addons/account/account_move_line.py @@ -34,12 +34,17 @@ class account_move_line(osv.osv): def _query_get(self, cr, uid, obj='l', context={}): fiscalyear_obj = self.pool.get('account.fiscalyear') + fiscalperiod_obj = self.pool.get('account.period') + fiscalyear_ids = [] + fiscalperiod_ids = [] if not context.get('fiscalyear', False): fiscalyear_ids = fiscalyear_obj.search(cr, uid, [('state', '=', 'draft')]) - fiscalyear_clause = (','.join([str(x) for x in fiscalyear_ids])) or '0' else: - fiscalyear_clause = '%s' % context['fiscalyear'] - state=context.get('state',False) + fiscalyear_ids = [context['fiscalyear']] + + fiscalyear_clause = (','.join([str(x) for x in fiscalyear_ids])) or '0' + state = context.get('state',False) + where_move_state = '' where_move_lines_by_date = '' @@ -53,9 +58,47 @@ class account_move_line(osv.osv): if context.get('periods', False): ids = ','.join([str(x) for x in context['periods']]) - return 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: - return 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('period_manner','') == 'created': + #the query have to be build with no reference to periods but thanks to the creation date + if context.get('periods',False): + #if one or more period are given, use them + fiscalperiod_ids = fiscalperiod_obj.search(cr,uid,[('id','in',context['periods'])]) + else: + fiscalperiod_ids = self.pool.get('account.period').search(cr,uid,[('fiscalyear_id','in',fiscalyear_ids)]) + + + + #remove from the old query the clause related to the period selection + res = '' + count = 1 + clause_list = query.split('AND') + ref_string = ' '+obj+'.period_id in' + for clause in clause_list: + if count != 1 and not clause.startswith(ref_string): + res += "AND" + if not clause.startswith(ref_string): + res += clause + count += 1 + + #add to 'res' a new clause containing the creation date criterion + count = 1 + res += " AND (" + periods = self.pool.get('account.period').read(cr,uid,p_ids,['date_start','date_stop']) + for period in periods: + if count != 1: + res += " OR " + #creation date criterion: the creation date of the move_line has to be + # between the date_start and the date_stop of the selected periods + res += "("+obj+".create_date between to_date('" + period['date_start'] + "','yyyy-mm-dd') and to_date('" + period['date_stop'] + "','yyyy-mm-dd'))" + count += 1 + res += ")" + return res + + return query def default_get(self, cr, uid, fields, context={}): data = self._default_get(cr, uid, fields, context) diff --git a/addons/account/account_report.xml b/addons/account/account_report.xml index 9485185d500..5c99ebdde13 100644 --- a/addons/account/account_report.xml +++ b/addons/account/account_report.xml @@ -58,6 +58,22 @@ parent="menu_tax_report" sequence="12"/> + + + + diff --git a/addons/account/account_wizard.xml b/addons/account/account_wizard.xml index bd03390ce3f..ebfed02eb3c 100644 --- a/addons/account/account_wizard.xml +++ b/addons/account/account_wizard.xml @@ -1,7 +1,12 @@ - + diff --git a/addons/account/report/__init__.py b/addons/account/report/__init__.py index f76b850aa7f..0311398420b 100644 --- a/addons/account/report/__init__.py +++ b/addons/account/report/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- ############################################################################## -# +# # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # @@ -15,7 +15,7 @@ # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# along with this program. If not, see . # ############################################################################## @@ -32,6 +32,9 @@ import aged_trial_balance import tax_report import general_ledger_landscape import account_tax_code +import account_balance_landscape +import compare_account_balance + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_balance/report/account_balance_landscape.py b/addons/account/report/account_balance_landscape.py old mode 100644 new mode 100755 similarity index 98% rename from addons/account_balance/report/account_balance_landscape.py rename to addons/account/report/account_balance_landscape.py index 23c7e309b51..509e5358020 --- a/addons/account_balance/report/account_balance_landscape.py +++ b/addons/account/report/account_balance_landscape.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- ############################################################################## -# +# # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # @@ -15,7 +15,7 @@ # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# along with this program. If not, see . # ############################################################################## @@ -597,7 +597,7 @@ class account_balance_landscape(rml_parse.rml_parse): result +=dir return result - + def get_years(self,form): result =[] res={} @@ -606,15 +606,15 @@ class account_balance_landscape(rml_parse.rml_parse): fy=self.pool.get('account.fiscalyear').name_get(self.cr,self.uid,form['fiscalyear'][0][2][temp]) res['year']=fy[0][1] res['last_str']=temp - + result.append(res) self.linesForYear(form) return result - + def get_lines(self,year_dict,form): final_result = [] line_l =[] - res = {} + res = {} line_l = self.lines(form) self.cal_total(year_dict) if line_l: @@ -625,11 +625,11 @@ class account_balance_landscape(rml_parse.rml_parse): res['level'] = l['level'] for k,v in l.items(): if k.startswith('debit'+str(year_dict['last_str'])): - res['debit'] = v + res['debit'] = v if k.startswith('credit'+str(year_dict['last_str'])): res['credit'] = v if k.startswith('balance'+str(year_dict['last_str'])) and not k.startswith('balance_perc'+str(year_dict['last_str'])): - res['balance'] =v + res['balance'] =v if k.startswith('balance_perc'+str(year_dict['last_str'])) and not k.startswith('balance'+str(year_dict['last_str'])): res['balance_perc'] = v if form['compare_pattern'] == 'bal_perc': @@ -654,13 +654,13 @@ class account_balance_landscape(rml_parse.rml_parse): else: continue return True - + def total_dr(self): return self.dr_total - + def total_cr(self): return self.cr_total -report_sxw.report_sxw('report.account.account.balance.landscape', 'account.account', 'addons/account_balance/report/account_balance_landscape.rml', parser=account_balance_landscape, header=False) +report_sxw.report_sxw('report.account.account.balance.landscape', 'account.account', 'addons/account/report/account_balance_landscape.rml', parser=account_balance_landscape, header=False) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_balance/report/account_balance_landscape.rml b/addons/account/report/account_balance_landscape.rml old mode 100644 new mode 100755 similarity index 100% rename from addons/account_balance/report/account_balance_landscape.rml rename to addons/account/report/account_balance_landscape.rml diff --git a/addons/account_balance/report/account_balance_landscape_old_backup.rml b/addons/account/report/account_balance_landscape_old_backup.rml old mode 100644 new mode 100755 similarity index 100% rename from addons/account_balance/report/account_balance_landscape_old_backup.rml rename to addons/account/report/account_balance_landscape_old_backup.rml diff --git a/addons/account_balance/report/account_balance_old_backup.rml b/addons/account/report/account_balance_old_backup.rml old mode 100644 new mode 100755 similarity index 100% rename from addons/account_balance/report/account_balance_old_backup.rml rename to addons/account/report/account_balance_old_backup.rml diff --git a/addons/account_balance/report/account_balance.py b/addons/account/report/compare_account_balance.py old mode 100644 new mode 100755 similarity index 98% rename from addons/account_balance/report/account_balance.py rename to addons/account/report/compare_account_balance.py index 49bcffd38d9..52205055298 --- a/addons/account_balance/report/account_balance.py +++ b/addons/account/report/compare_account_balance.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- ############################################################################## -# +# # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # @@ -15,7 +15,7 @@ # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# along with this program. If not, see . # ############################################################################## @@ -319,7 +319,7 @@ class account_balance(report_sxw.rml_parse): # i+=1 # return super(account_balance,self).repeatIn(lst, name, nodes_parent=False) #end - + def linesForYear(self,form): temp=0 years={} @@ -412,7 +412,7 @@ class account_balance(report_sxw.rml_parse): if level==1: doneAccount={} for entry in merged_accounts: - + if entry[0].id in doneAccount: continue doneAccount[entry[0].id] = 1 @@ -602,15 +602,15 @@ class account_balance(report_sxw.rml_parse): fy=self.pool.get('account.fiscalyear').name_get(self.cr,self.uid,form['fiscalyear'][0][2][temp]) res['year']=fy[0][1] res['last_str']=temp - + result.append(res) self.linesForYear(form) return result - + def get_lines(self,year_dict,form): final_result = [] line_l =[] - res = {} + res = {} line_l = self.lines(form) self.cal_total(year_dict) if line_l: @@ -621,11 +621,11 @@ class account_balance(report_sxw.rml_parse): res['level'] = l['level'] for k,v in l.items(): if k.startswith('debit'+str(year_dict['last_str'])): - res['debit'] = v + res['debit'] = v if k.startswith('credit'+str(year_dict['last_str'])): res['credit'] = v if k.startswith('balance'+str(year_dict['last_str'])) and not k.startswith('balance_perc'+str(year_dict['last_str'])): - res['balance'] =v + res['balance'] =v if k.startswith('balance_perc'+str(year_dict['last_str'])) and not k.startswith('balance'+str(year_dict['last_str'])): res['balance_perc'] = v if form['compare_pattern'] == 'bal_perc': @@ -650,13 +650,13 @@ class account_balance(report_sxw.rml_parse): else: continue return True - + def total_dr(self): return self.dr_total - + def total_cr(self): return self.cr_total - -report_sxw.report_sxw('report.account.balance.account.balance', 'account.account', 'addons/account_balance/report/account_balance.rml', parser=account_balance, header=False) + +report_sxw.report_sxw('report.account.balance.account.balance', 'account.account', 'addons/account/report/account_balance.rml', parser=account_balance, header=False) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_balance/report/account_balance.rml b/addons/account/report/compare_account_balance.rml old mode 100644 new mode 100755 similarity index 100% rename from addons/account_balance/report/account_balance.rml rename to addons/account/report/compare_account_balance.rml diff --git a/addons/account/report/rml_parse.py b/addons/account/report/rml_parse.py index 507599ec999..ecc7c237631 100644 --- a/addons/account/report/rml_parse.py +++ b/addons/account/report/rml_parse.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- ############################################################################## -# +# # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # @@ -15,7 +15,7 @@ # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# along with this program. If not, see . # ############################################################################## @@ -150,9 +150,18 @@ class rml_parse(report_sxw.rml_parse): return str.encode("ascii") else: - print Stringer return Stringer + def _add_header(self, node, header=1): + if self.name == 'account.account.balance.landscape': + if header==2: + rml_head = self.rml_header2 + else: + rml_head = self.rml_header + rml_head = rml_head.replace('',''' [[company.logo]] ''') + else: + return super(rml_parse, self)._add_header(node, header) + return True # def _add_header(self, node): # rml_head = tools.file_open('specific_param/report/header/corporate_rml_header_ch.rml').read() diff --git a/addons/account/wizard/__init__.py b/addons/account/wizard/__init__.py index 16266efbfeb..7d6e7b1226d 100644 --- a/addons/account/wizard/__init__.py +++ b/addons/account/wizard/__init__.py @@ -44,6 +44,7 @@ import wizard_fiscalyear_close_state import wizard_open_closed_fiscalyear import wizard_vat +import wizard_compare_account_balance_report import wizard_invoice_state import wizard_account_duplicate diff --git a/addons/account_balance/wizard/wizard_account_balance_report.py b/addons/account/wizard/wizard_compare_account_balance_report.py old mode 100644 new mode 100755 similarity index 99% rename from addons/account_balance/wizard/wizard_account_balance_report.py rename to addons/account/wizard/wizard_compare_account_balance_report.py index e15f0514423..1928e82c41d --- a/addons/account_balance/wizard/wizard_account_balance_report.py +++ b/addons/account/wizard/wizard_compare_account_balance_report.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- ############################################################################## -# +# # OpenERP, Open Source Management Solution # Copyright (C) 2004-2010 Tiny SPRL (). # @@ -15,7 +15,7 @@ # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# along with this program. If not, see . # ############################################################################## @@ -90,7 +90,6 @@ zero_fields={ } def _check(self, cr, uid, data, context): - if (len(data['form']['fiscalyear'][0][2])==0) or (len(data['form']['fiscalyear'][0][2])>1 and (data['form']['compare_pattern']!='none') and (data['form']['format_perc']==1) and (data['form']['show_columns']==1) and (data['form']['landscape']!=1)): return 'zero_years' diff --git a/addons/account_balance/__init__.py b/addons/account_balance/__init__.py deleted file mode 100644 index 2fff2acdd46..00000000000 --- a/addons/account_balance/__init__.py +++ /dev/null @@ -1,27 +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 -import account_move_line -import wizard -import report -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account_balance/__terp__.py b/addons/account_balance/__terp__.py deleted file mode 100644 index 7ee5c0f1dd7..00000000000 --- a/addons/account_balance/__terp__.py +++ /dev/null @@ -1,51 +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 . -# -############################################################################## - - -{ - 'name': 'Accounting and financial management-Compare Accounts', - 'version': '1.1', - 'category': 'Generic Modules/Accounting', - 'description': """Account Balance Module is an added functionality to the Financial Management module. - - This module gives you the various options for printing balance sheet. - - 1. You can compare the balance sheet for different years. - - 2. You can set the cash or percentage comparison between two years. - - 3. You can set the referential account for the percentage comparison for particular years. - - 4. You can select periods as an actual date or periods as creation date. - - 5. You have an option to print the desired report in Landscape format. - """, - 'author': 'Tiny', - 'website': 'http://www.openerp.com', - 'depends': ['account'], - 'init_xml': [], - 'update_xml': ['account_report.xml', 'account_wizard.xml'], - 'demo_xml': [], - 'installable': True, - 'active': False, - 'certificate': '0081928745309', -} -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_balance/account_move_line.py b/addons/account_balance/account_move_line.py deleted file mode 100644 index 293f561ced9..00000000000 --- a/addons/account_balance/account_move_line.py +++ /dev/null @@ -1,93 +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 time -import netsvc -from osv import fields, osv - - -class account_move_line(osv.osv): - _name="account.move.line" - _inherit="account.move.line" - _description = "Entry lines" - - def _query_get(self, cr, uid, obj='l', context={}): - query = super(account_move_line, self)._query_get(cr, uid, obj, context) - if 'period_manner' in context: - if context['period_manner'] == 'created': - if 'periods' in context: - #the query have to be build with no reference to periods but thanks to the creation date - if context['periods']: - #if one or more period are given, use them - p_ids = self.pool.get('account.period').search(cr,uid,[('id','in',context['periods'])]) - else: - #else we have to consider all the periods of the selected fiscal year(s) - fiscalyear_obj = self.pool.get('account.fiscalyear') - if not context.get('fiscalyear', False): - - #if there is no fiscal year, take all the fiscal years - fiscalyear_ids = fiscalyear_obj.search(cr, uid, [('state', '=', 'draft')]) - else: - fiscalyear_ids = [context['fiscalyear']] - p_ids = self.pool.get('account.period').search(cr,uid,[('fiscalyear_id','in',fiscalyear_ids)]) - - if p_ids == []: - return query - - #remove from the old query the clause related to the period selection - res = '' - count = 1 - clause_list = query.split('AND') - ref_string = ' '+obj+'.period_id in' - for clause in clause_list: - if count != 1 and not clause.startswith(ref_string): - res += "AND" - if not clause.startswith(ref_string): - res += clause - count += 1 - - #add to 'res' a new clause containing the creation date criterion - count = 1 - res += " AND (" - periods = self.pool.get('account.period').read(cr,uid,p_ids,['date_start','date_stop']) - for period in periods: - if count != 1: - res += " OR " - #creation date criterion: the creation date of the move_line has to be - # between the date_start and the date_stop of the selected periods - res += "("+obj+".create_date between to_date('" + period['date_start'] + "','yyyy-mm-dd') and to_date('" + period['date_stop'] + "','yyyy-mm-dd'))" - count += 1 - res += ")" - return res - return query -account_move_line() - - -class account_bank_statement_reconcile(osv.osv): - _inherit = "account.bank.statement.reconcile" - _columns = { - 'line_ids': fields.many2many('account.move.line', 'account_bank_statement_line_rel', 'statement_id', 'line_id', 'Entries'), - } -account_bank_statement_reconcile() - - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account_balance/account_report.xml b/addons/account_balance/account_report.xml deleted file mode 100644 index 1c3701ccba7..00000000000 --- a/addons/account_balance/account_report.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - diff --git a/addons/account_balance/account_wizard.xml b/addons/account_balance/account_wizard.xml deleted file mode 100644 index 5d90d97161f..00000000000 --- a/addons/account_balance/account_wizard.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - diff --git a/addons/account_balance/i18n/account_balance.pot b/addons/account_balance/i18n/account_balance.pot deleted file mode 100644 index 9799ce47acb..00000000000 --- a/addons/account_balance/i18n/account_balance.pot +++ /dev/null @@ -1,275 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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:52+0000\n" -"PO-Revision-Date: 2009-08-28 16:01:52+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_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "Account Balance Module is an added functionality to the Financial Management module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "3. You have selected 'Percentage' option with more than 2 years, but you have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "2. You have not selected 'Percentage' option, but you have selected more than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You may have selected the compare options with more than 1 year with credit/debit columns and % option.This can lead contents to be printed out of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" - diff --git a/addons/account_balance/i18n/ar.po b/addons/account_balance/i18n/ar.po deleted file mode 100644 index 0936748f4c7..00000000000 --- a/addons/account_balance/i18n/ar.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" diff --git a/addons/account_balance/i18n/bg.po b/addons/account_balance/i18n/bg.po deleted file mode 100644 index 4591f6a3701..00000000000 --- a/addons/account_balance/i18n/bg.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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-12-17 22:20+0000\n" -"Last-Translator: Sianna \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: 2009-12-18 04:32+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Покажи информация относно Дебит/Кредит" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Всички сметки" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Известяване" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Финансов период" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Баланс по сметка" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Име на сметка" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Печат" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Избери период(и)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Процент" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Сравни избраните години по критерий" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Избери фискална година(и) (максимум три години" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Изберете сметка за отпратка(за % сравняване)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Баланс на сметка - сравняване на години" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Показване на справка в хоризонтална форма" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Ако е празно всички периоди" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "С баланс различен от 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Покажи сравнението в %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Изберете период" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Настройки на справка" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "С движения" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Добре" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "В брой" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Да не се сравняват" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Покажи сметки" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Избрахте повече от 3 години във всеки случай." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "Година :" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "Може да изберете максимум 3 години. Моля проверете отново." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Дата на създаване" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Фискална година" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Периоди" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Откажи" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "Трябва да изберете поне една финансова година. Опитайте отново." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Настройка на справка" diff --git a/addons/account_balance/i18n/bs.po b/addons/account_balance/i18n/bs.po deleted file mode 100644 index c64e580a32d..00000000000 --- a/addons/account_balance/i18n/bs.po +++ /dev/null @@ -1,294 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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: 2010-02-22 12:42+0000\n" -"Last-Translator: adnan \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-02-25 04:51+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Prikaži duguje/potražuje podatke" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Svi konta" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Odabir stavaka zasnovan na" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Obavještenje" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Financijsko razdoblje" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Saldo konta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Naziv konta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "Duguje" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Štampaj" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Odaberite razdoblja" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Procenat" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Usporedi odabrane godine pod uvjetima" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Odaberite fiskalne godine (Maksimalno 3 godine)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Izaberi odgovarajuća konta (za poređenje u %)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Saldo konta - poredi godine" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "Morate odabrati opciju 'Položeno'. Molimo označite je." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Prikaži izvješće u položenoj formi" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Ako je prazno, sva razdoblja" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Sa saldom različit od 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "Ukupno :" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "Saldo računa -" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Prikaži usporedbu u %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Odaberite razdoblje" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Postavke izvješća" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Sa kretanjima" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Uredu" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Gotovina" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Ne uspoređuj" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Prikaži račune" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "Potražuje" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Odabrali ste više od 3 godine u svakom slučaju." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "Upravljanje računovodstvom i finansijama - Usporedi konta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "Godina:" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "Možete odabrati maksimalno 3 godine. Molimo pokušajte ponovno." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "Saldo" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"Izabrali ste \"Postotak\" opciju sa više od dvije godine, ali niste odabrali " -"\"Položeni\" format." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Možda ste napravili sljedeće pogreške. Ispravite ih i pokušajte ponovno." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Ostavite prazno za usporedbu sa roditeljem" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Datum kreiranja" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Fiskalna godina" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" -"2. Niste odabrali opciju 'Postotak', ali ste odabrali više od 2 godine." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Razdoblja" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"Postoji mogućnost da ste odabrali postavke usporedbe sa više od 1 godine sa " -"stupcima duguje/potražuje i % opcijom. Ovo može biti uzrok ispisa van " -"papira. Molimo pokušajte ponovno." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Odustani" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "Morate odabrati bar 1 fiskalnu godinu. Pokušajte ponovno." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Prilagodite izvješće" diff --git a/addons/account_balance/i18n/ca.po b/addons/account_balance/i18n/ca.po deleted file mode 100644 index 0a6c3945631..00000000000 --- a/addons/account_balance/i18n/ca.po +++ /dev/null @@ -1,314 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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-18 15:22+0000\n" -"Last-Translator: Jordi Esteve - http://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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Mostra informació dèbit/crèdit" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Tots els comptes" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Selecció d'entrades basada en" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Notificació" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Període financer" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Saldo comptable" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Nom de compte" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Imprimeix" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Selecciona període(s)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Percentatge" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Compara exercicis seleccionats en termes de" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Selecciona exercici(s) fiscal(s) (màxim 3 anys)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Selecciona compte de referència (per comparació %)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Saldo comptable-Compara exercicis" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" -"El mòdul de balanç de comptes és una funcionalitat afegida al mòdul de " -"gestió financera.\n" -"\n" -" Aquest mòdul ofereix diverses opcions d'impressió de balanços.\n" -"\n" -" 1. Es pot comparar el balanç de diferents anys.\n" -"\n" -" 2. Podeu establir la comparació en import o percentual entre dos anys.\n" -"\n" -" 3. Podeu configurar el compte de referència per a la comparació " -"percentual per a anys en particular.\n" -"\n" -" 4. Podeu seleccionar períodes com una data real o períodes com a data de " -"creació.\n" -"\n" -" 5. Podeu imprimir l'informe escollit en format apaïsat.\n" -" " - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "Heu de seleccionar l'opció 'Horitzontal'. Marqueu-la." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Mostra informe en format horitzontal" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Tots els períodes si està buit" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Amb balanç si no és igual a 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Mostra comparació en %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Selecciona període" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Opcions de l'informe" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Amb moviments" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "D'acord" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Efectiu" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "No compara" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Mostra comptes" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Ha de seleccionar més de 3 exercicis en qualsevol cas." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "Gestió comptable financera - Comparació de comptes" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" -"Pot seleccionar un màxim de 3 exercicis. Seleccioneu un altre vegada." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"3. Heu seleccionat la opció 'Percentatge' amb més de 2 exercicis, però no " -"ha seleccionat format horitzontal." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Podríeu haver comès els següents errors. Corregiu-los e intenteu de nou." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Deixeu-lo buit per a comparar amb els seus pares" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Data creació" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Exercici fiscal" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" -"2. No heu seleccionat l'opció 'Percentatge', però heu seleccionat més de 2 " -"exercicis." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Períodes" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"Pot haver seleccionat les opcions comparar amb més de 1 exercici amb " -"columnes crèdit/dèbit i opció %. Això pot ocasionar que hi hagin continguts " -"que s'imprimeixin fora del paper. Intenteu de nou." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Cancel·la" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "Heu de seleccionar al menys un exercici fiscal. Intenteu de nou." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Informe personalitzat" diff --git a/addons/account_balance/i18n/cs.po b/addons/account_balance/i18n/cs.po deleted file mode 100644 index b0e866418e0..00000000000 --- a/addons/account_balance/i18n/cs.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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-12-23 21:01+0000\n" -"Last-Translator: Kuvaly \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: 2009-12-24 04:40+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Všechny účty" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Oznámení" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Název účtu" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Tisk" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Zvolte Období" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Procento" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Všechna období jsou prázdná" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Zobrazit porovnání v %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Nastavení výpisu" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "S pohyby" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Ok" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Hotovost" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Zobrazit Účty" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" diff --git a/addons/account_balance/i18n/de.po b/addons/account_balance/i18n/de.po deleted file mode 100644 index 1041cd14554..00000000000 --- a/addons/account_balance/i18n/de.po +++ /dev/null @@ -1,310 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\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:44+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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Zeige Soll/Haben Information" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Alle Konten" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Auswahl der Buchungen basiert auf" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Benachrichtigung" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Geschäftsjahres Periode" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Kontensaldo" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Konto Bezeichnung" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "Soll" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Drucke" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Periodenauswahl" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Prozentsatz" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Vergleiche ausgewählte Jahre in Bezig auf" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Auswahl der Geschäftsjahre (Max 3)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Auswahl des Referenzkontos ( für % Vergleich)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Konten Saldo - Jahresvergleich" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" -"Account Balance erweitert die Funktionalität der Finanz Modules\n" -"\n" -" Mit diesem Modul können verschiedene Darstellungen einer BIlanz gedruckt " -"werden\n" -"\n" -" 1. Jahresvergleiche\n" -"\n" -" 2. Vergleichswerte in Geld oder Prozent.\n" -"\n" -" 3. Definition des Kontos der 100% Basis\n" -"\n" -" 4. Auswahl der Perioden aufgrund Buchungs oder Erstellungsdatum\n" -"\n" -" 5. Druck in Hoch oder Querformat\n" -" " - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "Sie müssen \"Querformat\" auswählen." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Report im Querformat anzeigen" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Alle Perioden wenn kein Eintrag" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Mit Saldo ungleich 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "Summe :" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "Saldo" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Zeige Vergleich in %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Periode auswählen" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Report Optionen" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "mit Buchungen" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "OK" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Kasse/Bank" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "NIcht Vergleichen" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Zeige Konten" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "Haben" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Sie haben jedenfalls mehr als 3 Jahre ausgewählt." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "Buchhaltung und Finanzmanagement - Vergleiche Konten" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "Jahr" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "Sie können maximal 3 Jahre auswählen. Nochmals versuchen!" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "Saldo" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"3. Sie haben die 'Prozent' Option mit mehr als 2 Jahren ausgewählt, jedoch " -"nicht \"Querformat\"." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Sie haben möglicherweise folgende Fehler gemacht. Bitte korrigieren und " -"nochmals versuchen." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Für Vergleich mit übergeordnetem Satz leer lassen" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Erzeugt am" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Geschäftsjahr" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "2. Sie haben mehr als 2 Jahre ohne \"Prozent\" Option ausgewählt." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Perioden" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"Sie haben die Vergleiche mit mehr als einem Jahr, sowie Soll/Haben Spalten " -"und der % Option ausgewählt.\r\n" -"Das könnte dazu führen, das über den Papierrand gedruckt wird. Ändern Sie " -"bitte die Anforderung." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Abbruch" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "Sie müssen mindestens 1 Geschäftsjahr auswählen. Nochmals versuchen!" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Personalisierung Report" diff --git a/addons/account_balance/i18n/el.po b/addons/account_balance/i18n/el.po deleted file mode 100644 index 9e1c4b2274e..00000000000 --- a/addons/account_balance/i18n/el.po +++ /dev/null @@ -1,316 +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: 2009-09-08 14:38+0000\n" -"Last-Translator: Makis Nicolaou \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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Προβολή Πληροφοριών Χρέωσης/Πίστωσης" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Όλοι οι λογαριασμοί" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Επιλογή Εγγραφών Βασισμένων σε" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Υπενθύμιση" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Οικονομική Περίοδος" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Ισοζύγιο Λογαριασμού" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Όνομα Λογαριασμού" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Εκτύπωση" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Επιλέξτε Περίοδο(ους)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Ποσοστό" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Σύγκριση Επιλεγμένων Ετών σε Όρους" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Επιλογή Λογιστικού Έτους(ων) (Μέγιστο Τρία Έτη)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Επιλέξτε Λογαριασμό Αναφοράς (για % σύγκρισης)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Ισοζύγιο Λογαριασμού-Σύγκριση Ετών" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" -"Θα πρέπει να επιλέξτε την επιλογή 'Landscape'. Παρακαλώ επιλέξτε την." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Εμφάνση Αναφοράς σε Φόρμα Landscape" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Όλες οι περίοδοι άν είναι κενό" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Με ισοζύγιο που δεν είναι ίσο με 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Εμφάνιση Σύγκρισης σε %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Επιλογή Περιόδου" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Επιλογές Αναφοράς" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Με κινήσεις" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "ΟΚ" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Μετρητά" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Χωρίς Σύγκριση" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Εμφάνιση Λογαριασμών" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Έχετε επιλέξτε περισσότερα απο 3 έτη σε κάθε περίπτωση." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "Μπορείτε να επιλέξετε το πολύ 3 έτη. Παρακαλώ ελέγξτε ξανά." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"3. Έχετε επιλέξτε επιλογή 'Ποσοστό' με περισσότερα απο 2 έτη, αλλα δεν έχετε " -"επιλέξει διάταξη landscape." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Μπορεί να έχετε κάνει τα ακόλουθα λάθη. Παρακαλώ διορθώστε και " -"ξαναπροσπαθήστε." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Διατηρήστε κενα για σύγκριση με κατηγορίες" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Ημερομηνία Δημιουργίας" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Λογιστικό έτος" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" -"2. Δεν έχετε επιλέξει 'Ποσοστό', αλλα έχετε επιλέξει περισσότερο απο 2 έτη." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Περίοδοι" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"Μπορεί να επιλέξατε την επιλογή σύγκρισης με περισσότερα απο 1 έτη με στήλες " -"χρέωσης/πίστωσης και %. Αυτό μπορεί να οδηγήσει σε περιεχόμενα που θα " -"εκτυπωθούν πέρα απο τα όρια του χαρτιού. Παρακαλώ επιλέξτε ξανά." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Άκυρο" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" -"Θα πρέπει να επιλέξετε τουλάχιστον 1 λογιστικό έτος. Προσπαθήστε ξανά." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Παραμετροποίηση Αναφοράς" - -#~ msgid "at" -#~ msgstr "σε" - -#~ msgid "Printing date:" -#~ msgstr "Ημερομηνία εκτύπωσης:" - -#~ msgid "Account Information" -#~ msgstr "Πληροφορίες Λογαριασμού" - -#~ msgid "Currency:" -#~ msgstr "Νόμισμα:" - -#~ msgid "Total:" -#~ msgstr "Σύνολο:" - -#~ msgid "Code" -#~ msgstr "Κώδικας" diff --git a/addons/account_balance/i18n/es.po b/addons/account_balance/i18n/es.po deleted file mode 100644 index 5655f3fd1e2..00000000000 --- a/addons/account_balance/i18n/es.po +++ /dev/null @@ -1,316 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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: 2010-01-02 04:24+0000\n" -"Last-Translator: Federico Vera \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-01-03 04:45+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Mostrar información débito/crédito" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Todas las cuentas" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Selección de entradas basada en" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Notificación" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Periodo financiero" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Balance contable" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Nombre de cuenta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "Debe" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Imprimir" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Selecciona período(s)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Porcentaje" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Comparar ejercicios seleccionados en términos de" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Seleccionar ejercicio(s) fiscal(es) (máximo 3 ejercicios)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Selecciona cuenta de referencia (para comparación %)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Balance contable-Compara ejercicios" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" -"El módulo de balance de cuentas es una funcionalidad añadida al módulo de " -"gestión financiera.\n" -"\n" -" Este módulo ofrece diversas opciones de impresión de balances.\n" -"\n" -" 1. Se puede comparar el balance de distintos años.\n" -"\n" -" 2. Puede establecer la comparación en importe o porcentual entre dos " -"años.\n" -"\n" -" 3. Puede establecer la cuenta de referencia para la comparación " -"porcentual para años en particular.\n" -"\n" -" 4. Puede seleccionar períodos como una fecha real o períodos como fecha " -"de creación.\n" -"\n" -" 5. Puede imprimir el informe que desee en formato apaisado.\n" -" " - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "Debe seleccionar la opción 'Horizontal'. Por favor, márquela." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Mostrar informe en formato horizontal" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Todos los periodos si está vacío" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Con balance si no es igual a 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "Total :" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "Balance de cuenta -" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Mostrar comparación en %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Selecciona período" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Opciones del informe" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Con movimientos" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Ok" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Efectivo" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "No comparar" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Mostrar cuentas" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "Haber" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Debe seleccionar más de 3 ejercicios en cualquier caso." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "Gestión contable y financiera - Comparación de cuentas" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "Año :" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" -"Puede seleccionar un máximo de 3 ejercicios. Por favor, seleccione otra vez." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "Balance" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"3. Ha seleccionado la opción 'Porcentaje' con más de 2 ejercicios, pero no " -"ha seleccionado formato horizontal." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Podría haber cometido los siguientes errores. Por favor, corríjalos e " -"inténtelo de nuevo." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Dejarlo vacío para comparar con sus padres" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Fecha creación" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Ejercicio fiscal" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" -"2. No ha seleccionado la opción 'Porcentaje', pero ha seleccionado más de 2 " -"ejercicios." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Periodos" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"Puede haber seleccionado las opciones comparar con más de 1 ejercicio con " -"columnas crédito/débito y opción %. Esto pueden ocasionar que hayan " -"contenidos que se impriman fuera del papel. Por favor, inténtelo de nuevo." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" -"Debe seleccionar al menos un ejercicio fiscal. Por favor, inténtelo de nuevo." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Informe personalizado" diff --git a/addons/account_balance/i18n/es_AR.po b/addons/account_balance/i18n/es_AR.po deleted file mode 100644 index 90fd274d69f..00000000000 --- a/addons/account_balance/i18n/es_AR.po +++ /dev/null @@ -1,318 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\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 17:17+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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Mostrar información Debe/Haber" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Todas las cuentas" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Selección de asientos basada en" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Notificación" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Periodo financiero" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Balance de la cuenta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Nombre de la cuenta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Imprimir" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Seleccionar período(s)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Porcentaje" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Comparar ejercicios seleccionados en términos de" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Seleccionar ejercicio(s) fiscal(es) (máximo 3 ejercicios)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Selecciona cuenta de referencia (para comparación %)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Balance de cuenta - Compara ejercicios" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" -"Módulo de balance de cuentas es una funcionalidad adicional al módulo de " -"gestión financiera.\n" -"\n" -" Este módulo ofrece las diversas opciones de impresión de hojas de " -"balance.\n" -"\n" -" 1. Se puede comparar el balance de años diferentes.\n" -"\n" -" 2. Puede establecer la comparación en importe o porcentual entre dos " -"años.\n" -"\n" -" 3. Puede establecer la cuenta de referencia para la comparación " -"porcentual para años en particular.\n" -"\n" -" 4. Puede seleccionar períodos como una fecha real o períodos como fecha " -"de creación.\n" -"\n" -" 5. Puede imprimir el informe que desee en formato apaisado.\n" -" " - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" -"Debe seleccionar la opción 'Horizontal'. Por favor, tilde la casilla." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Mostrar informe en formato horizontal" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Todos los periodos si está vacío" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Con balance distinto a 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Mostrar comparación en %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Selecciona un período" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Opciones del Reporte" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Con movimientos" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Aceptar" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Caja" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "No comparar" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Mostrar cuentas" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Ha seleccionado más de 3 ejercicios en cualquier algún caso." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "Gestión Contable/Financiera-Comparar cuentas" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" -"Puede seleccionar un máximo de 3 ejercicios. Por favor, seleccione otra vez." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"3. Ha seleccionado la opción 'Porcentaje' con más de 2 ejercicios, pero no " -"ha seleccionado formato horizontal." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Podría haber cometido los siguientes errores. Por favor, corríjalos e " -"inténtelo de nuevo." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Dejar vacío para comparar con sus padres" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Fecha de creación" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Año fiscal" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" -"2. No ha seleccionado la opción 'Porcentaje', pero ha seleccionado más de 2 " -"ejercicios." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Períodos" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"Puede haber seleccionado las opciones comparar con más de 1 ejercicio con " -"columnas crédito/débito y opción %. Esto pueden ocasionar que hayan " -"contenidos que se impriman fuera del papel. Por favor, inténtelo de nuevo." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" -"Debe seleccionar al menos un ejercicio fiscal. Por favor, inténtelo de nuevo." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Personalice el reporte" diff --git a/addons/account_balance/i18n/et.po b/addons/account_balance/i18n/et.po deleted file mode 100644 index d82e283c3f9..00000000000 --- a/addons/account_balance/i18n/et.po +++ /dev/null @@ -1,289 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\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:17+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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Näita Deebet/Kreedit informatsiooni" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Kõik kontod" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Teavitus" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Finantsperiood" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Kontojääk" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Konto nimi" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Trüki" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Vali periood(id)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Protsent" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Vali finantsaasta(d) (maksimum kolm aastat)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Valige võrdluskonto (% võrdluseks)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Konto bilanss - võrdle aastaid" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Kõik perioodid kui tühi" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Bilanss pole 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Näita võrdlus protsentides %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Vali periood" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Aruande valikud" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Liikumistega" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Ok" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Kassa" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Ära Võrdle" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Näita Kontosid" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "Sa võid valida maksimaalselt 3 aastat. Palun märgista uuesti." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Võimalik, et Teie tegite järgmised vead. Palun parandage need ja proovige " -"uuesti." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Loomise Kuupäev" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Majandusaasta" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Perioodid" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Tühista" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "Te peate valima vähemalt ühe finantsaasta. Proovige uuesti." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Kohanda aruannet" diff --git a/addons/account_balance/i18n/fi.po b/addons/account_balance/i18n/fi.po deleted file mode 100644 index b3a63c42ff5..00000000000 --- a/addons/account_balance/i18n/fi.po +++ /dev/null @@ -1,300 +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: 2009-09-08 14:10+0000\n" -"Last-Translator: Fabien (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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Kaikki tilit" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Tili balanssi" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Tilin nimi" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Tulosta" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Valitse kausi" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "OK" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Käteinen" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Älä vertaa" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Näytä tilit" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Olet valinnut enemmän kuin 3 vuotta joka tapauksessa" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Luomispäivämäärä" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Kausi" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Peruuta" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" - -#~ msgid "Account Information" -#~ msgstr "Tilitiedot" - -#~ msgid "Printing date:" -#~ msgstr "Tulostus päiväys:" - -#~ msgid "Currency:" -#~ msgstr "Valuutta" - -#~ msgid "Code" -#~ msgstr "Koodi" diff --git a/addons/account_balance/i18n/fr.po b/addons/account_balance/i18n/fr.po deleted file mode 100644 index 0695bb9ee50..00000000000 --- a/addons/account_balance/i18n/fr.po +++ /dev/null @@ -1,294 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\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:17+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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Afficher les informations de Débit/Crédit" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Tous les comptes" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Sélection basée sur les écritures" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Notification" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Période Fiscale" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Balance des comptes" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Nom du compte" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Imprimer" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Sélectioner la(les) Période(s)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Pourcentage" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Comparer l'année sélectionnée en terme de" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Sélectionner la ou les Années Fiscales (Maximum Trois Ans)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Sélectionner le COmpte Référence (pour la comparaison en %)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "Vous avez choisi l'option 'Paysage'. Merci de vérifier." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Afficher le Rapport au Format Paysage" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Toutes les périodes si vide" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Avec la balance qui n'est pas égal à 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Afficher la Comparaison en %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Sélectionnez une Période" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Options du Rapport" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Avec mouvements" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Ok" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Liquidités" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Ne pas comparer" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Afficher les Comptes" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Vous avez sélectionner plus de 3 années dans tous les cas." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" -"Vous pouvez sélectionner un maximum de 3 années. Merci de vérifier encore." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"Vous avez sélectionné l'option 'Pourcentage' avec plus de 2 années, mais " -"vous n'avez pas sélcetionné le format 'paysage'." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Vous avez peut être terminer en oubliant des erreurs. Merci de les corrigés " -"et d'essayer encore." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Laisser vide pour comparer avec le parent" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Date de création" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Année fiscale" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" -"Vous n'avez pas sélectionné l'option 'Pourcentage', mais vous avez " -"sélectionné plus de 2 années." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Périodes" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Annuler" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "Vous devez au moins sélectionner 1 année fiscale. Essayer encore." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Personnaliser le Rapport" diff --git a/addons/account_balance/i18n/gl.po b/addons/account_balance/i18n/gl.po deleted file mode 100644 index 3b7d18a5114..00000000000 --- a/addons/account_balance/i18n/gl.po +++ /dev/null @@ -1,336 +0,0 @@ -# translation of account-balance-es.po to Galego -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -# Frco. Javier Rial Rodríguez , 2009. -msgid "" -msgstr "" -"Project-Id-Version: account-balance-es\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-01-22 19:50+0000\n" -"Last-Translator: Miguel Anxo Bouzada \n" -"Language-Team: Galego \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-23 04:45+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Mostrar información débito/crédito" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Todas as contas" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Selección de entradas baseada en" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Notificación" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Periodo financeiro" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Balance contábel" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Nome da conta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "Débito" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Imprimir" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Selecciona período(s)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Porcentaxe" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Comparar exercicios seleccionados en térmos de" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Seleccionar exercicio(s) fiscai(s) (máximo 3 exercicios)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Selecciona conta de referencia (para comparación %)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Balance contábel-Compara exercicios" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" -"O módulo de balance de contas é unha funcionalidade engadida ao módulo de " -"xestión financieira.\n" -"\n" -" Este módulo ofrece diversas opcións de impresión de balances.\n" -"\n" -" 1. Podese comparar o balance de distintos anos.\n" -"\n" -" 2. Pode establecer a comparación en importe ou porcentual entre dous " -"anos.\n" -"\n" -" 3. Pode establecer a conta de referencia para a comparación porcentual " -"para anos en particular.\n" -"\n" -" 4. Pode seleccionar períodos como unha data real ou períodos como data " -"de creación.\n" -"\n" -" 5. Pode imprimir o informe que desexe en formato apaisado.\n" -" " - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "Debe seleccionar a opción 'Horizontal'. Por favor, márquea." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Mostrar informe en formato horizontal" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Todos os periodos se está baleiro" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Con balance se non é igual a 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "Total :" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "Balance de conta -" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Mostrar comparación en %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Selecciona período" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Opcións do informe" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Con movementos" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Ok" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Efectivo" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Non comparar" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Mostrar contas" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "Crédito" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Debe seleccionar máis de 3 exercicios en calquera caso." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "Xestión contable e financieira - Comparación de contas" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "Ano :" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" -"Pode seleccionar un máximo de 3 exercicios. Por favor, seleccione outra vez." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "Balance" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"3. Seleccionou a opción 'Porcentaxe' con máis de 2 exercicios, pero non " -"seleccionou formato horizontal." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Podería ter cometido os seguintes erros. Por favor, corríxaos e ténteo de " -"novo." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Deixalo baleiro para comparar cos seus pais" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Creación de data" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Exercicio fiscal" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" -"2. Non seleccionou a opción 'Porcentaxe', pero seleccionou máis de 2 " -"exercicios." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Periodos" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"Pode ter seleccionado as opcións comparar con máis dun 1 exercicio con " -"columnas crédito/débito e opción %. Isto pode ocasionar que haxa contidos " -"que se impriman fóra do papel. Por favor, inténteo de novo." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" -"Debe seleccionar a lo menos un exercicio fiscal. Por favor, inténteo de novo." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Informe personalizado" - -#~ msgid "Account Information" -#~ msgstr "Información da conta" - -#~ msgid "Printing date:" -#~ msgstr "Data impresión:" - -#~ msgid "at" -#~ msgstr "ás" - -#~ msgid "Currency:" -#~ msgstr "Moeda:" - -#~ msgid "Total:" -#~ msgstr "Total:" - -#~ msgid "Code" -#~ msgstr "Código" diff --git a/addons/account_balance/i18n/hr.po b/addons/account_balance/i18n/hr.po deleted file mode 100644 index 3fbbd3d9203..00000000000 --- a/addons/account_balance/i18n/hr.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\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 15:29+0000\n" -"Last-Translator: Ivica Perić \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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" diff --git a/addons/account_balance/i18n/hu.po b/addons/account_balance/i18n/hu.po deleted file mode 100644 index 0936748f4c7..00000000000 --- a/addons/account_balance/i18n/hu.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" diff --git a/addons/account_balance/i18n/id.po b/addons/account_balance/i18n/id.po deleted file mode 100644 index 5ffd0727188..00000000000 --- a/addons/account_balance/i18n/id.po +++ /dev/null @@ -1,288 +0,0 @@ -# Indonesian translation for openobject-addons -# Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 -# This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2008. -# -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-16 15:21+0000\n" -"Last-Translator: opix \n" -"Language-Team: Indonesian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Tampilkan Informasi Debit/Kredit" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Pemberitahuan" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Neraca Saldo" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Nama Akun" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Cetak" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Pilihan Periode" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Pilihlah tahun pembukuan(Max. 3 tahun)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Memilih Akun referensi (untuk perbandingan bentuk %)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Neraca Saldo - Perbandingan Tahun" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Menampilakan Laporan dalam bentuk Lanscape" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Menampilkan perbandingan dalam %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Pilihan Periode" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Pilihan Laporan" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Ok" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Menampilkan Akun-akun" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Anda dapat memilih lebih dari 3 tahun pada beberapa kasus" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Tahun Pembukuan" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Periode" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Batal" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Mengatur Laporan" diff --git a/addons/account_balance/i18n/it.po b/addons/account_balance/i18n/it.po deleted file mode 100644 index 99894b9c746..00000000000 --- a/addons/account_balance/i18n/it.po +++ /dev/null @@ -1,314 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2009-12-29 15:24+0000\n" -"Last-Translator: Carlo \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: 2009-12-30 04:47+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Visualizza i debiti/crediti" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Tutti i conti" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Entrate selezionate in base a" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Avviso" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Periodo finanziario" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Bilancio" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Nome conto" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "Debito" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Stampa" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Seleziona periodo(i)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Percentuale" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Confronta gli anni selezionati in base a" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Seleziona gli anni fiscali (Max 3)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Selezionare Conto di riferimento (per % confronto)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Bilancio - Confronta anni" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" -"Il modulo Bilancio è una funzione aggiuntiva del modulo Gestione " -"Finanziaria.\n" -"\n" -" Questo modulo fornisce le diverse opzioni per la stampa del foglio di " -"bilancio.\n" -"\n" -" 1. Si può comparare il bilancio per anni differenti.\n" -"\n" -" 2. Si può impostare comparazione monetaria o in percentuale tra due " -"anni.\n" -"\n" -" 3. Si può impostare il conto di riferimento per una comparazione " -"percentuale per specifici anni.\n" -"\n" -" 4. Si possono selezionale periodi dalla data attuale o periodi dalla " -"data di creazione.\n" -"\n" -" 5. C'è la possibilità di stampare il report desiderato in formato " -"Landscape.\n" -" " - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "Deve essere selezionata l'opzione 'Orizzontale'. Controllare" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Mostra il report nel formato dello Stato" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Tutti i periodi se vuoto" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Con chiusura diversa da zero" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "Totale :" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "Bilancio contabile -" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Mostra in %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Seleziona periodo" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Report opzioni" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Con movimentazioni" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Ok" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Contante" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Non Comparabile" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Mostra Contabilità" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "Credito" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "Hai selezionato più di 3 anni in ogni scelta." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "Gestione Finanziaria e Contabile - Confronto Conti" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "Anno :" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "Puoi selezionare massimo 3 anni. Controlla ancora." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "Bilancio" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"3. Hai selezionato l'opzione 'Percentuale' con più di 2 anni, ma non hai " -"selezionato il formato Orizzontale" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "Potresti aver fatto i seguenti errori. Correggili e riprova." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Svuota per comparare con i sovraconti." - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Data di Creazione" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Anno fiscale" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" -"2. Non hai selezionato l'opzione 'Percentuale', ma hai selezionato più di 2 " -"anni." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Periodi" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"Potresti aver selezionato le opzioni confronto per più di 1 anno con le " -"colonne credito/debito e % come opzione. Questo potrebbe far uscire i " -"contenuti dai margini di stampa. Controlla." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Annulla" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "Devi selezionare almeno 1 anno Fiscale. Riprova." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Rapporto Personalizzato" diff --git a/addons/account_balance/i18n/ko.po b/addons/account_balance/i18n/ko.po deleted file mode 100644 index a4e6d0e3483..00000000000 --- a/addons/account_balance/i18n/ko.po +++ /dev/null @@ -1,305 +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 12:03+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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "차변/대변 정보 보기" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "모든 계정" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "엔트리 선정의 기준" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "통지" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "회계 기간" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "계정 밸런스" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "계정 이름" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "인쇄" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "기간 선택" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "퍼센트" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "선택한 년도들의 비교 기준" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "선택된 회계년도 (최대 3년)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "참조 계정을 선택하십시오 (% 비교)." - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "계정 밸런스-비교 년도들" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "\"랜드스케이프\" 옵션을 선택해야 합니다. 체크하십시오." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "팬드스케이프 폼으로 리포트 보기" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "비워두면 모든 기간이 적용됩니다." - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "밸런스가 0이 아닌" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "%로 비교" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "기간 선택" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "리포트 옵션" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "무브먼트와 함께" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "OK" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "현금" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "비교하지 않습니다." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "계정 보기" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. 3년 이상을 선택하면 안됩니다." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "최대 3년 간을 선택할 수 있습니다." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "3. 2년 이상을 '퍼센트' 옵션으로 선택했지만, 랜드스케이프 포맷을 선택하지 않았습니다." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "다음과 같은 실수가 있었습니다. 교정한 뒤 다시 시도하십시오." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "페어런트와 비교를 원하면 비워두십시오." - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "생성 날짜" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "회계년도" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "2. 2년 이상을 선택하면서, '퍼센트' 옵션을 선택하지 않았습니다." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "기간" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"적어도 1년 이상을 대변/차변 칼럼과 % 옵션으로 비교하는 것을 선택했습니다. 그렇게 하면 페이지의 인쇄 범주를 넘어 서게 됩니다. 다시 " -"시도하십시오." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "취소" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "적어도 1년 이상의 회계년도를 선택하십시오." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "리포트 커스터마이즈" - -#~ msgid "Printing date:" -#~ msgstr "인쇄 날짜:" - -#~ msgid "Account Information" -#~ msgstr "계정 정보" - -#~ msgid "Currency:" -#~ msgstr "통화:" - -#~ msgid "Total:" -#~ msgstr "합계:" - -#~ msgid "Code" -#~ msgstr "코드" diff --git a/addons/account_balance/i18n/lt.po b/addons/account_balance/i18n/lt.po deleted file mode 100644 index 38566f3bc1d..00000000000 --- a/addons/account_balance/i18n/lt.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-08-28 16:01+0000\n" -"PO-Revision-Date: 2010-02-14 11:05+0000\n" -"Last-Translator: Paulius Sladkevičius \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-02-17 04:56+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Rodyti debeto/kredito informaciją" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Visos sąskaitos" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Įrašų pasirinkimas pagrįstas" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Perspėjimas" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Financinis periodas" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Sąskaitos balansas" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Sąskaitos pavadinimas" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Spausdinti" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Parinkti periodą(-us)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Procentaliai" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Palyginti pasirinktus metus pagal" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Parinkti fiskalinius metus (daugiausia tris metus)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Sąskaitos balansas-Palyginimo metai" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Visi periodai tušti" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Parodyti palyginimą %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Pasirinkti periodą" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Ataskaitos nustatymai" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Gerai" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Grynieji pinigai" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Nelyginti" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Rodyti sąskaitas" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Sukūrimo data" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Mokestiniai metai" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Periodai" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Atšaukti" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" diff --git a/addons/account_balance/i18n/nl.po b/addons/account_balance/i18n/nl.po deleted file mode 100644 index da2a8ff6bb9..00000000000 --- a/addons/account_balance/i18n/nl.po +++ /dev/null @@ -1,308 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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-12-11 19:53+0000\n" -"Last-Translator: Pieter J. Kersten (EduSense BV) \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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Toon debet-/credit informatie" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Alle rekeningen" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Keuze gebaseerd op" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Melding" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Periode" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Rekeningsaldo" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Rekeningnaam" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "Debet" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Afdrukken" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Kies periode(n)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Percentage" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Vergelijk geselecteerde jaren in termen van" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Kies boekjaar/boekjaren (Max 3 jaar)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Kies referentie rekening (voor % vergelijking)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Rekening saldi-Vergelijk boekjaren" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" -"Account Balans is een uitbreiding van de Financieel Beheer module.\n" -" Deze module geeft u meerder mogelijkheden om een balans af te drukken.\n" -" 1. U kunt de balans van verschillende boekjaren met elkaar vergelijken\n" -" 2. U kunt een vergelijking uitdrukken in percentages of bedragen.\n" -" 3. U kunt referentierekeningen gebruiken voor de vergelijking van " -"specifieke boekjaren.\n" -" 4. U kunt perioden kiezen op basis van effectieve datum of op basis van " -"aanmaakdatum.\n" -" 5. U krijgt een optie om het gewenste overzicht in liggend formaat af te " -"drukken.\n" -" " - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" -"U dient de 'Liggend' afdrukstand te kiezen. Controleer dit alstublieft." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Toon overzicht in liggend formaat" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Alle perioden indien leeg" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Met saldo ongelijk aan 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "Totaal :" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "Balans -" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Toon vergelijking in %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Kies periode" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Opties overzicht" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Met boekingen" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Ok" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Contanten" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Niet vergelijken" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Toon rekeningen" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "Credit" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. U heeft meer dan 3 boekjaren gekozen" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "Boekhouding en financieel beheer-Vergelijk rekeningen" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "Jaar :" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "U kunt maximaal 3 boekjaren kiezen. Probeer opnieuw." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "Balans" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"3. U heeft de 'Percentage' optie gebruikt met meer dan 2 boekjaren, maar u " -"hebt niet het liggend formaat gekozen." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Het kan zijn dat u één van onderstaande vergissingen hebt gemaakt. Corrigeer " -"deze alstublieft en probeer het dan opnieuw." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Leeg laten voor vergelijking met de bovenliggende" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Aanmaakdatum" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Boekjaar" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" -"2. U heeft de 'Percentage' optie niet gekozen, maar u hebt meer dan 2 " -"boekjaren geselecteerd." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Perioden" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"Misschien heeft u de vergelijk optie gebruikt met meer dan 1 jaar met " -"credit/debet kolommen en % optie. Dit kan er toe leiden dat er buiten de " -"marges van het papier wordt afgedrukt. Probeer het opnieuw." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Annuleren" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "U dient tenminste 1 boekjaar te selecteren. Probeer opnieuw." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Overzicht aanpassen" diff --git a/addons/account_balance/i18n/nl_BE.po b/addons/account_balance/i18n/nl_BE.po deleted file mode 100644 index b09edbf19a4..00000000000 --- a/addons/account_balance/i18n/nl_BE.po +++ /dev/null @@ -1,275 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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 15:34:15+0000\n" -"PO-Revision-Date: 2009-08-28 15:34:15+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_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "Account Balance Module is an added functionality to the Financial Management module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "3. You have selected 'Percentage' option with more than 2 years, but you have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "2. You have not selected 'Percentage' option, but you have selected more than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You may have selected the compare options with more than 1 year with credit/debit columns and % option.This can lead contents to be printed out of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" - diff --git a/addons/account_balance/i18n/pl.po b/addons/account_balance/i18n/pl.po deleted file mode 100644 index 09f0fc63c9f..00000000000 --- a/addons/account_balance/i18n/pl.po +++ /dev/null @@ -1,292 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\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:36+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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Pokaż informację Winien/Ma" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Wszystkie konta" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Wybór zapisów wg" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Powiadamianie" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Okres finansowy" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Saldo konta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Nazwa konta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Drukuj" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Wybierz okres(y)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Procentowo" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Porównaj wybrane lata pod kątem" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Wybierz lata podatkowe (maksymalnie 3)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Wybierz konto referencyjne (do porównania %)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Saldo konta - Porównanie lat" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "Musisz wybrać opcję 'Poziomo'. Zaznacz ją." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Pokaż raport w poziomie" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Jeśli puste, to wszystkie okresy" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Z saldem różnym od zera" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Pokaż porównanie w %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Wybierz okres" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Opcje raportu" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Ze zmianami stanu" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Ok" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Gotówka" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Nie porównuj" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Pokaż konta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Wybrałeś więcej niż 3 lata w którymś przypadku." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "Możesz wybrać maksymalnie 3 lata. Sprawdź ponownie." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"3. Wybrałeś opcję 'Procentowo' z więcej niż dwoma latami, ale nie wybrałeś " -"wydruku poziomego." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Mogłaś(eś) popełnić jeden z poniższych błędów. Popraw i spróbuj ponownie." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Pozostaw puste do porównania z nadrzędnymi." - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Data utworzenia" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Rok podatkowy" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "2. Nie wybrałeś opcji 'Procentowo', ale wybrałeś więcej niż 2 lata." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Okresy" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"Pewnie wybrałaś(eś) opcję porównania z więcej niż 1 rokiem z kolumnami " -"Winien/Ma i opcją %. To prowadzi do wydruku poza papierem. Spróbuj ponownie." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Anuluj" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "Musisz wybrać co najmniej 1 rok podatkowy. Spróbuj ponownie." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Dostosuj raport" diff --git a/addons/account_balance/i18n/pt.po b/addons/account_balance/i18n/pt.po deleted file mode 100644 index 2ac51638ca5..00000000000 --- a/addons/account_balance/i18n/pt.po +++ /dev/null @@ -1,297 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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-11-28 23:52+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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Mostrar informação de debito / credito" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Todas as Contas" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Selecções de entradas baseadas em" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Notificação" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Período Financeiro" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Saldo de conta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Nome da conta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "Débito" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Imprimir" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Selecçionar periodos" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Percentagem" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Comparar ano selecçionados em termos de" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Seleccione o(s) ano(s) fiscais (no máximo três anos)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Selecçione conta de referençia (por % de comparção)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Balancete de contas - comparar anos" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "Você tem de seleccionar a opção 'Landscape'. Por favor verifique-o." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Mostrar relatório em modo de paisagem" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Todos os períodos se vazio" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Com balanço não igual a 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "Total:" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "Balancete da contabilidade" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Mostrar comparação em %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Selecionar período" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Opções de relatório" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Com movimentos" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Ok" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Dinheiro" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Não comparar" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Mostrar contas" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "Crédito" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "Selecçionaste mais de 3 anos em qualquer caso." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "Ano :" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" -"Você pode seleccionar no máximo de 3 anos. por favor verifique de novo." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "Saldo" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"3. Você seleccionou a opção 'Percentagem' com mais de 2 anos, mas você não " -"seleccionou o formato Landscape" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Você pode ter cometido os seguintes erros. Por favor corrija-os e tente de " -"novo." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Manter vazio para comparação com o seu ascendente" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Data de Criação" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Ano fiscal" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" -"2. Você não seleccionou a opção 'Percentagem', mas você seleccionou mais de " -"2 anos" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Períodos" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"Você pode ter seleccionado as opções de comparação com mais de 1 ano com as " -"colunas do crédito/débito e os % da opção. Isto pode levar a que os " -"conteúdos sejam imprimidos para fora do papel. Por favor tente outra vez." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "Você tem de seleccionar pelo menos 1 ano fiscal. Tente de novo." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Personalizar relatório" diff --git a/addons/account_balance/i18n/pt_BR.po b/addons/account_balance/i18n/pt_BR.po deleted file mode 100644 index feb30a3fad2..00000000000 --- a/addons/account_balance/i18n/pt_BR.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\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 15:49+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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" diff --git a/addons/account_balance/i18n/ro.po b/addons/account_balance/i18n/ro.po deleted file mode 100644 index c8a3b0a694b..00000000000 --- a/addons/account_balance/i18n/ro.po +++ /dev/null @@ -1,312 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\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:34+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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Afişare informaţii debit/credit" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Toate conturile" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Selectare înregistrări după" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Notificare" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Perioadă financiară" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Sold cont" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Denumire cont" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "Debit" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Tipărire" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Selectare perioadă(e)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Procentaj" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Comparare ani selectaţi după" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Selectare an(i) fiscal(i) (maxim trei ani)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Selectare cont referinţă (pentru comparare %)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Sold conturi - compară ani" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" -"Modulul Sold cont este o funcţionalitate adăugată la modulul Management " -"financiar.\n" -"\n" -" Acest modul vă oferă opţiuni variate pentru tipărirea extraselor de " -"cont\n" -"\n" -" 1. Puteţi compara extrasele pentru diferiţi ani\n" -"\n" -" 2. Puteţi opta pentru comparare monetară sau procentuală între doi ani\n" -"\n" -" 3. Puteţi alege un cont de referinţă pentru comparare procentuală faţă " -"de un anumit an\n" -"\n" -" 4. Puteţi selecta perioade după data actuală sau după data creării\n" -"\n" -" 5. Aveţi opţiunea de a tipări rapoartele dorite în format vedere.\n" -" " - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" -"Trebuie să selectaţi opţiunea 'landscape' (vedere). Verificaţi, vă rog." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Afişează raportul în format vedere" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Toate perioadele, dacă rămâne necompletat" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "Cu sold diferit de zero" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "Total :" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "Sold cont -" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Afişează comparaţia în %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Selectare perioadă" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Opţiuni raport" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Cu mişcări" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Ok" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Numerar" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Nu compara" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Afişează conturi" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "Credit" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. Aţi selectat mai mult de 3 ani." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "Management financiar contabil - Comparare conturi" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "An :" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "Puteţi selecta maxim 3 ani. Reîncercaţi." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "Balanță" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"3. Aţi selectat opţiunea 'Procentaj' pe mai mult de 2 ani, dar nu aţi ales " -"formatul vedere." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Poate aţi făcut vreuna din următoarele greşeli. Corectaţi şi reîncercaţi." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Lasaţi necompletat pentru comparare cu contul părinte" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Data creării" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "An fiscal" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" -"2. Nu aţi selectat opţiunea 'procentaj', dar aţi selectat mai mult de 2 ani." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Perioade" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"S-ar putea să fi selectat opţiunile de comparare cu mai mult de 1 an, cu " -"coloanele debit/credit şi opţiunea %. Toate acestea ar putea genera un " -"raport ce nu se încadrează în pagină. Reîncercaţi." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Renunțare" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "Trebuie să selectaţi cel puţin 1 an fiscal. Reîncercaţi." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Raport personalizat" diff --git a/addons/account_balance/i18n/ru.po b/addons/account_balance/i18n/ru.po deleted file mode 100644 index af1a1051aaf..00000000000 --- a/addons/account_balance/i18n/ru.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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: 2008-10-27 08:30+0000\n" -"Last-Translator: Sergei Kostigoff \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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Показать информацию по дебету / кредиту" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Уведомление" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Баланс счета" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Название счета" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Распечатать" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Выбрать период(ы)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Сравнить выбранные годы в терминах" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Сравнить учетные годы (Макс. три года)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Выберите соответствующий счет (для % сравнения)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Баланс по счету - сравнить по годам" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Вывести отчет в ландшафной форме" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Показать сравнение в %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Выберите период" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Параметры отчета" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "ОК" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Показать счета" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. В любом случае, выбрано более чем 3 года." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Отчетный год" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Периоды" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Отмена" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Настройка отчета" diff --git a/addons/account_balance/i18n/sl.po b/addons/account_balance/i18n/sl.po deleted file mode 100644 index 8a2a3c19906..00000000000 --- a/addons/account_balance/i18n/sl.po +++ /dev/null @@ -1,312 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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-11-20 14:20+0000\n" -"Last-Translator: Simon Vidmar \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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Prikaži oinformacijo breme/dobro" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Vsi konti" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "Izbira vnosov temelji na" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Obvestilo" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Finančno obdobje" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Stanje konta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Naziv konta" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "Bremo" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Natisni" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Izberi obdobje(a)" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Delež" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "Primerjaj izbrana leta po" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "Izberite poslovna leta (največ tri)" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "Izberite referenčni konto (za primerjavo v %)" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Stanje konta - primerjaj med leti" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" -"Modul \"Stanje konta\" je dodatek funkcionalnosti modula \"Finančno " -"upravljanje\".\n" -"\n" -" Ta modul vam nudi različne možnosti za tiskanje bilance stanja.\n" -"\n" -" 1. Lahko primerjate bilance stanja za različna leta.\n" -"\n" -" 2. Nastavite lahko denarno ali odstotkovno primerjavo med dvema letoma.\n" -"\n" -" 3. Lahko nastavite referenčni konto za odstotekovno primerjavo za " -"posamezna leta.\n" -"\n" -" 4. Izberete lahko dobe kot dejanski datum ali obdobja kot datum " -"nastanka.\n" -"\n" -" 5. Imate možnost tiskanja želenega poročila v ležečem formatu.\n" -" " - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "Izbrati morate možnost \"Ležeče\". Prosim, reverite." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "Prikaži poročilo v ležeči obliki" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Če prazno, potem vsa obdobja" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "S stanjem različnim od 0" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "Skupaj:" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "Stanje konta -" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "Prikaži primerjavo v %" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Izberi obdobje" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Možnosti poročila" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "S premiki" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "V redu" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Gotovina" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "Ne primerjaj" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Prikaži konto" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "Dobro" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "1. V vsakem primeru ste izbrali več kot 3 leta." - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "Računovodstvo in finančno upravljanje - primerjaj konte" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "Leto:" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "Izberete lahko največ tri leta. Prosim, preverite ponovno." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "Stanje" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" -"3. Izbrali ste možnost \"odstotki\" za več kot dve leti, vendar niste " -"izbrali ležečega formata." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Naredili ste naslednje napake. Prosim, popravite jih in poskusite znova." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "Pustite prazno za primerjavo z nadrejenim." - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Ustvarjeno dne" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Davčno leto" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" -"3. Niste izbrali možnosti \"odstotki\" , vendatr ste izbrali več kot dve " -"leti." - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Obdobja" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" -"Najbrž ste izbrali možnost za primerjavo več kot enega leta s kolonami " -"breme/dobro in možnostjo %. To lahko privede k temu, da se bo vsebina " -"izpisala izven papirja. Poskuste znova." - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "Prekliči" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "Izbrati morate vsaj eno poslovno leto. Poskusite znova." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Prilagodi poročilo" diff --git a/addons/account_balance/i18n/sq.po b/addons/account_balance/i18n/sq.po deleted file mode 100644 index afdbb2e351a..00000000000 --- a/addons/account_balance/i18n/sq.po +++ /dev/null @@ -1,550 +0,0 @@ -# Translation of OpenERP Server. -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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 15:23:46+0000\n" -"PO-Revision-Date: 2009-08-28 15:23:46+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_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "Account Balance Module is an added functionality to the Financial Management module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "3. You have selected 'Percentage' option with more than 2 years, but you have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "2. You have not selected 'Percentage' option, but you have selected more than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You may have selected the compare options with more than 1 year with credit/debit columns and % option.This can lead contents to be printed out of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" - -# This file contains the translation of the following modules: -# * account_balance -# -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 15:23:46+0000\n" -"PO-Revision-Date: 2009-08-28 15:23:46+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_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "Account Balance Module is an added functionality to the Financial Management module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "3. You have selected 'Percentage' option with more than 2 years, but you have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "2. You have not selected 'Percentage' option, but you have selected more than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You may have selected the compare options with more than 1 year with credit/debit columns and % option.This can lead contents to be printed out of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" - diff --git a/addons/account_balance/i18n/sv.po b/addons/account_balance/i18n/sv.po deleted file mode 100644 index 0936748f4c7..00000000000 --- a/addons/account_balance/i18n/sv.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" diff --git a/addons/account_balance/i18n/tlh.po b/addons/account_balance/i18n/tlh.po deleted file mode 100644 index 5512d35b0e6..00000000000 --- a/addons/account_balance/i18n/tlh.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" diff --git a/addons/account_balance/i18n/tr.po b/addons/account_balance/i18n/tr.po deleted file mode 100644 index f97139deb20..00000000000 --- a/addons/account_balance/i18n/tr.po +++ /dev/null @@ -1,289 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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: 2010-02-14 21:29+0000\n" -"Last-Translator: Mustafa Yılmaz \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-02-17 04:56+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "Borç/Kredi Bilgisini Göster" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "Tüm hesaplar" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "Bildirim" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "Mali Dönem" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "Hesap bakiyesi" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "Hesap Adı" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "Borç" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "Yazdır" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "Dönem(leri) Seç" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "Oran" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "Hesap Bakiyesi (Yıl Karşılaştırma)" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "Tüm Dönemler boş ise" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "Toplam :" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "Hesap Bakiyesi -" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "Dönem seçin" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "Rapor Seçenekleri" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "Hareketlerle Birlikte" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "Tamam" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "Nakit" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "Hsapları Göster" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "Alacak" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "En fazla 3 yıl seçebilirsiniz. Lütfen tekrar kontrol edin." - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "Bakiye" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" -"Aşağıdaki hataları yapmış olabilirsiniz. Lütfen bunları düzeltin ve tekrar " -"deneyin." - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "Oluşturulma Tarihi" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "Mali yıl" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "Dönemler" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "İptal" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "En az 1 Mali Yıl seçmelisiniz. Tekrar deneyin." - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "Raporu Yapılandır" diff --git a/addons/account_balance/i18n/uk.po b/addons/account_balance/i18n/uk.po deleted file mode 100644 index 0d4c2976b2c..00000000000 --- a/addons/account_balance/i18n/uk.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\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 16:22+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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" diff --git a/addons/account_balance/i18n/vi.po b/addons/account_balance/i18n/vi.po deleted file mode 100644 index 146dc2f272f..00000000000 --- a/addons/account_balance/i18n/vi.po +++ /dev/null @@ -1,550 +0,0 @@ -# Translation of OpenERP Server. -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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:00:38+0000\n" -"PO-Revision-Date: 2009-08-28 16:00:38+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_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "Account Balance Module is an added functionality to the Financial Management module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "3. You have selected 'Percentage' option with more than 2 years, but you have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "2. You have not selected 'Percentage' option, but you have selected more than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You may have selected the compare options with more than 1 year with credit/debit columns and % option.This can lead contents to be printed out of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" - -# This file contains the translation of the following modules: -# * account_balance -# -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:00:38+0000\n" -"PO-Revision-Date: 2009-08-28 16:00:38+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_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "Account Balance Module is an added functionality to the Financial Management module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "3. You have selected 'Percentage' option with more than 2 years, but you have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "2. You have not selected 'Percentage' option, but you have selected more than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You may have selected the compare options with more than 1 year with credit/debit columns and % option.This can lead contents to be printed out of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" - diff --git a/addons/account_balance/i18n/zh_CN.po b/addons/account_balance/i18n/zh_CN.po deleted file mode 100644 index 81e8f89a857..00000000000 --- a/addons/account_balance/i18n/zh_CN.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -msgid "" -msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc3\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 13:58+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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "科目余额" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" diff --git a/addons/account_balance/i18n/zh_TW.po b/addons/account_balance/i18n/zh_TW.po deleted file mode 100644 index aa272844f9d..00000000000 --- a/addons/account_balance/i18n/zh_TW.po +++ /dev/null @@ -1,287 +0,0 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_balance -# -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: 2009-12-16 05:14+0000\n" -"X-Generator: Launchpad (build Unknown)\n" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,show_columns:0 -msgid "Show Debit/Credit Information" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "All accounts" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,period_manner:0 -msgid "Entries Selection Based on" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "Notification" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Financial Period" -msgstr "" - -#. module: account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance -#: model:ir.actions.report.xml,name:account_balance.account_account_balance_landscape -msgid "Account balance" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Name" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Debit" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,checkyear:0 -msgid "Print" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period(s)" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Percentage" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Compare Selected Years In Terms Of" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Fiscal Year(s)(Maximum Three Years)" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,select_account:0 -msgid "Select Reference Account(for % comparision)" -msgstr "" - -#. module: account_balance -#: model:ir.actions.wizard,name:account_balance.wizard_account_balance_report -msgid "Account balance-Compare Years" -msgstr "" - -#. module: account_balance -#: model:ir.module.module,description:account_balance.module_meta_information -msgid "" -"Account Balance Module is an added functionality to the Financial Management " -"module.\n" -"\n" -" This module gives you the various options for printing balance sheet.\n" -"\n" -" 1. You can compare the balance sheet for different years.\n" -"\n" -" 2. You can set the cash or percentage comparison between two years.\n" -"\n" -" 3. You can set the referential account for the percentage comparison for " -"particular years.\n" -"\n" -" 4. You can select periods as an actual date or periods as creation " -"date.\n" -"\n" -" 5. You have an option to print the desired report in Landscape format.\n" -" " -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You have to select 'Landscape' option. Please Check it." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,landscape:0 -msgid "Show Report in Landscape Form" -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,periods:0 -msgid "All periods if empty" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With balance is not equal to 0" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Total :" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Account Balance -" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,format_perc:0 -msgid "Show Comparision in %" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Select Period" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Report Options" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,account_choice:0 -msgid "With movements" -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,backtoinit,end:0 -#: wizard_button:account.balance.account.balance.report,zero_years,end:0 -msgid "Ok" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Cash" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,compare_pattern:0 -msgid "Don't Compare" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,account_choice:0 -msgid "Show Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Credit" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "1. You have selected more than 3 years in any case." -msgstr "" - -#. module: account_balance -#: model:ir.module.module,shortdesc:account_balance.module_meta_information -msgid "Accounting and financial management-Compare Accounts" -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Year :" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "You can select maximum 3 years. Please check again." -msgstr "" - -#. module: account_balance -#: rml:account.account.balance.landscape:0 -#: rml:account.balance.account.balance:0 -msgid "Balance" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"3. You have selected 'Percentage' option with more than 2 years, but you " -"have not selected landscape format." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"You might have done following mistakes. Please correct them and try again." -msgstr "" - -#. module: account_balance -#: help:account.balance.account.balance.report,init,select_account:0 -msgid "Keep empty for comparision to its parent" -msgstr "" - -#. module: account_balance -#: selection:account.balance.account.balance.report,init,period_manner:0 -msgid "Creation Date" -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,fiscalyear:0 -msgid "Fiscal year" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,backtoinit:0 -msgid "" -"2. You have not selected 'Percentage' option, but you have selected more " -"than 2 years." -msgstr "" - -#. module: account_balance -#: wizard_field:account.balance.account.balance.report,init,periods:0 -msgid "Periods" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "" -"You may have selected the compare options with more than 1 year with " -"credit/debit columns and % option.This can lead contents to be printed out " -"of the paper.Please try again." -msgstr "" - -#. module: account_balance -#: wizard_button:account.balance.account.balance.report,init,end:0 -msgid "Cancel" -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,zero_years:0 -msgid "You have to select at least 1 Fiscal Year. Try again." -msgstr "" - -#. module: account_balance -#: wizard_view:account.balance.account.balance.report,init:0 -msgid "Customize Report" -msgstr "" diff --git a/addons/account_balance/report/__init__.py b/addons/account_balance/report/__init__.py deleted file mode 100644 index 44bf399e9da..00000000000 --- a/addons/account_balance/report/__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_balance -import account_balance_landscape -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/account_balance/report/rml_parse.py b/addons/account_balance/report/rml_parse.py deleted file mode 100644 index 0fa382fbea4..00000000000 --- a/addons/account_balance/report/rml_parse.py +++ /dev/null @@ -1,170 +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 report import report_sxw -import xml.dom.minidom -import os, time -import osv -import re -import tools -import pooler -import re -import sys - - -class rml_parse(report_sxw.rml_parse): - def __init__(self, cr, uid, name, context): - super(rml_parse, self).__init__(cr, uid, name, context=context) - self.localcontext.update({ - 'comma_me': self.comma_me, - 'format_date': self._get_and_change_date_format_for_swiss, - 'strip_name' : self._strip_name, - 'explode_name' : self._explode_name, - }) - - def comma_me(self,amount): - #print "#" + str(amount) + "#" - if not amount: - amount = 0.0 - if type(amount) is float : - amount = str('%.2f'%amount) - else : - amount = str(amount) - if (amount == '0'): - return ' ' - orig = amount - new = re.sub("^(-?\d+)(\d{3})", "\g<1>'\g<2>", amount) - if orig == new: - 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: - return False - - def _strip_name(self, name, maxlen=50): - return self._ellipsis(name, maxlen, '...') - - def _get_and_change_date_format_for_swiss (self,date_to_format): - date_formatted='' - if date_to_format: - date_formatted = strptime (date_to_format,'%Y-%m-%d').strftime('%d.%m.%Y') - return date_formatted - - def _explode_name(self,chaine,length): - # We will test if the size is less then account - full_string = '' - if (len(str(chaine)) <= length): - return chaine - # - else: - chaine = unicode(chaine,'utf8').encode('iso-8859-1') - rup = 0 - for carac in chaine: - rup = rup + 1 - if rup == length: - full_string = full_string + '\n' - full_string = full_string + carac - rup = 0 - else: - full_string = full_string + carac - - return full_string - - def makeAscii(self,str): - try: - Stringer = str.encode("utf-8") - except UnicodeDecodeError: - try: - Stringer = str.encode("utf-16") - except UnicodeDecodeError: - print "UTF_16 Error" - Stringer = str - else: - return Stringer - else: - return Stringer - return Stringer - - def explode_this(self,chaine,length): - #chaine = self.repair_string(chaine) - chaine = rstrip(chaine) - ast = list(chaine) - i = length - while i <= len(ast): - ast.insert(i,'\n') - i = i + length - chaine = str("".join(ast)) - return chaine - - def repair_string(self,chaine): - ast = list(chaine) - UnicodeAst = [] - _previouslyfound = False - i = 0 - #print str(ast) - while i < len(ast): - elem = ast[i] - try: - Stringer = elem.encode("utf-8") - except UnicodeDecodeError: - to_reencode = elem + ast[i+1] - print str(to_reencode) - Good_char = to_reencode.decode('utf-8') - UnicodeAst.append(Good_char) - i += i +2 - else: - UnicodeAst.append(elem) - 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=1): - if header==2: - rml_head = self.rml_header2 - else: - rml_head = self.rml_header - rml_head = rml_head.replace('',''' [[company.logo]] ''') - return True - - - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_balance/wizard/__init__.py b/addons/account_balance/wizard/__init__.py deleted file mode 100644 index a61b6f88633..00000000000 --- a/addons/account_balance/wizard/__init__.py +++ /dev/null @@ -1,24 +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 wizard_account_balance_report -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: -