[MERGE] with rvalyi's work

bzr revid: alexis@via.ecp.fr-20120127154105-93r6blsn2xsd17nu
This commit is contained in:
Alexis de Lattre 2012-01-27 16:41:05 +01:00
commit 84d57a468c
613 changed files with 62835 additions and 8677 deletions

View File

@ -2524,7 +2524,10 @@ class account_account_template(osv.osv):
#deactivate the parent_store functionnality on account_account for rapidity purpose
ctx = context.copy()
ctx.update({'defer_parent_store_computation': True})
children_acc_template = self.search(cr, uid, ['|', ('chart_template_id','=', chart_template_id),'&',('parent_id','child_of', [template.account_root_id.id]),('chart_template_id','=', False), ('nocreate','!=',True)], order='id')
children_acc_criteria = [('chart_template_id','=', chart_template_id)]
if template.account_root_id.id:
children_acc_criteria = ['|'] + children_acc_criteria + ['&',('parent_id','child_of', [template.account_root_id.id]),('chart_template_id','=', False)]
children_acc_template = self.search(cr, uid, [('nocreate','!=',True)] + children_acc_criteria, order='id')
for account_template in self.browse(cr, uid, children_acc_template, context=context):
# skip the root of COA if it's not the main one
if (template.account_root_id.id == account_template.id) and template.parent_id:
@ -2651,7 +2654,7 @@ class account_tax_code_template(osv.osv):
company = self.pool.get('res.company').browse(cr, uid, company_id, context=context)
#find all the children of the tax_code_root_id
children_tax_code_template = obj_tax_code_template.search(cr, uid, [('parent_id','child_of',[tax_code_root_id])], order='id')
children_tax_code_template = tax_code_root_id and obj_tax_code_template.search(cr, uid, [('parent_id','child_of',[tax_code_root_id])], order='id') or []
for tax_code_template in obj_tax_code_template.browse(cr, uid, children_tax_code_template, context=context):
vals = {
'name': (tax_code_root_id == tax_code_template.id) and company.name or tax_code_template.name,
@ -2982,7 +2985,7 @@ class wizard_multi_charts_accounts(osv.osv_memory):
tax_templ_obj = self.pool.get('account.tax.template')
if 'bank_accounts_id' in fields:
res.update({'bank_accounts_id': [{'acc_name': _('Cash'), 'account_type': 'cash'}]})
res.update({'bank_accounts_id': [{'acc_name': _('Cash'), 'account_type': 'cash'},{'acc_name': _('Bank'), 'account_type': 'bank'}]})
if 'company_id' in fields:
res.update({'company_id': self.pool.get('res.users').browse(cr, uid, [uid], context=context)[0].company_id.id})
if 'seq_journal' in fields:
@ -3265,14 +3268,20 @@ class wizard_multi_charts_accounts(osv.osv_memory):
obj_tax_temp = self.pool.get('account.tax.template')
chart_template = obj_wizard.chart_template_id
vals = {}
# get the ids of all the parents of the selected account chart template
current_chart_template = chart_template
all_parents = [current_chart_template.id]
while current_chart_template.parent_id:
current_chart_template = current_chart_template.parent_id
all_parents.append(current_chart_template.id)
# create tax templates and tax code templates from purchase_tax_rate and sale_tax_rate fields
if not chart_template.complete_tax_set:
if obj_wizard.sale_tax:
value = obj_wizard.sale_tax_rate
obj_tax_temp.write(cr, uid, [obj_wizard.sale_tax.id], {'amount': value/100.0, 'name': _('Tax %.2f%%') % value})
if obj_wizard.purchase_tax:
value = obj_wizard.purchase_tax_rate
obj_tax_temp.write(cr, uid, [obj_wizard.purchase_tax.id], {'amount': value/100.0, 'name': _('Purchase Tax %.2f%%') % value})
value = obj_wizard.sale_tax_rate
ref_tax_ids = obj_tax_temp.search(cr, uid, [('type_tax_use','in', ('sale','all')), ('chart_template_id', 'in', all_parents)], context=context, order="sequence, id desc", limit=1)
obj_tax_temp.write(cr, uid, ref_tax_ids, {'amount': value/100.0, 'name': _('Tax %.2f%%') % value})
value = obj_wizard.purchase_tax_rate
ref_tax_ids = obj_tax_temp.search(cr, uid, [('type_tax_use','in', ('purchase','all')), ('chart_template_id', 'in', all_parents)], context=context, order="sequence, id desc", limit=1)
obj_tax_temp.write(cr, uid, ref_tax_ids, {'amount': value/100.0, 'name': _('Purchase Tax %.2f%%') % value})
return True
def execute(self, cr, uid, ids, context=None):

View File

@ -52,8 +52,9 @@ class account_bank_statement(osv.osv):
journal_pool = self.pool.get('account.journal')
journal_type = context.get('journal_type', False)
journal_id = False
company_id = self.pool.get('res.company')._company_default_get(cr, uid, 'account.bank.statement',context=context)
if journal_type:
ids = journal_pool.search(cr, uid, [('type', '=', journal_type)])
ids = journal_pool.search(cr, uid, [('type', '=', journal_type),('company_id','=',company_id)])
if ids:
journal_id = ids[0]
return journal_id
@ -169,30 +170,31 @@ class account_bank_statement(osv.osv):
'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'account.bank.statement',context=c),
}
def onchange_date(self, cr, user, ids, date, context=None):
def _check_company_id(self, cr, uid, ids, context=None):
for statement in self.browse(cr, uid, ids, context=context):
if statement.company_id.id != statement.period_id.company_id.id:
return False
return True
_constraints = [
(_check_company_id, 'The journal and period chosen have to belong to the same company.', ['journal_id','period_id']),
]
def onchange_date(self, cr, uid, ids, date, company_id, context=None):
"""
Returns a dict that contains new values and context
@param cr: A database cursor
@param user: ID of the user currently logged in
@param date: latest value from user input for field date
@param args: other arguments
@param context: context arguments, like lang, time zone
@return: Returns a dict which contains new values, and context
Find the correct period to use for the given date and company_id, return it and set it in the context
"""
res = {}
period_pool = self.pool.get('account.period')
if context is None:
context = {}
pids = period_pool.search(cr, user, [('date_start','<=',date), ('date_stop','>=',date)])
ctx = context.copy()
ctx.update({'company_id': company_id})
pids = period_pool.find(cr, uid, dt=date, context=ctx)
if pids:
res.update({
'period_id':pids[0]
})
context.update({
'period_id':pids[0]
})
res.update({'period_id': pids[0]})
context.update({'period_id': pids[0]})
return {
'value':res,
@ -385,8 +387,10 @@ class account_bank_statement(osv.osv):
ORDER BY date DESC,id DESC LIMIT 1', (journal_id, 'draft'))
res = cr.fetchone()
balance_start = res and res[0] or 0.0
account_id = self.pool.get('account.journal').read(cr, uid, journal_id, ['default_debit_account_id'], context=context)['default_debit_account_id']
return {'value': {'balance_start': balance_start, 'account_id': account_id}}
journal_data = self.pool.get('account.journal').read(cr, uid, journal_id, ['default_debit_account_id', 'company_id'], context=context)
account_id = journal_data['default_debit_account_id']
company_id = journal_data['company_id']
return {'value': {'balance_start': balance_start, 'account_id': account_id, 'company_id': company_id}}
def unlink(self, cr, uid, ids, context=None):
stat = self.read(cr, uid, ids, ['state'], context=context)

View File

@ -104,20 +104,30 @@ class account_financial_report(osv.osv):
('account_report','Report Value'),
],'Type'),
'account_ids': fields.many2many('account.account', 'account_account_financial_report', 'report_line_id', 'account_id', 'Accounts'),
'account_report_id': fields.many2one('account.financial.report', 'Report Value'),
'account_type_ids': fields.many2many('account.account.type', 'account_account_financial_report_type', 'report_id', 'account_type_id', 'Account Types'),
'sign': fields.selection([(-1, 'Reverse balance sign'), (1, 'Preserve balance sign')], 'Sign on Reports', required=True, help='For accounts that are typically more debited than credited and that you would like to print as negative amounts in your reports, you should reverse the sign of the balance; e.g.: Expense account. The same applies for accounts that are typically more credited than debited and that you would like to print as positive amounts in your reports; e.g.: Income account.'),
'display_detail': fields.selection([
('no_detail','No detail'),
('detail_flat','Display children flat'),
('detail_with_hierarchy','Display children with hierarchy')
], 'Display details'),
'account_report_id': fields.many2one('account.financial.report', 'Report Value'),
'account_type_ids': fields.many2many('account.account.type', 'account_account_financial_report_type', 'report_id', 'account_type_id', 'Account Types'),
'sign': fields.selection([(-1, 'Reverse balance sign'), (1, 'Preserve balance sign')], 'Sign on Reports', required=True, help='For accounts that are typically more debited than credited and that you would like to print as negative amounts in your reports, you should reverse the sign of the balance; e.g.: Expense account. The same applies for accounts that are typically more credited than debited and that you would like to print as positive amounts in your reports; e.g.: Income account.'),
'style_overwrite': fields.selection([
(0, 'Automatic formatting'),
(1,'Main Title 1 (bold, underlined)'),
(2,'Title 2 (bold)'),
(3,'Title 3 (bold, smaller)'),
(4,'Normal Text'),
(5,'Italic Text (smaller)'),
(6,'Smallest Text'),
],'Financial Report Style', help="You can set up here the format you want this record to be displayed. If you leave the automatic formatting, it will be computed based on the financial reports hierarchy (auto-computed field 'level')."),
}
_defaults = {
'type': 'sum',
'display_detail': 'detail_flat',
'sign': 1,
'style_overwrite': 0,
}
account_financial_report()

View File

@ -4,23 +4,6 @@
<!--
Financial Reports
-->
<record id="account_financial_report_balancesheet0" model="account.financial.report">
<field name="name">Balance Sheet</field>
<field name="type">sum</field>
</record>
<record id="account_financial_report_assets0" model="account.financial.report">
<field name="name">Assets</field>
<field name="parent_id" ref="account_financial_report_balancesheet0"/>
<field name="display_detail">detail_with_hierarchy</field>
<field name="type">account_type</field>
</record>
<record id="account_financial_report_liability0" model="account.financial.report">
<field name="name">Liability</field>
<field name="parent_id" ref="account_financial_report_balancesheet0"/>
<field name="display_detail">detail_with_hierarchy</field>
<field name="type">account_type</field>
</record>
<record id="account_financial_report_profitandloss0" model="account.financial.report">
<field name="name">Profit and Loss</field>
<field name="type">sum</field>
@ -38,6 +21,35 @@
<field name="type">account_type</field>
</record>
<record id="account_financial_report_balancesheet0" model="account.financial.report">
<field name="name">Balance Sheet</field>
<field name="type">sum</field>
</record>
<record id="account_financial_report_assets0" model="account.financial.report">
<field name="name">Assets</field>
<field name="parent_id" ref="account_financial_report_balancesheet0"/>
<field name="display_detail">detail_with_hierarchy</field>
<field name="type">account_type</field>
</record>
<record id="account_financial_report_liabilitysum0" model="account.financial.report">
<field name="name">Liability</field>
<field name="parent_id" ref="account_financial_report_balancesheet0"/>
<field name="display_detail">no_detail</field>
<field name="type">sum</field>
</record>
<record id="account_financial_report_liability0" model="account.financial.report">
<field name="name">Liability</field>
<field name="parent_id" ref="account_financial_report_liabilitysum0"/>
<field name="display_detail">detail_with_hierarchy</field>
<field name="type">account_type</field>
</record>
<record id="account_financial_report_profitloss_toreport0" model="account.financial.report">
<field name="name">Profit (Loss) to report</field>
<field name="parent_id" ref="account_financial_report_liabilitysum0"/>
<field name="display_detail">no_detail</field>
<field name="type">account_report</field>
<field name="account_report_id" ref="account_financial_report_profitandloss0"/>
</record>
</data>
</openerp>

View File

@ -259,7 +259,7 @@ class account_invoice(osv.osv):
'account.move.reconcile': (_get_invoice_from_reconcile, None, 50),
}, help="It indicates that the invoice has been paid and the journal entry of the invoice has been reconciled with one or several journal entries of payment."),
'partner_bank_id': fields.many2one('res.partner.bank', 'Bank Account',
help='Bank Account Number, Company bank account if Invoice is customer or supplier refund, otherwise Partner bank account number.', readonly=True, states={'draft':[('readonly',False)]}),
help='Bank Account Number to which the invoice will be paid. A Company bank account if this is a Customer Invoice or Supplier Refund, otherwise a Partner bank account number.', readonly=True, states={'draft':[('readonly',False)]}),
'move_lines':fields.function(_get_lines, type='many2many', relation='account.move.line', string='Entry Lines'),
'residual': fields.function(_amount_residual, digits_compute=dp.get_precision('Account'), string='Balance',
store={
@ -316,6 +316,15 @@ class account_invoice(osv.osv):
res['fields'][field]['selection'] = journal_select
doc = etree.XML(res['arch'])
if context.get('type', False):
for node in doc.xpath("//field[@name='partner_bank_id']"):
if context['type'] == 'in_refund':
node.set('domain', "[('partner_id.ref_companies', 'in', [company_id])]")
elif context['type'] == 'out_refund':
node.set('domain', "[('partner_id', '=', partner_id)]")
res['arch'] = etree.tostring(doc)
if view_type == 'search':
if context.get('type', 'in_invoice') in ('out_invoice', 'out_refund'):
for node in doc.xpath("//group[@name='extended filter']"):

View File

@ -152,7 +152,7 @@
<field name="currency_id" width="50"/>
<button name="%(action_account_change_currency)d" type="action" icon="terp-stock_effects-object-colorize" string="Change" attrs="{'invisible':[('state','!=','draft')]}" groups="account.group_account_user"/>
<newline/>
<field string="Supplier" name="partner_id" on_change="onchange_partner_id(type,partner_id,date_invoice,payment_term, partner_bank_id,company_id)" context="{'default_customer': 0, 'search_default_supplier': 1, 'default_supplier': 1}" options='{"quick_create": false}'/>
<field string="Supplier" name="partner_id" on_change="onchange_partner_id(type,partner_id,date_invoice,payment_term, partner_bank_id,company_id)" context="{'default_customer': 0, 'search_default_supplier': 1, 'default_supplier': 1}" options='{"quick_create": false}' domain="[('supplier', '=', True)]"/>
<field domain="[('partner_id','=',partner_id)]" name="address_invoice_id" context="{'default_partner_id': partner_id}" options='{"quick_create": false}'/>
<field name="fiscal_position" groups="base.group_extended" widget="selection"/>
<newline/>
@ -168,8 +168,7 @@
<field name="reference_type" nolabel="1" size="0"/>
<field name="reference" nolabel="1"/>
<field name="date_due"/>
<field name="check_total" invisible="1"/>
<field colspan="4" default_get="{'check_total': check_total, 'invoice_line': invoice_line, 'address_invoice_id': address_invoice_id, 'partner_id': partner_id, 'price_type': 'price_type' in dir() and price_type or False}" name="invoice_line" context="{'type': type}" nolabel="1">
<field colspan="4" context="{'address_invoice_id': address_invoice_id, 'partner_id': partner_id, 'price_type': 'price_type' in dir() and price_type or False, 'type': type}" name="invoice_line" nolabel="1">
<tree string="Invoice lines">
<field name="product_id" on_change="product_id_change(product_id, uos_id, quantity, name, parent.type, parent.partner_id, parent.fiscal_position, price_unit, parent.address_invoice_id, parent.currency_id, context, parent.company_id)"/>
<field domain="[('company_id', '=', parent.company_id), ('journal_id', '=', parent.journal_id), ('type', '&lt;&gt;', 'view')]" name="account_id" on_change="onchange_account_id(parent.fiscal_position,account_id)"/>
@ -263,7 +262,7 @@
<field name="currency_id" width="50"/>
<button name="%(action_account_change_currency)d" type="action" icon="terp-stock_effects-object-colorize" string="Change" attrs="{'invisible':[('state','!=','draft')]}" groups="account.group_account_user"/>
<newline/>
<field string="Customer" name="partner_id" on_change="onchange_partner_id(type,partner_id,date_invoice,payment_term, partner_bank_id,company_id)" groups="base.group_user" context="{'search_default_customer': 1}" options='{"quick_create": false}'/>
<field string="Customer" name="partner_id" on_change="onchange_partner_id(type,partner_id,date_invoice,payment_term, partner_bank_id,company_id)" groups="base.group_user" context="{'search_default_customer': 1}" options='{"quick_create": false}' domain="[('customer', '=', True)]"/>
<field domain="[('partner_id','=',partner_id)]" name="address_invoice_id" context="{'default_partner_id': partner_id}" options='{"quick_create": false}'/>
<field name="fiscal_position" groups="base.group_extended" widget="selection" options='{"quick_create": false}'/>
<newline/>

View File

@ -594,7 +594,7 @@
<form string="Bank Statement">
<group col="7" colspan="4">
<field name="name" select="1"/>
<field name="date" select="1" on_change="onchange_date(date)"/>
<field name="date" select="1" on_change="onchange_date(date, company_id)"/>
<field name="journal_id" domain="[('type', '=', 'bank')]" on_change="onchange_journal_id(journal_id)" select="1" widget="selection"/>
<newline/>
<field name="period_id"/>
@ -655,7 +655,8 @@
<form string="Bank Statement">
<group col="7" colspan="4">
<field name="name" select="1"/>
<field name="date" select="1" on_change="onchange_date(date)"/>
<field name="date" select="1" on_change="onchange_date(date, company_id)"/>
<field name='company_id' widget="selection" groups="base.group_multi_company" />
<field name="journal_id" domain="[('type', '=', 'bank')]" on_change="onchange_journal_id(journal_id)" widget="selection"/>
<newline/>
<field name="period_id"/>
@ -1363,7 +1364,7 @@
</group>
<notebook colspan="4">
<page string="Journal Items">
<field colspan="4" name="line_id" nolabel="1" height="250" widget="one2many_list" default_get="{'lines':line_id ,'journal':journal_id }">
<field colspan="4" name="line_id" nolabel="1" height="250" widget="one2many_list" context="{'lines':line_id ,'journal':journal_id }">
<form string="Journal Item">
<group col="6" colspan="4">
<field name="name"/>
@ -2620,7 +2621,7 @@ action = pool.get('res.config').next(cr, uid, [], context)
<form string="Statement">
<group col="6" colspan="4">
<field name="name" select="1"/>
<field name="company_id" select="1" groups="base.group_multi_company"/>
<field name='company_id' widget="selection" groups="base.group_multi_company" />
<field name="journal_id" on_change="onchange_journal_id(journal_id)" select="1" widget="selection"/>
<field name="user_id" select="1" readonly="1"/>
<field name="period_id" select="1"/>
@ -2693,7 +2694,7 @@ action = pool.get('res.config').next(cr, uid, [], context)
<group col="6" colspan="4">
<group col="2" colspan="2">
<separator string="Dates" colspan="4"/>
<field name="date" select="1" attrs="{'readonly':[('state','!=','draft')]}" on_change="onchange_date(date)"/>
<field name="date" select="1" attrs="{'readonly':[('state','!=','draft')]}" on_change="onchange_date(date, company_id)"/>
<field name="closing_date" select="1" readonly="1"/>
</group>
<group col="2" colspan="2">
@ -2785,6 +2786,7 @@ action = pool.get('res.config').next(cr, uid, [], context)
<field name="sequence"/>
<field name="type"/>
<field name="sign"/>
<field name="style_overwrite"/>
</group>
<notebook colspan="6">
<page string="Report">

View File

@ -2,7 +2,7 @@
<openerp>
<data noupdate="1">
<record model="account.account.type" id="data_account_type_view">
<field name="name">View</field>
<field name="name">Root/View</field>
<field name="code">view</field>
<field name="close_method">none</field>
</record>
@ -10,11 +10,13 @@
<field name="name">Receivable</field>
<field name="code">receivable</field>
<field name="close_method">unreconciled</field>
<field name="report_type">asset</field>
</record>
<record model="account.account.type" id="data_account_type_payable">
<field name="name">Payable</field>
<field name="code">payable</field>
<field name="close_method">unreconciled</field>
<field name="report_type">liability</field>
</record>
<record model="account.account.type" id="data_account_type_bank">
<field name="name">Bank</field>
@ -25,6 +27,7 @@
<field name="name">Cash</field>
<field name="code">cash</field>
<field name="close_method">balance</field>
<field name="report_type">asset</field>
</record>
<record model="account.account.type" id="data_account_type_asset">
<field name="name">Asset</field>

View File

@ -33,7 +33,8 @@
<field eval="True" name="special"/>
<field name="fiscalyear_id" ref="data_fiscalyear"/>
<field eval="time.strftime('%Y')+'-02-01'" name="date_start"/>
<field eval="time.strftime('%Y')+'-02-28'" name="date_stop"/>
<!-- for the last day of February, we have to compute the day before March 1st -->
<field eval="(DateTime.today().replace(month=3, day=1) - timedelta(days=1)).strftime('%Y-%m-%d')" name="date_stop"/>
<field name="company_id" ref="base.main_company"/>
</record>
<record id="period_3" model="account.period">

View File

@ -7,20 +7,20 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-23 09:55+0000\n"
"PO-Revision-Date: 2011-12-08 16:20+0000\n"
"Last-Translator: kifcaliph <kifcaliph@hotmail.com>\n"
"PO-Revision-Date: 2012-01-12 20:45+0000\n"
"Last-Translator: kifcaliph <Unknown>\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: 2011-12-24 05:43+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-13 04:39+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account
#: view:account.invoice.report:0
#: view:analytic.entries.report:0
msgid "last month"
msgstr ""
msgstr "الشهر الماضي"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -588,7 +588,7 @@ msgstr "المتواليات"
#: field:account.financial.report,account_report_id:0
#: selection:account.financial.report,type:0
msgid "Report Value"
msgstr ""
msgstr "قيمة التقرير"
#. module: account
#: view:account.entries.report:0
@ -897,7 +897,7 @@ msgstr "تجميع"
#: model:account.account.type,name:account.data_account_type_liability
#: model:account.financial.report,name:account.account_financial_report_liability0
msgid "Liability"
msgstr ""
msgstr "الخصوم"
#. module: account
#: view:account.entries.report:0
@ -1016,7 +1016,7 @@ msgstr ""
#. module: account
#: field:account.report.general.ledger,sortby:0
msgid "Sort by"
msgstr ""
msgstr "ترتيب حسب"
#. module: account
#: help:account.fiscalyear.close,fy_id:0
@ -1103,7 +1103,7 @@ msgstr ""
#: field:account.fiscal.position.tax,tax_dest_id:0
#: field:account.fiscal.position.tax.template,tax_dest_id:0
msgid "Replacement Tax"
msgstr ""
msgstr "ضريبة الإستبدال"
#. module: account
#: selection:account.move.line,centralisation:0
@ -1406,7 +1406,7 @@ msgstr "عدد خانات الأرقام"
#. module: account
#: field:account.journal,entry_posted:0
msgid "Skip 'Draft' State for Manual Entries"
msgstr ""
msgstr "تخطي حالة \"المسودة\" للقيود اليدوية"
#. module: account
#: view:account.invoice.report:0
@ -1438,7 +1438,7 @@ msgstr ""
#. module: account
#: model:ir.model,name:account.model_temp_range
msgid "A Temporary table used for Dashboard view"
msgstr ""
msgstr "جدول م}قت يستخدم لعرض اللوحة الرئيسية"
#. module: account
#: model:ir.actions.act_window,name:account.action_invoice_tree4
@ -1734,7 +1734,7 @@ msgstr "مبلغ الدائنون"
#. module: account
#: constraint:account.move.line:0
msgid "You can not create move line on closed account."
msgstr ""
msgstr "لا يمكنك إنشاء حركة سطر علي حساب مغلق."
#. module: account
#: code:addons/account/account.py:406
@ -1742,7 +1742,7 @@ msgstr ""
#: code:addons/account/account.py:428
#, python-format
msgid "Error!"
msgstr ""
msgstr "خطأ!"
#. module: account
#: sql_constraint:account.move.line:0
@ -1774,7 +1774,7 @@ msgstr "القيود في سطر"
#. module: account
#: field:account.vat.declaration,based_on:0
msgid "Based on"
msgstr ""
msgstr "بالاستناد الى"
#. module: account
#: field:account.invoice,move_id:0
@ -1827,7 +1827,7 @@ msgstr "صالح"
#: model:ir.actions.act_window,name:account.action_account_print_journal
#: model:ir.model,name:account.model_account_print_journal
msgid "Account Print Journal"
msgstr ""
msgstr "يومية طباعة حساب"
#. module: account
#: model:ir.model,name:account.model_product_category
@ -1863,7 +1863,7 @@ msgstr "تعريف الضريبة"
#: code:addons/account/account.py:3076
#, python-format
msgid "Deposit"
msgstr ""
msgstr "ايداع"
#. module: account
#: help:wizard.multi.charts.accounts,seq_journal:0
@ -2395,7 +2395,7 @@ msgstr "ضرائب المورد"
#. module: account
#: view:account.entries.report:0
msgid "entries"
msgstr ""
msgstr "المدخلات"
#. module: account
#: help:account.invoice,date_due:0
@ -2645,13 +2645,13 @@ msgstr "المبيعات بعرض الحسابات"
#. module: account
#: view:account.use.model:0
msgid "This wizard will create recurring accounting entries"
msgstr ""
msgstr "سيقوم هذا المعالج بإنشاء قيود محاسبية تكرارية"
#. module: account
#: code:addons/account/account.py:1320
#, python-format
msgid "No sequence defined on the journal !"
msgstr ""
msgstr "لا يوجد مسلسل معرف لهذه اليومية !"
#. module: account
#: code:addons/account/account.py:2264
@ -2823,7 +2823,7 @@ msgstr ""
#: field:account.account,child_parent_ids:0
#: field:account.account.template,child_parent_ids:0
msgid "Children"
msgstr ""
msgstr "فرعي"
#. module: account
#: code:addons/account/account.py:962
@ -3177,7 +3177,7 @@ msgstr ""
#. module: account
#: report:account.overdue:0
msgid "VAT:"
msgstr ""
msgstr "ضريبة القيمة المضافة:"
#. module: account
#: constraint:account.invoice:0
@ -3280,6 +3280,7 @@ msgid ""
"Selected Invoice(s) cannot be cancelled as they are already in 'Cancelled' "
"or 'Done' state!"
msgstr ""
"الفواتير المختارة لا يمكن إلغاءها حيث أنها ملغاة أو تمت من حيث الحالة!"
#. module: account
#: view:account.invoice.line:0
@ -3331,7 +3332,7 @@ msgstr "تفاصيل"
#. module: account
#: report:account.invoice:0
msgid "VAT :"
msgstr ""
msgstr "ضريبة القيمة المضافة:"
#. module: account
#: report:account.central.journal:0
@ -3359,7 +3360,7 @@ msgstr "النظير المركزي"
#. module: account
#: model:ir.model,name:account.model_account_partner_reconcile_process
msgid "Reconcilation Process partner by partner"
msgstr ""
msgstr "عملية التسوية شريك شريك"
#. module: account
#: selection:account.automatic.reconcile,power:0
@ -3369,7 +3370,7 @@ msgstr "2"
#. module: account
#: view:account.chart:0
msgid "(If you do not select Fiscal year it will take all open fiscal years)"
msgstr ""
msgstr "(إذا لم تختار سنة مالية سيتم التعامل مع كل السنوات المالية المفتوحة)"
#. module: account
#: selection:account.aged.trial.balance,filter:0
@ -3413,7 +3414,7 @@ msgstr "تاريخ"
#. module: account
#: view:account.move:0
msgid "Post"
msgstr ""
msgstr "ترحيل"
#. module: account
#: view:account.unreconcile:0
@ -3429,7 +3430,7 @@ msgstr "إلغاء التسوية"
#: view:analytic.entries.report:0
#: field:analytic.entries.report,user_id:0
msgid "User"
msgstr ""
msgstr "مستخدم"
#. module: account
#: view:account.chart.template:0
@ -3454,7 +3455,7 @@ msgstr "بعض القيود تمت تسويتها من قبل !"
#. module: account
#: view:account.tax:0
msgid "Account Tax"
msgstr ""
msgstr "حساب الضرائب"
#. module: account
#: model:ir.ui.menu,name:account.menu_finance_reporting_budgets
@ -3533,7 +3534,7 @@ msgstr "دائن"
#. module: account
#: model:process.node,name:account.process_node_supplierpaymentorder0
msgid "Payment Order"
msgstr ""
msgstr "أمر الدفع"
#. module: account
#: help:account.account.template,reconcile:0
@ -3806,7 +3807,7 @@ msgstr ""
#. module: account
#: view:account.tax.template:0
msgid "Search Tax Templates"
msgstr ""
msgstr "بحث قوالب الضريبة"
#. module: account
#: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation
@ -3845,7 +3846,7 @@ msgstr ""
#. module: account
#: view:res.partner:0
msgid "Bank Account Owner"
msgstr ""
msgstr "مالِك الحساب المصرفي"
#. module: account
#: report:account.account.balance:0
@ -4266,7 +4267,7 @@ msgstr ""
#. module: account
#: view:account.payment.term.line:0
msgid "Example"
msgstr ""
msgstr "مثال"
#. module: account
#: constraint:account.account:0
@ -4316,7 +4317,7 @@ msgstr "مؤكد"
#. module: account
#: report:account.invoice:0
msgid "Cancelled Invoice"
msgstr ""
msgstr "فاتورة ملغاة"
#. module: account
#: code:addons/account/account_invoice.py:71
@ -4336,7 +4337,7 @@ msgstr ""
#. module: account
#: selection:account.bank.statement,state:0
msgid "New"
msgstr ""
msgstr "جديد"
#. module: account
#: field:account.invoice.refund,date:0
@ -4431,7 +4432,7 @@ msgstr "مندوب المبيعات"
#. module: account
#: view:account.invoice.report:0
msgid "Invoiced"
msgstr ""
msgstr "مفوتر"
#. module: account
#: view:account.move:0
@ -4604,7 +4605,7 @@ msgstr ""
#. module: account
#: model:res.groups,name:account.group_account_user
msgid "Accountant"
msgstr ""
msgstr "محاسب"
#. module: account
#: model:ir.actions.act_window,help:account.action_account_treasury_report_all
@ -4936,7 +4937,7 @@ msgstr "بيع"
#. module: account
#: view:account.financial.report:0
msgid "Report"
msgstr ""
msgstr "تقرير"
#. module: account
#: view:account.analytic.line:0
@ -5014,7 +5015,7 @@ msgstr ""
#. module: account
#: field:account.partner.reconcile.process,progress:0
msgid "Progress"
msgstr ""
msgstr "تقدّم"
#. module: account
#: view:report.hr.timesheet.invoice.journal:0
@ -5202,7 +5203,7 @@ msgstr "تاريخ الدفع"
#. module: account
#: selection:account.automatic.reconcile,power:0
msgid "6"
msgstr ""
msgstr "٦"
#. module: account
#: view:account.analytic.account:0
@ -5252,7 +5253,7 @@ msgstr ""
#: field:report.account.sales,quantity:0
#: field:report.account_type.sales,quantity:0
msgid "Quantity"
msgstr ""
msgstr "كمية"
#. module: account
#: view:account.move.line:0
@ -5340,7 +5341,7 @@ msgstr ""
#. module: account
#: view:account.journal:0
msgid "Invoicing Data"
msgstr ""
msgstr "بيانات الفواتير"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_automatic_reconcile
@ -5351,7 +5352,7 @@ msgstr ""
#: view:account.move:0
#: view:account.move.line:0
msgid "Journal Item"
msgstr ""
msgstr "عنصر يومية"
#. module: account
#: model:ir.model,name:account.model_account_move_journal
@ -5384,7 +5385,7 @@ msgstr ""
#. module: account
#: field:report.invoice.created,create_date:0
msgid "Create Date"
msgstr ""
msgstr "إنشاء تاريخ"
#. module: account
#: view:account.analytic.journal:0
@ -5396,7 +5397,7 @@ msgstr "يوميات تحليلية"
#. module: account
#: field:account.account,child_id:0
msgid "Child Accounts"
msgstr ""
msgstr "حسابات فرعية"
#. module: account
#: code:addons/account/account_move_line.py:1213
@ -5409,7 +5410,7 @@ msgstr ""
#: code:addons/account/account_move_line.py:857
#, python-format
msgid "Write-Off"
msgstr ""
msgstr "إلغاء"
#. module: account
#: field:res.partner,debit:0
@ -5420,7 +5421,7 @@ msgstr "إجمالي مستحق الدفع"
#: model:account.account.type,name:account.data_account_type_income
#: model:account.financial.report,name:account.account_financial_report_income0
msgid "Income"
msgstr ""
msgstr "الدخل"
#. module: account
#: selection:account.bank.statement.line,type:0
@ -5429,7 +5430,7 @@ msgstr ""
#: code:addons/account/account_invoice.py:328
#, python-format
msgid "Supplier"
msgstr ""
msgstr "مورِّد"
#. module: account
#: selection:account.entries.report,month:0
@ -5438,7 +5439,7 @@ msgstr ""
#: selection:report.account.sales,month:0
#: selection:report.account_type.sales,month:0
msgid "March"
msgstr ""
msgstr "مارس"
#. module: account
#: view:account.account.template:0
@ -5495,7 +5496,7 @@ msgstr ""
#. module: account
#: field:account.invoice,address_invoice_id:0
msgid "Invoice Address"
msgstr ""
msgstr "عنوان الفاتورة"
#. module: account
#: model:ir.actions.act_window,help:account.action_account_entries_report_all
@ -5540,7 +5541,7 @@ msgstr "قوة الفترة"
#: view:account.invoice.report:0
#: field:account.invoice.report,nbr:0
msgid "# of Lines"
msgstr ""
msgstr "عدد السطور"
#. module: account
#: field:account.aged.trial.balance,filter:0
@ -5621,7 +5622,7 @@ msgstr "عدد الأيام"
#. module: account
#: selection:account.automatic.reconcile,power:0
msgid "7"
msgstr ""
msgstr "٧"
#. module: account
#: code:addons/account/account_bank_statement.py:398
@ -5629,7 +5630,7 @@ msgstr ""
#: code:addons/account/wizard/account_period_close.py:51
#, python-format
msgid "Invalid action !"
msgstr ""
msgstr "إجراء خاطئ!"
#. module: account
#: code:addons/account/wizard/account_move_journal.py:102
@ -5658,7 +5659,7 @@ msgstr "تاريخ الطباعة"
#: selection:account.tax,type:0
#: selection:account.tax.template,type:0
msgid "None"
msgstr ""
msgstr "لا شئ"
#. module: account
#: view:analytic.entries.report:0
@ -5690,7 +5691,7 @@ msgstr ""
#: code:addons/account/wizard/account_report_common.py:128
#, python-format
msgid "not implemented"
msgstr ""
msgstr "غير مطبق"
#. module: account
#: help:account.journal,company_id:0
@ -5765,7 +5766,7 @@ msgstr ""
#. module: account
#: field:account.entries.report,date_created:0
msgid "Date Created"
msgstr ""
msgstr "تاريخ الإنشاء"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form
@ -5798,7 +5799,7 @@ msgstr ""
#. module: account
#: model:ir.model,name:account.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
msgstr "خط تحليلي"
#. module: account
#: field:product.template,taxes_id:0
@ -5861,7 +5862,7 @@ msgstr ""
#. module: account
#: model:ir.model,name:account.model_res_company
msgid "Companies"
msgstr ""
msgstr "الشركات"
#. module: account
#: code:addons/account/account.py:663
@ -5959,7 +5960,7 @@ msgstr ""
#: view:validate.account.move.lines:0
#, python-format
msgid "Cancel"
msgstr ""
msgstr "إلغاء"
#. module: account
#: selection:account.account,type:0
@ -5972,7 +5973,7 @@ msgstr ""
#. module: account
#: view:account.invoice:0
msgid "Other Info"
msgstr ""
msgstr "معلومات أخرى"
#. module: account
#: field:account.journal,default_credit_account_id:0
@ -5989,7 +5990,7 @@ msgstr ""
#: code:addons/account/account.py:3075
#, python-format
msgid "Current"
msgstr ""
msgstr "الحالي"
#. module: account
#: view:account.bank.statement:0
@ -6000,7 +6001,7 @@ msgstr ""
#: selection:account.tax,type:0
#: selection:account.tax.template,type:0
msgid "Percentage"
msgstr ""
msgstr "النسبة"
#. module: account
#: selection:account.report.general.ledger,sortby:0
@ -6010,12 +6011,12 @@ msgstr ""
#. module: account
#: field:account.automatic.reconcile,power:0
msgid "Power"
msgstr ""
msgstr "طاقة"
#. module: account
#: report:account.invoice:0
msgid "Price"
msgstr ""
msgstr "السعر"
#. module: account
#: view:project.account.analytic.line:0
@ -6088,7 +6089,7 @@ msgstr ""
#. module: account
#: model:ir.ui.menu,name:account.menu_finance_bank_and_cash
msgid "Bank and Cash"
msgstr ""
msgstr "النقدية و البنك"
#. module: account
#: model:ir.actions.act_window,help:account.action_analytic_entries_report
@ -6133,7 +6134,7 @@ msgstr ""
#. module: account
#: model:ir.ui.menu,name:account.menu_dashboard_acc
msgid "Dashboard"
msgstr ""
msgstr "اللوحة الرئيسية"
#. module: account
#: field:account.bank.statement,move_line_ids:0
@ -6166,12 +6167,12 @@ msgstr ""
#: view:account.tax.code.template:0
#: view:analytic.entries.report:0
msgid "Group By..."
msgstr ""
msgstr "تجميع حسب..."
#. module: account
#: field:account.journal.column,readonly:0
msgid "Readonly"
msgstr ""
msgstr "للقراءة فقط"
#. module: account
#: view:account.payment.term.line:0
@ -6226,7 +6227,7 @@ msgstr ""
#: report:account.invoice:0
#: field:account.invoice.tax,base:0
msgid "Base"
msgstr ""
msgstr "أساس"
#. module: account
#: field:account.model,name:0
@ -6265,7 +6266,7 @@ msgstr ""
#: view:account.invoice.line:0
#: field:account.invoice.line,note:0
msgid "Notes"
msgstr ""
msgstr "ملاحظات"
#. module: account
#: model:ir.model,name:account.model_analytic_entries_report
@ -6338,7 +6339,7 @@ msgstr ""
#. module: account
#: report:account.invoice:0
msgid "Fax :"
msgstr ""
msgstr "الفاكس:"
#. module: account
#: view:wizard.multi.charts.accounts:0
@ -6363,7 +6364,7 @@ msgstr ""
#: field:account.tax.template,python_compute:0
#: selection:account.tax.template,type:0
msgid "Python Code"
msgstr ""
msgstr "كود بايثون"
#. module: account
#: view:account.entries.report:0
@ -6380,7 +6381,7 @@ msgstr ""
#. module: account
#: view:account.fiscalyear.close:0
msgid "Create"
msgstr ""
msgstr "إنشاء"
#. module: account
#: model:process.transition.action,name:account.process_transition_action_createentries0
@ -6423,7 +6424,7 @@ msgstr ""
#: code:addons/account/wizard/account_use_model.py:44
#, python-format
msgid "Error !"
msgstr ""
msgstr "خطأ !"
#. module: account
#: selection:account.financial.report,sign:0
@ -6457,7 +6458,7 @@ msgstr ""
#. module: account
#: field:account.invoice.tax,manual:0
msgid "Manual"
msgstr ""
msgstr "يدوي"
#. module: account
#: view:account.automatic.reconcile:0
@ -6481,7 +6482,7 @@ msgstr ""
#: view:account.move:0
#: field:account.move,to_check:0
msgid "To Review"
msgstr ""
msgstr "للمراجعة"
#. module: account
#: help:account.partner.ledger,initial_balance:0
@ -6557,6 +6558,8 @@ msgstr ""
msgid ""
"Error: The default UOM and the purchase UOM must be in the same category."
msgstr ""
"خطأ: لابد أن تكون وحدة القياس الإفتراضية و وحدة القياس في جزء المشتريات من "
"نوع واحد"
#. module: account
#: view:account.journal.select:0
@ -6621,7 +6624,7 @@ msgstr ""
#. module: account
#: view:account.chart.template:0
msgid "Properties"
msgstr ""
msgstr "خصائص"
#. module: account
#: model:ir.model,name:account.model_account_tax_chart
@ -6722,7 +6725,7 @@ msgstr ""
#: selection:account.subscription,state:0
#: selection:report.invoice.created,state:0
msgid "Done"
msgstr ""
msgstr "تم"
#. module: account
#: model:ir.actions.act_window,help:account.action_bank_tree
@ -6753,7 +6756,7 @@ msgstr ""
#: field:account.invoice,origin:0
#: field:report.invoice.created,origin:0
msgid "Source Document"
msgstr ""
msgstr "مستند المصدر"
#. module: account
#: code:addons/account/account.py:1429
@ -6782,7 +6785,7 @@ msgstr ""
#. module: account
#: report:account.invoice:0
msgid "Taxes:"
msgstr ""
msgstr "ضرائب:"
#. module: account
#: help:account.tax,amount:0
@ -6822,7 +6825,7 @@ msgstr ""
#. module: account
#: selection:account.automatic.reconcile,power:0
msgid "9"
msgstr ""
msgstr "٩"
#. module: account
#: help:account.invoice.refund,date:0
@ -6846,7 +6849,7 @@ msgstr "سطور تحليلية"
#: field:account.analytic.journal,line_ids:0
#: field:account.tax.code,line_ids:0
msgid "Lines"
msgstr ""
msgstr "سطور"
#. module: account
#: code:addons/account/account_invoice.py:532
@ -6864,7 +6867,7 @@ msgstr ""
#. module: account
#: view:account.journal.select:0
msgid "Are you sure you want to open Journal Entries?"
msgstr ""
msgstr "هل أنت تريد فتح قيود اليومية؟"
#. module: account
#: view:account.state.open:0
@ -6928,7 +6931,7 @@ msgstr ""
#: field:account.invoice,date_invoice:0
#: field:report.invoice.created,date_invoice:0
msgid "Invoice Date"
msgstr ""
msgstr "تاريخ الفاتورة"
#. module: account
#: view:account.invoice.report:0
@ -6943,18 +6946,18 @@ msgstr "إجمالي المبلغ المدين لهذا العميل لك."
#. module: account
#: model:ir.model,name:account.model_ir_sequence
msgid "ir.sequence"
msgstr ""
msgstr "ir.sequence"
#. module: account
#: field:account.journal.period,icon:0
msgid "Icon"
msgstr ""
msgstr "أيقونة"
#. module: account
#: view:account.automatic.reconcile:0
#: view:account.use.model:0
msgid "Ok"
msgstr ""
msgstr "تم"
#. module: account
#: field:account.chart.template,tax_code_root_id:0
@ -6982,7 +6985,7 @@ msgstr ""
#. module: account
#: field:account.automatic.reconcile,date2:0
msgid "Ending Date"
msgstr ""
msgstr "تاريخ الانتهاء"
#. module: account
#: field:wizard.multi.charts.accounts,purchase_tax:0
@ -6997,7 +7000,7 @@ msgstr ""
#. module: account
#: view:account.bank.statement:0
msgid "Confirm"
msgstr ""
msgstr "تأكيد"
#. module: account
#: help:account.invoice,partner_bank_id:0
@ -7043,7 +7046,7 @@ msgstr ""
#. module: account
#: model:ir.ui.menu,name:account.menu_finance_reporting
msgid "Reporting"
msgstr ""
msgstr "التقارير"
#. module: account
#: code:addons/account/account_move_line.py:759
@ -7090,13 +7093,13 @@ msgstr ""
#. module: account
#: field:account.move.line.reconcile.writeoff,comment:0
msgid "Comment"
msgstr ""
msgstr "تعليق"
#. module: account
#: field:account.tax,domain:0
#: field:account.tax.template,domain:0
msgid "Domain"
msgstr ""
msgstr "نطاق"
#. module: account
#: model:ir.model,name:account.model_account_use_model
@ -7123,7 +7126,7 @@ msgstr ""
#: field:account.invoice.tax,invoice_id:0
#: model:ir.model,name:account.model_account_invoice_line
msgid "Invoice Line"
msgstr ""
msgstr "خط الفاتورة"
#. module: account
#: view:account.invoice.report:0
@ -7169,7 +7172,7 @@ msgstr "غير متوازن"
#. module: account
#: selection:account.move.line,centralisation:0
msgid "Normal"
msgstr ""
msgstr "عادي"
#. module: account
#: model:ir.actions.act_window,name:account.action_email_templates
@ -7191,7 +7194,7 @@ msgstr "دفتر اليومية يجب أن يتضمن حساب إفتراضي
#. module: account
#: report:account.general.journal:0
msgid ":"
msgstr ""
msgstr ":"
#. module: account
#: selection:account.account,currency_mode:0
@ -7285,7 +7288,7 @@ msgstr "إجمالي المبلغ المستحق:"
#: field:account.analytic.chart,to_date:0
#: field:project.account.analytic.line,to_date:0
msgid "To"
msgstr ""
msgstr "إلى"
#. module: account
#: selection:account.move.line,centralisation:0
@ -7328,7 +7331,7 @@ msgstr ""
#: selection:report.account.sales,month:0
#: selection:report.account_type.sales,month:0
msgid "May"
msgstr ""
msgstr "مايو"
#. module: account
#: view:account.account:0
@ -7373,7 +7376,7 @@ msgstr ""
#. module: account
#: field:account.financial.report,name:0
msgid "Report Name"
msgstr ""
msgstr "اسم التقرير"
#. module: account
#: model:account.account.type,name:account.data_account_type_cash
@ -7384,7 +7387,7 @@ msgstr ""
#: code:addons/account/account.py:3077
#, python-format
msgid "Cash"
msgstr ""
msgstr "نقدي"
#. module: account
#: field:account.fiscal.position.account,account_dest_id:0
@ -7426,7 +7429,7 @@ msgstr ""
#: field:account.tax,sequence:0
#: field:account.tax.template,sequence:0
msgid "Sequence"
msgstr ""
msgstr "مسلسل"
#. module: account
#: constraint:product.category:0
@ -7441,7 +7444,7 @@ msgstr ""
#. module: account
#: view:account.state.open:0
msgid "Yes"
msgstr ""
msgstr "نعم"
#. module: account
#: view:report.account_type.sales:0
@ -7456,7 +7459,7 @@ msgstr ""
#. module: account
#: selection:account.installer,period:0
msgid "Monthly"
msgstr ""
msgstr "شهرياً"
#. module: account
#: model:ir.actions.act_window,help:account.action_account_journal_view
@ -7588,7 +7591,7 @@ msgstr "حساب الإشتراك"
#: model:ir.model,name:account.model_res_partner
#: field:report.invoice.created,partner_id:0
msgid "Partner"
msgstr ""
msgstr "شريك"
#. module: account
#: help:account.change.currency,currency_id:0
@ -7617,7 +7620,7 @@ msgstr "لا سطور للفاتورة !"
#. module: account
#: view:account.financial.report:0
msgid "Report Type"
msgstr ""
msgstr "نوع التقرير"
#. module: account
#: view:account.analytic.account:0
@ -7827,7 +7830,7 @@ msgstr "للضرائب ادخل النسبة % بين 0 و 1."
#. module: account
#: selection:account.automatic.reconcile,power:0
msgid "8"
msgstr ""
msgstr "٨"
#. module: account
#: view:account.analytic.account:0
@ -7867,7 +7870,7 @@ msgstr ""
#: field:account.treasury.report,period_id:0
#: field:validate.account.move,period_id:0
msgid "Period"
msgstr ""
msgstr "فترة"
#. module: account
#: help:account.account,adjusted_balance:0
@ -7965,7 +7968,7 @@ msgstr ""
#. module: account
#: report:account.invoice:0
msgid "Tel. :"
msgstr ""
msgstr "هاتف:"
#. module: account
#: field:account.account,company_currency_id:0
@ -7994,7 +7997,7 @@ msgstr "شجرة الحساب"
#: model:process.node,name:account.process_node_paymententries0
#: model:process.transition,name:account.process_transition_reconcilepaid0
msgid "Payment"
msgstr ""
msgstr "الدفع"
#. module: account
#: field:account.bank.statement,balance_end_real:0
@ -8156,7 +8159,7 @@ msgstr ""
#. module: account
#: view:account.analytic.account:0
msgid "Contacts"
msgstr ""
msgstr "جهات الاتصال"
#. module: account
#: field:account.tax.code,parent_id:0
@ -8349,7 +8352,7 @@ msgstr ""
#: model:account.account.type,name:account.data_account_type_expense
#: model:account.financial.report,name:account.account_financial_report_expense0
msgid "Expense"
msgstr ""
msgstr "مصروف"
#. module: account
#: help:account.chart,fiscalyear:0
@ -8600,7 +8603,7 @@ msgstr "دفع مسجل"
#. module: account
#: view:account.fiscalyear.close.state:0
msgid "Close states of Fiscal year and periods"
msgstr ""
msgstr "إغلاق حالات السنة المالية و الفترات"
#. module: account
#: view:account.analytic.line:0
@ -9220,7 +9223,7 @@ msgstr "نشِط"
#. module: account
#: view:accounting.report:0
msgid "Comparison"
msgstr ""
msgstr "مقارنة"
#. module: account
#: code:addons/account/account_invoice.py:361
@ -9584,7 +9587,7 @@ msgstr ""
#: view:account.move.line:0
#: view:account.period:0
msgid "States"
msgstr ""
msgstr "حالات"
#. module: account
#: model:ir.actions.server,name:account.ir_actions_server_edi_invoice
@ -9905,7 +9908,7 @@ msgstr ""
#. module: account
#: view:account.analytic.line:0
msgid "Fin.Account"
msgstr ""
msgstr "Fin.Account"
#. module: account
#: model:ir.actions.act_window,name:account.action_aged_receivable_graph
@ -10186,7 +10189,7 @@ msgstr "بحث قوالب الحساب"
#. module: account
#: view:account.invoice.tax:0
msgid "Manual Invoice Taxes"
msgstr ""
msgstr "ضرائب الفاتورة يدوياً"
#. module: account
#: field:account.account,parent_right:0
@ -10263,7 +10266,7 @@ msgstr "حساب دفتر اليومية المركزي"
#. module: account
#: report:account.overdue:0
msgid "Maturity"
msgstr "الإستحقاق"
msgstr "إكتمال"
#. module: account
#: selection:account.aged.trial.balance,direction_selection:0
@ -10712,3 +10715,26 @@ msgstr ""
#~ msgid " value amount: n.a"
#~ msgstr " قيمة المبلغ: غير متاحة"
#~ msgid "Bank and Cash Accounts"
#~ msgstr "حسابات النقدية و البنك"
#~ msgid "For Value percent enter % ratio between 0-1."
#~ msgstr "لتحديد النسبةاختر قيمة بين 0 إلي 1."
#, python-format
#~ msgid ""
#~ "The expected balance (%.2f) is different than the computed one. (%.2f)"
#~ msgstr "الرصيد المتوقع(%.2f) مختلف عن الرصيد المحسوب (%.2f)."
#~ msgid "Line"
#~ msgstr "سطر"
#~ msgid "Fixed"
#~ msgstr "ثابت"
#~ msgid "Error ! You can not create recursive associated members."
#~ msgstr "خطأ! لا يمكنك إنشاء أعضاء ذوي ارتباطات متداخلة."
#~ msgid "Sort By"
#~ msgstr "فرز بحسب"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -7,20 +7,20 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-23 09:55+0000\n"
"PO-Revision-Date: 2011-11-07 12:53+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2012-01-13 14:45+0000\n"
"Last-Translator: Pedro Manuel Baeza <pedro.baeza@gmail.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: 2011-12-24 05:49+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:11+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account
#: view:account.invoice.report:0
#: view:analytic.entries.report:0
msgid "last month"
msgstr ""
msgstr "el mes pasado"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -48,7 +48,7 @@ msgstr "Estadísticas de cuentas"
#. module: account
#: view:account.invoice:0
msgid "Proforma/Open/Paid Invoices"
msgstr ""
msgstr "Facturas proforma/abiertas/pagadas"
#. module: account
#: field:report.invoice.created,residual:0
@ -64,7 +64,7 @@ msgstr "Defina una secuencia en el diario de la factura"
#. module: account
#: constraint:account.period:0
msgid "Error ! The duration of the Period(s) is/are invalid. "
msgstr "¡Error! La duración de el/los período(s) no es válida. "
msgstr "¡Error! La duración del periodo o periodos no es válida "
#. module: account
#: field:account.analytic.line,currency_id:0
@ -112,6 +112,8 @@ msgid ""
"Configuration error! The currency chosen should be shared by the default "
"accounts too."
msgstr ""
"¡Error de configuración! La moneda elegida debería ser también la misma en "
"las cuentas por defecto"
#. module: account
#: report:account.invoice:0
@ -183,7 +185,7 @@ msgstr "Facturas creadas en los últimos 15 días"
#. module: account
#: field:accounting.report,label_filter:0
msgid "Column Label"
msgstr ""
msgstr "Etiqueta de columna"
#. module: account
#: code:addons/account/wizard/account_move_journal.py:95
@ -258,6 +260,9 @@ msgid ""
"legal reports, and set the rules to close a fiscal year and generate opening "
"entries."
msgstr ""
"El tipo de cuenta es usado con propósito informativo, para generar informes "
"legales específicos de cada país, y establecer las reglas para cerrar un año "
"fiscal y generar los apuntes de apertura."
#. module: account
#: report:account.overdue:0
@ -439,7 +444,7 @@ msgstr "El importe expresado en otra divisa opcional."
#. module: account
#: field:accounting.report,enable_filter:0
msgid "Enable Comparison"
msgstr ""
msgstr "Habilitar comparación"
#. module: account
#: help:account.journal.period,state:0
@ -532,7 +537,7 @@ msgstr "Seleccionar plan contable."
#. module: account
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "¡El nombre de la compañía debe ser único!"
#. module: account
#: model:ir.model,name:account.model_account_invoice_refund
@ -621,7 +626,7 @@ msgstr ""
#. module: account
#: view:account.entries.report:0
msgid "Journal Entries with period in current year"
msgstr ""
msgstr "Apuntes contables del periodo en el año actual"
#. module: account
#: report:account.central.journal:0
@ -720,12 +725,12 @@ msgstr "Empresas conciliadas hoy"
#. module: account
#: view:report.hr.timesheet.invoice.journal:0
msgid "Sale journal in this year"
msgstr ""
msgstr "Diario de ventas en este año"
#. module: account
#: selection:account.financial.report,display_detail:0
msgid "Display children with hierarchy"
msgstr ""
msgstr "Mostrar hijos con jerarquía"
#. module: account
#: selection:account.payment.term.line,value:0
@ -747,7 +752,7 @@ msgstr "Asientos analíticos por línea"
#. module: account
#: field:account.invoice.refund,filter_refund:0
msgid "Refund Method"
msgstr ""
msgstr "Método de abono"
#. module: account
#: code:addons/account/wizard/account_change_currency.py:38
@ -758,7 +763,7 @@ msgstr "¡Sólo puede cambiar la moneda para facturas en borrador!"
#. module: account
#: model:ir.ui.menu,name:account.menu_account_report
msgid "Financial Report"
msgstr ""
msgstr "Informe financiero"
#. module: account
#: view:account.analytic.journal:0
@ -788,7 +793,7 @@ msgstr "La referencia de la empresa de esta factura."
#. module: account
#: view:account.invoice.report:0
msgid "Supplier Invoices And Refunds"
msgstr ""
msgstr "Facturas y abonos de proveedor"
#. module: account
#: view:account.move.line.unreconcile.select:0
@ -802,6 +807,7 @@ msgstr "No conciliación"
#: view:account.payment.term.line:0
msgid "At 14 net days 2 percent, remaining amount at 30 days end of month."
msgstr ""
"2 por ciento en 14 días netos, la cantidad restante a 30 días fin de mes"
#. module: account
#: model:ir.model,name:account.model_account_analytic_journal_report
@ -817,7 +823,7 @@ msgstr "Conciliación automática"
#: code:addons/account/account_move_line.py:1250
#, python-format
msgid "No period found or period given is ambigous."
msgstr ""
msgstr "No se ha encontrado periodo o el periodo dado es ambiguo"
#. module: account
#: model:ir.actions.act_window,help:account.action_account_gain_loss
@ -827,6 +833,10 @@ msgid ""
"or Loss you'd realized if those transactions were ended today. Only for "
"accounts having a secondary currency set."
msgstr ""
"Cuando se realizan transacciones multi-moneda, debería perder o ganar una "
"cantidad debido a los cambios de moneda. Este menú le da acceso a la "
"previsión de las ganancias o pérdidas que tendría si la transacción "
"finalizara hoy. Sólo para cuentas que tengan una segunda moneda definida."
#. module: account
#: selection:account.entries.report,month:0
@ -872,7 +882,7 @@ msgstr "Cálculo"
#. module: account
#: selection:account.invoice.refund,filter_refund:0
msgid "Cancel: refund invoice and reconcile"
msgstr ""
msgstr "Cancelar: abonar factura y reconciliar"
#. module: account
#: field:account.cashbox.line,pieces:0
@ -1046,11 +1056,13 @@ msgid ""
"You cannot change the type of account from '%s' to '%s' type as it contains "
"journal items!"
msgstr ""
"¡No puede cambiar el tipo de cuenta de '%s' a '%s', ya que contiene apuntes "
"contables!"
#. module: account
#: field:account.report.general.ledger,sortby:0
msgid "Sort by"
msgstr ""
msgstr "Ordenar por"
#. module: account
#: help:account.fiscalyear.close,fy_id:0
@ -1110,7 +1122,7 @@ msgstr "Generar asientos antes:"
#. module: account
#: view:account.move.line:0
msgid "Unbalanced Journal Items"
msgstr ""
msgstr "Apuntes contables descuadrados"
#. module: account
#: model:account.account.type,name:account.data_account_type_bank
@ -1134,6 +1146,8 @@ msgid ""
"Total amount (in Secondary currency) for transactions held in secondary "
"currency for this account."
msgstr ""
"Cantidad total (en la moneda secundaria) para las transacciones realizadas "
"en moneda secundaria para esta cuenta"
#. module: account
#: field:account.fiscal.position.tax,tax_dest_id:0
@ -1149,7 +1163,7 @@ msgstr "Centralización del haber"
#. module: account
#: view:report.account_type.sales:0
msgid "All Months Sales by type"
msgstr ""
msgstr "Todas las ventas del mes por tipo"
#. module: account
#: model:ir.actions.act_window,help:account.action_invoice_tree2
@ -1178,12 +1192,12 @@ msgstr "Cancelar facturas"
#. module: account
#: help:account.journal,code:0
msgid "The code will be displayed on reports."
msgstr ""
msgstr "El código será mostrado en los informes."
#. module: account
#: view:account.tax.template:0
msgid "Taxes used in Purchases"
msgstr ""
msgstr "Impuestos usados en las compras"
#. module: account
#: field:account.invoice.tax,tax_code_id:0
@ -1324,7 +1338,7 @@ msgstr "Seleccione un periodo inicial y final"
#. module: account
#: model:account.financial.report,name:account.account_financial_report_profitandloss0
msgid "Profit and Loss"
msgstr ""
msgstr "Pérdidas y Ganancias"
#. module: account
#: model:ir.model,name:account.model_account_account_template
@ -1479,6 +1493,7 @@ msgid ""
"By unchecking the active field, you may hide a fiscal position without "
"deleting it."
msgstr ""
"Desmarcando el campo actual, esconderá la posición fiscal sin borrarla."
#. module: account
#: model:ir.model,name:account.model_temp_range
@ -1556,7 +1571,7 @@ msgstr "Buscar extractos bancarios"
#. module: account
#: view:account.move.line:0
msgid "Unposted Journal Items"
msgstr ""
msgstr "Apuntes contables no asentados"
#. module: account
#: view:account.chart.template:0
@ -1627,6 +1642,8 @@ msgid ""
"You can not validate a journal entry unless all journal items belongs to the "
"same chart of accounts !"
msgstr ""
"¡No se puede validar un asiento si todos los apuntes no pertenecen al mismo "
"plan contable!"
#. module: account
#: model:process.node,note:account.process_node_analytic0
@ -1801,7 +1818,7 @@ msgstr "No puede crear una línea de movimiento en una cuenta cerrada."
#: code:addons/account/account.py:428
#, python-format
msgid "Error!"
msgstr ""
msgstr "¡Error!"
#. module: account
#: sql_constraint:account.move.line:0
@ -1833,7 +1850,7 @@ msgstr "Asientos por línea"
#. module: account
#: field:account.vat.declaration,based_on:0
msgid "Based on"
msgstr ""
msgstr "Basado en"
#. module: account
#: field:account.invoice,move_id:0
@ -1905,6 +1922,9 @@ msgid ""
"will be added, Loss : Amount will be deducted.), as calculated in Profit & "
"Loss Report"
msgstr ""
"Esta cuenta se usa para transferir las ganancias/pérdidas (Si es una "
"ganancia: el importe se añadirá, si es una pérdida: el importe se deducirá), "
"tal cuál es calculada en el informe de Pérdidas y ganancias."
#. module: account
#: model:process.node,note:account.process_node_reconciliation0
@ -1981,7 +2001,7 @@ msgstr ""
#. module: account
#: view:account.analytic.line:0
msgid "Analytic Journal Items related to a sale journal."
msgstr ""
msgstr "Apuntes contables analíticos referidos a un diario de ventas."
#. module: account
#: help:account.bank.statement,name:0
@ -2119,6 +2139,9 @@ msgid ""
"Put a sequence in the journal definition for automatic numbering or create a "
"sequence manually for this piece."
msgstr ""
"¡No se puede crear una secuencia automática para este objeto!\n"
"Ponga una secuencia en la definición del diario para una numeración "
"automática o cree un número manualmente para este objeto."
#. module: account
#: code:addons/account/account.py:786
@ -2127,11 +2150,13 @@ msgid ""
"You can not modify the company of this journal as its related record exist "
"in journal items"
msgstr ""
"No puede modificar la compañía de este diario, ya que contiene apuntes "
"contables"
#. module: account
#: report:account.invoice:0
msgid "Customer Code"
msgstr ""
msgstr "Código de cliente"
#. module: account
#: view:account.installer:0
@ -2167,7 +2192,7 @@ msgstr "Descripción"
#: code:addons/account/account.py:3375
#, python-format
msgid "Tax Paid at %s"
msgstr ""
msgstr "Impuesto pagado en %s"
#. module: account
#: code:addons/account/account.py:3189
@ -2320,6 +2345,8 @@ msgid ""
"In order to delete a bank statement, you must first cancel it to delete "
"related journal items."
msgstr ""
"Para poder borrar un extracto bancario, primero debe cancelarlo para borrar "
"los apuntes contables relacionados."
#. module: account
#: field:account.invoice,payment_term:0
@ -2638,7 +2665,7 @@ msgstr ""
#. module: account
#: sql_constraint:account.model.line:0
msgid "Wrong credit or debit value in model, they must be positive!"
msgstr ""
msgstr "¡Valor debe o haber incorrecto, debe ser positivo!"
#. module: account
#: model:ir.ui.menu,name:account.menu_automatic_reconcile
@ -2673,7 +2700,7 @@ msgstr "Fechas"
#. module: account
#: field:account.chart.template,parent_id:0
msgid "Parent Chart Template"
msgstr ""
msgstr "Plantilla de plan padre"
#. module: account
#: field:account.tax,parent_id:0
@ -2685,7 +2712,7 @@ msgstr "Cuenta impuestos padre"
#: code:addons/account/wizard/account_change_currency.py:59
#, python-format
msgid "New currency is not configured properly !"
msgstr ""
msgstr "¡La nueva moneda no está configurada correctamente!"
#. module: account
#: view:account.subscription.generate:0
@ -2712,7 +2739,7 @@ msgstr "Asientos contables"
#. module: account
#: field:account.invoice,reference_type:0
msgid "Communication Type"
msgstr ""
msgstr "Tipo de comunicación"
#. module: account
#: field:account.invoice.line,discount:0
@ -2743,7 +2770,7 @@ msgstr "Configuración financiera para nueva compañía"
#. module: account
#: view:account.installer:0
msgid "Configure Your Chart of Accounts"
msgstr ""
msgstr "Configure su plan de cuentas"
#. module: account
#: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all
@ -2779,6 +2806,8 @@ msgid ""
"You need an Opening journal with centralisation checked to set the initial "
"balance!"
msgstr ""
"¡Necesita un diario de apertura con la casilla 'Centralización' marcada para "
"establecer el balance inicial!"
#. module: account
#: view:account.invoice.tax:0
@ -2886,6 +2915,8 @@ msgid ""
"You can not delete an invoice which is open or paid. We suggest you to "
"refund it instead."
msgstr ""
"No puede borrar una factura que está abierta o pagada. Le sugerimos que la "
"abone en su lugar."
#. module: account
#: field:wizard.multi.charts.accounts,sale_tax:0
@ -2990,7 +3021,7 @@ msgstr "Moneda factura"
#: field:accounting.report,account_report_id:0
#: model:ir.ui.menu,name:account.menu_account_financial_reports_tree
msgid "Account Reports"
msgstr ""
msgstr "Informes de cuentas"
#. module: account
#: field:account.payment.term,line_ids:0
@ -3021,7 +3052,7 @@ msgstr "Lista plantilla impuestos"
#: code:addons/account/account_move_line.py:584
#, python-format
msgid "You can not create move line on view account %s %s"
msgstr ""
msgstr "No puede crear una línea de movimiento en la cuenta de vista %s %s"
#. module: account
#: help:account.account,currency_mode:0
@ -3064,7 +3095,7 @@ msgstr "Siempre"
#: view:account.invoice.report:0
#: view:analytic.entries.report:0
msgid "Month-1"
msgstr ""
msgstr "Mes-1"
#. module: account
#: view:account.analytic.line:0
@ -3112,7 +3143,7 @@ msgstr "Líneas analíticas"
#. module: account
#: view:account.invoice:0
msgid "Proforma Invoices"
msgstr ""
msgstr "Facturas proforma"
#. module: account
#: model:process.node,name:account.process_node_electronicfile0
@ -3127,7 +3158,7 @@ msgstr "Haber del cliente"
#. module: account
#: view:account.payment.term.line:0
msgid " Day of the Month: 0"
msgstr ""
msgstr " Día del mes: 0"
#. module: account
#: view:account.subscription:0
@ -3175,7 +3206,7 @@ msgstr "Generar plan contable a partir de una plantilla de plan contable"
#. module: account
#: view:report.account.sales:0
msgid "This months' Sales by type"
msgstr ""
msgstr "Ventas de este mes por tipo"
#. module: account
#: model:ir.model,name:account.model_account_unreconcile_reconcile
@ -3282,7 +3313,7 @@ msgstr "Configuración aplicaciones contabilidad"
#. module: account
#: view:account.payment.term.line:0
msgid " Value amount: 0.02"
msgstr ""
msgstr " Importe: 0.02"
#. module: account
#: field:account.chart,period_from:0
@ -3321,7 +3352,7 @@ msgstr "IVA:"
#. module: account
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "¡Estructura de comunicación BBA no válida!"
#. module: account
#: help:account.analytic.line,amount_currency:0
@ -3427,12 +3458,12 @@ msgstr ""
#. module: account
#: view:account.invoice.line:0
msgid "Quantity :"
msgstr ""
msgstr "Cantidad:"
#. module: account
#: field:account.aged.trial.balance,period_length:0
msgid "Period Length (days)"
msgstr ""
msgstr "Longitud del periodo (días)"
#. module: account
#: field:account.invoice.report,state:0
@ -3459,12 +3490,12 @@ msgstr "Informe de las ventas por tipo de cuenta"
#. module: account
#: view:account.move.line:0
msgid "Unreconciled Journal Items"
msgstr ""
msgstr "Apuntes contables no conciliados"
#. module: account
#: sql_constraint:res.currency:0
msgid "The currency code must be unique per company!"
msgstr ""
msgstr "¡El código de moneda debe ser único por compañía!"
#. module: account
#: selection:account.account.type,close_method:0
@ -3631,7 +3662,7 @@ msgstr "No filtros"
#. module: account
#: view:account.invoice.report:0
msgid "Pro-forma Invoices"
msgstr ""
msgstr "Facturas pro-forma"
#. module: account
#: view:res.partner:0

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-23 09:55+0000\n"
"PO-Revision-Date: 2011-11-07 12:52+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2012-01-22 12:25+0000\n"
"Last-Translator: Xosé <Unknown>\n"
"Language-Team: Galician <gl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-24 05:45+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-23 05:20+0000\n"
"X-Generator: Launchpad (build 14700)\n"
#. module: account
#: view:account.invoice.report:0
@ -2040,7 +2040,7 @@ msgstr "Importar dende factura"
#: selection:report.account.sales,month:0
#: selection:report.account_type.sales,month:0
msgid "January"
msgstr "Enero"
msgstr "Xaneiro"
#. module: account
#: view:account.journal:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-23 09:55+0000\n"
"PO-Revision-Date: 2011-11-07 12:54+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2012-01-17 18:16+0000\n"
"Last-Translator: Erwin (Endian Solutions) <Unknown>\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: 2011-12-24 05:44+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-18 04:44+0000\n"
"X-Generator: Launchpad (build 14681)\n"
#. module: account
#: code:addons/account/account.py:1306
@ -26,7 +26,7 @@ msgstr "Integriteitsfout !"
#: view:account.invoice.report:0
#: view:analytic.entries.report:0
msgid "last month"
msgstr ""
msgstr "vorige maand"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -54,7 +54,7 @@ msgstr "Rekeningstatistieken"
#. module: account
#: view:account.invoice:0
msgid "Proforma/Open/Paid Invoices"
msgstr ""
msgstr "Pro-forma/Open/Betaalde facturen"
#. module: account
#: field:report.invoice.created,residual:0
@ -118,6 +118,8 @@ msgid ""
"Configuration error! The currency chosen should be shared by the default "
"accounts too."
msgstr ""
"Configuratiefout! De gekozen valuta moet hetzelfde zijn als dat van de "
"standaard grootboekrekeningen."
#. module: account
#: report:account.invoice:0
@ -168,7 +170,7 @@ msgstr "Waarschuwing!"
#: code:addons/account/account.py:3182
#, python-format
msgid "Miscellaneous Journal"
msgstr ""
msgstr "Diverse postenboek"
#. module: account
#: field:account.fiscal.position.account,account_src_id:0
@ -189,7 +191,7 @@ msgstr "Facturen gemaakt binnen de laatste 15 dagen"
#. module: account
#: field:accounting.report,label_filter:0
msgid "Column Label"
msgstr ""
msgstr "Kolomtitel"
#. module: account
#: code:addons/account/wizard/account_move_journal.py:95
@ -263,6 +265,9 @@ msgid ""
"legal reports, and set the rules to close a fiscal year and generate opening "
"entries."
msgstr ""
"De rekeningsoort wordt gebruikt voor (land-specifieke) rapportagedoeleinden "
"en bepaalt de handelswijze bij het afsluiten van het boekjaar en het openen "
"van de balans."
#. module: account
#: report:account.overdue:0
@ -535,7 +540,7 @@ msgstr "Rekeningschema kiezen"
#. module: account
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "De naam van het bedrijf moet uniek zijn!"
#. module: account
#: model:ir.model,name:account.model_account_invoice_refund
@ -618,12 +623,12 @@ msgstr "Reeksen"
#: field:account.financial.report,account_report_id:0
#: selection:account.financial.report,type:0
msgid "Report Value"
msgstr ""
msgstr "Rapport waarde"
#. module: account
#: view:account.entries.report:0
msgid "Journal Entries with period in current year"
msgstr ""
msgstr "Journaalposten waarvan de perioden in het huidige boekjaar vallen."
#. module: account
#: report:account.central.journal:0
@ -722,7 +727,7 @@ msgstr "Vandaag afgeletterde relaties"
#. module: account
#: view:report.hr.timesheet.invoice.journal:0
msgid "Sale journal in this year"
msgstr ""
msgstr "Verkoop journaal in dit jaar"
#. module: account
#: selection:account.financial.report,display_detail:0
@ -760,7 +765,7 @@ msgstr "U kunt de valuta alleen wijzigen bij concept facturen !"
#. module: account
#: model:ir.ui.menu,name:account.menu_account_report
msgid "Financial Report"
msgstr ""
msgstr "Financieel rapport"
#. module: account
#: view:account.analytic.journal:0
@ -1053,7 +1058,7 @@ msgstr ""
#. module: account
#: field:account.report.general.ledger,sortby:0
msgid "Sort by"
msgstr ""
msgstr "Sorteer op"
#. module: account
#: help:account.fiscalyear.close,fy_id:0
@ -7010,7 +7015,7 @@ msgstr ""
#. module: account
#: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation
msgid "Monthly Turnover"
msgstr ""
msgstr "Maandelijkse omzet"
#. module: account
#: view:account.move:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-23 09:55+0000\n"
"PO-Revision-Date: 2011-11-07 12:51+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2012-01-19 04:21+0000\n"
"Last-Translator: Rafael Sales <Unknown>\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: 2011-12-24 05:51+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-20 04:39+0000\n"
"X-Generator: Launchpad (build 14700)\n"
#. module: account
#: view:account.invoice.report:0
@ -48,7 +48,7 @@ msgstr "Estatisticas da conta"
#. module: account
#: view:account.invoice:0
msgid "Proforma/Open/Paid Invoices"
msgstr ""
msgstr "Proforma / Aberto / Faturas Pagas"
#. module: account
#: field:report.invoice.created,residual:0
@ -111,6 +111,8 @@ msgid ""
"Configuration error! The currency chosen should be shared by the default "
"accounts too."
msgstr ""
"Erro de configuração! A moeda escolhida deve ser compartilhada pelas contas "
"padrão também."
#. module: account
#: report:account.invoice:0
@ -198,7 +200,7 @@ msgid ""
"journal of the same type."
msgstr ""
"Dá o tipo de diário analítico. Quando precisar de criar lançamentos "
"analíticos, para um documento (ex.fatura) oOpenERP vai procurar um diário "
"analíticos, para um documento (ex: fatura) o OpenERP vai procurar um diário "
"deste tipo."
#. module: account
@ -241,7 +243,7 @@ msgstr "Os lançamentos contábeis são uma entrada da reconciliação."
#. module: account
#: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports
msgid "Belgian Reports"
msgstr "Relatórios belgas"
msgstr "Relatórios Belgas"
#. module: account
#: code:addons/account/account_move_line.py:1199
@ -715,7 +717,7 @@ msgstr "Parceiros Reconciliados Hoje"
#. module: account
#: view:report.hr.timesheet.invoice.journal:0
msgid "Sale journal in this year"
msgstr ""
msgstr "Diário de vendas deste ano"
#. module: account
#: selection:account.financial.report,display_detail:0
@ -742,7 +744,7 @@ msgstr "Entradas analíticas por linha"
#. module: account
#: field:account.invoice.refund,filter_refund:0
msgid "Refund Method"
msgstr ""
msgstr "Método de reembolso"
#. module: account
#: code:addons/account/wizard/account_change_currency.py:38
@ -965,7 +967,7 @@ msgstr ""
#: code:addons/account/account.py:2578
#, python-format
msgid "I can not locate a parent code for the template account!"
msgstr ""
msgstr "Não consigo localizar um código aparente para a conta do modelo!"
#. module: account
#: view:account.analytic.line:0
@ -2312,6 +2314,8 @@ msgid ""
"In order to delete a bank statement, you must first cancel it to delete "
"related journal items."
msgstr ""
"Para excluir um texto bancário, primeiro você deve cancelá-lo para excluir "
"itens relacionados ao diário."
#. module: account
#: field:account.invoice,payment_term:0
@ -2625,7 +2629,7 @@ msgstr ""
#. module: account
#: sql_constraint:account.model.line:0
msgid "Wrong credit or debit value in model, they must be positive!"
msgstr ""
msgstr "Crédito errado ou valor do débito deve ser positivo!"
#. module: account
#: model:ir.ui.menu,name:account.menu_automatic_reconcile
@ -2672,7 +2676,7 @@ msgstr "Conta-pai de Impostos"
#: code:addons/account/wizard/account_change_currency.py:59
#, python-format
msgid "New currency is not configured properly !"
msgstr ""
msgstr "Nova moeda não está configurada corretamente!"
#. module: account
#: view:account.subscription.generate:0
@ -4934,7 +4938,7 @@ msgstr "Pagamentos"
#. module: account
#: view:account.tax:0
msgid "Reverse Compute Code"
msgstr ""
msgstr "Código Reverso do Cálculo"
#. module: account
#: field:account.subscription.line,move_id:0
@ -5145,7 +5149,7 @@ msgstr "Imposto nas sub-contas"
#. module: account
#: model:ir.model,name:account.model_account_fiscal_position_tax_template
msgid "Template Tax Fiscal Position"
msgstr ""
msgstr "Modelo de posição da taxa fiscal"
#. module: account
#: field:account.journal,update_posted:0
@ -5456,6 +5460,9 @@ msgid ""
"Number of partial amounts that can be combined to find a balance point can "
"be chosen as the power of the automatic reconciliation"
msgstr ""
"Número de montantes parciais que podem ser combinados para encontrar um "
"ponto de equilíbrio. Pode ser escolhido como ponto para reconciliação "
"automática"
#. module: account
#: help:account.payment.term.line,sequence:0
@ -5667,7 +5674,7 @@ msgstr "Mapeamento Fiscal"
#: model:ir.actions.act_window,name:account.action_account_state_open
#: model:ir.model,name:account.model_account_state_open
msgid "Account State Open"
msgstr ""
msgstr "Estado da conta está em aberto"
#. module: account
#: report:account.analytic.account.quantity_cost_ledger:0
@ -10722,7 +10729,7 @@ msgstr "Plano de Contas Analíticas"
#. module: account
#: field:account.chart.template,property_account_expense:0
msgid "Expense Account on Product Template"
msgstr "Conta de despesas no modelo de produtos"
msgstr ""
#. module: account
#: help:accounting.report,label_filter:0

View File

@ -7,20 +7,20 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-23 09:55+0000\n"
"PO-Revision-Date: 2011-11-07 12:58+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2012-01-13 06:54+0000\n"
"Last-Translator: Chertykov Denis <chertykov@gmail.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: 2011-12-24 05:48+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:11+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account
#: view:account.invoice.report:0
#: view:analytic.entries.report:0
msgid "last month"
msgstr ""
msgstr "в прошлом месяце"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -48,7 +48,7 @@ msgstr "Статистика по счету"
#. module: account
#: view:account.invoice:0
msgid "Proforma/Open/Paid Invoices"
msgstr ""
msgstr "Проформы/Открытые/Оплаченные счета"
#. module: account
#: field:report.invoice.created,residual:0
@ -182,7 +182,7 @@ msgstr "Счета созданные за прошедшие 15 дней"
#. module: account
#: field:accounting.report,label_filter:0
msgid "Column Label"
msgstr ""
msgstr "Заголовок столбца"
#. module: account
#: code:addons/account/wizard/account_move_journal.py:95
@ -255,6 +255,8 @@ msgid ""
"legal reports, and set the rules to close a fiscal year and generate opening "
"entries."
msgstr ""
"Тип счета используется в информационных целях, при создании официальных "
"отчетов для конкретной страны, определении правил"
#. module: account
#: report:account.overdue:0
@ -433,7 +435,7 @@ msgstr "Сумма выраженная в дополнительной друг
#. module: account
#: field:accounting.report,enable_filter:0
msgid "Enable Comparison"
msgstr ""
msgstr "Разрешить сравнение"
#. module: account
#: help:account.journal.period,state:0
@ -524,7 +526,7 @@ msgstr "Выбор плана счетов"
#. module: account
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "Название компании должно быть уникальным!"
#. module: account
#: model:ir.model,name:account.model_account_invoice_refund
@ -612,7 +614,7 @@ msgstr ""
#. module: account
#: view:account.entries.report:0
msgid "Journal Entries with period in current year"
msgstr ""
msgstr "Записи журнала с периодом в этом году."
#. module: account
#: report:account.central.journal:0
@ -710,7 +712,7 @@ msgstr "Контрагенты сверенные сегодня"
#. module: account
#: view:report.hr.timesheet.invoice.journal:0
msgid "Sale journal in this year"
msgstr ""
msgstr "Журнал продаж в этом году"
#. module: account
#: selection:account.financial.report,display_detail:0
@ -748,7 +750,7 @@ msgstr "Вы можете изменить валюту только в черн
#. module: account
#: model:ir.ui.menu,name:account.menu_account_report
msgid "Financial Report"
msgstr ""
msgstr "Финансовый отчет"
#. module: account
#: view:account.analytic.journal:0
@ -951,6 +953,9 @@ msgid ""
"amount.If the tax account is base tax code, this field will contain the "
"basic amount(without tax)."
msgstr ""
"Если налоговый счёт - это счёт налогового кода, это поле будет содержать "
"сумму с налогом. Если налоговый счёт основной налоговый код, это поле будет "
"содержать базовую сумму (без налога)"
#. module: account
#: code:addons/account/account.py:2578
@ -1036,7 +1041,7 @@ msgstr ""
#. module: account
#: field:account.report.general.ledger,sortby:0
msgid "Sort by"
msgstr ""
msgstr "Сортировать по"
#. module: account
#: help:account.fiscalyear.close,fy_id:0
@ -1310,7 +1315,7 @@ msgstr "Выберите начало и окончание периода"
#. module: account
#: model:account.financial.report,name:account.account_financial_report_profitandloss0
msgid "Profit and Loss"
msgstr ""
msgstr "Прибыли и убытки"
#. module: account
#: model:ir.model,name:account.model_account_account_template

View File

@ -7,20 +7,20 @@ msgstr ""
"Project-Id-Version: OpenERP Server 5.0.14\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-23 09:55+0000\n"
"PO-Revision-Date: 2011-11-07 12:47+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2012-01-12 21:15+0000\n"
"Last-Translator: Mikael Akerberg <mikael.akerberg@dermanord.se>\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: 2011-12-24 05:49+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-13 04:39+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account
#: view:account.invoice.report:0
#: view:analytic.entries.report:0
msgid "last month"
msgstr ""
msgstr "föregående månad"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -48,7 +48,7 @@ msgstr "Kontostatistik"
#. module: account
#: view:account.invoice:0
msgid "Proforma/Open/Paid Invoices"
msgstr ""
msgstr "Proforma/Öppna/Betalda fakturor"
#. module: account
#: field:report.invoice.created,residual:0
@ -109,6 +109,7 @@ msgid ""
"Configuration error! The currency chosen should be shared by the default "
"accounts too."
msgstr ""
"Konfigurations fel! Den valuta bör delas mellan standard-konton också."
#. module: account
#: report:account.invoice:0
@ -179,7 +180,7 @@ msgstr "Faktura skapad inom 15 dagar"
#. module: account
#: field:accounting.report,label_filter:0
msgid "Column Label"
msgstr ""
msgstr "Kolumn Etikett"
#. module: account
#: code:addons/account/wizard/account_move_journal.py:95
@ -194,6 +195,9 @@ msgid ""
"invoice) to create analytic entries, OpenERP will look for a matching "
"journal of the same type."
msgstr ""
"Ger typ av analytisk journal. När det behövs ett dokument (t.ex. en faktura) "
"för att skapa analytiska poster, kommer OpenERP leta efter en matchande "
"journal av samma typ."
#. module: account
#: model:ir.actions.act_window,name:account.action_account_tax_template_form

View File

@ -7,20 +7,20 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-23 09:55+0000\n"
"PO-Revision-Date: 2011-11-07 12:52+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2012-01-23 23:30+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\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: 2011-12-24 05:50+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account
#: view:account.invoice.report:0
#: view:analytic.entries.report:0
msgid "last month"
msgstr ""
msgstr "geçen ay"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@ -48,7 +48,7 @@ msgstr "Hesap İstatistikleri"
#. module: account
#: view:account.invoice:0
msgid "Proforma/Open/Paid Invoices"
msgstr ""
msgstr "Proforma/Açık/Kapalı Faturalar"
#. module: account
#: field:report.invoice.created,residual:0
@ -180,7 +180,7 @@ msgstr "Son 15 Günde Oluşturulmuş Faturalar"
#. module: account
#: field:accounting.report,label_filter:0
msgid "Column Label"
msgstr ""
msgstr "Kolon Etiketi"
#. module: account
#: code:addons/account/wizard/account_move_journal.py:95
@ -434,7 +434,7 @@ msgstr "Tutar, seçmeli olarak başka bir para birimiyle belirtilebilir."
#. module: account
#: field:accounting.report,enable_filter:0
msgid "Enable Comparison"
msgstr ""
msgstr "Karşılaştırmayı Etkinleştir"
#. module: account
#: help:account.journal.period,state:0
@ -525,7 +525,7 @@ msgstr "Muhasebe Hesap Planı seçiniz"
#. module: account
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "Şirket adı tekil olmalı !"
#. module: account
#: model:ir.model,name:account.model_account_invoice_refund
@ -609,7 +609,7 @@ msgstr "Diziler"
#: field:account.financial.report,account_report_id:0
#: selection:account.financial.report,type:0
msgid "Report Value"
msgstr ""
msgstr "Rapor Değeri"
#. module: account
#: view:account.entries.report:0
@ -630,7 +630,7 @@ msgstr "Ana dizi şuandakinden farklı olmalı"
#: code:addons/account/account.py:3376
#, python-format
msgid "TAX-S-%s"
msgstr ""
msgstr "KDV-s-%s"
#. module: account
#: field:account.invoice.tax,tax_amount:0
@ -738,7 +738,7 @@ msgstr "Kalemlere göre Analitik Girişler"
#. module: account
#: field:account.invoice.refund,filter_refund:0
msgid "Refund Method"
msgstr ""
msgstr "İade Yöntemi"
#. module: account
#: code:addons/account/wizard/account_change_currency.py:38
@ -779,7 +779,7 @@ msgstr "Bu faturaya ait paydaş kaynağı"
#. module: account
#: view:account.invoice.report:0
msgid "Supplier Invoices And Refunds"
msgstr ""
msgstr "Tedarikçi Faturaları ve İadeler"
#. module: account
#: view:account.move.line.unreconcile.select:0
@ -1041,7 +1041,7 @@ msgstr ""
#. module: account
#: field:account.report.general.ledger,sortby:0
msgid "Sort by"
msgstr ""
msgstr "Sırala"
#. module: account
#: help:account.fiscalyear.close,fy_id:0
@ -1174,7 +1174,7 @@ msgstr ""
#. module: account
#: view:account.tax.template:0
msgid "Taxes used in Purchases"
msgstr ""
msgstr "Satınalmalarda kullanılan vergiler"
#. module: account
#: field:account.invoice.tax,tax_code_id:0
@ -1314,7 +1314,7 @@ msgstr "Başlangıç ve bitiş dönemi seçin"
#. module: account
#: model:account.financial.report,name:account.account_financial_report_profitandloss0
msgid "Profit and Loss"
msgstr ""
msgstr "Kâr ve Zarar"
#. module: account
#: model:ir.model,name:account.model_account_account_template
@ -1787,7 +1787,7 @@ msgstr "Kapanmış bir hesap için hareket yaratamazsınız."
#: code:addons/account/account.py:428
#, python-format
msgid "Error!"
msgstr ""
msgstr "Hata!"
#. module: account
#: sql_constraint:account.move.line:0
@ -1819,7 +1819,7 @@ msgstr "Entries By Line"
#. module: account
#: field:account.vat.declaration,based_on:0
msgid "Based on"
msgstr ""
msgstr "Temel alınan:"
#. module: account
#: field:account.invoice,move_id:0
@ -2116,7 +2116,7 @@ msgstr ""
#. module: account
#: report:account.invoice:0
msgid "Customer Code"
msgstr ""
msgstr "Müşteri Kodu"
#. module: account
#: view:account.installer:0
@ -3862,7 +3862,7 @@ msgstr "Onayla"
#. module: account
#: model:account.financial.report,name:account.account_financial_report_assets0
msgid "Assets"
msgstr ""
msgstr "Varlıklar"
#. module: account
#: view:account.invoice.confirm:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-23 09:55+0000\n"
"PO-Revision-Date: 2011-11-07 12:54+0000\n"
"PO-Revision-Date: 2012-01-12 04:38+0000\n"
"Last-Translator: Wei \"oldrev\" Li <oldrev@gmail.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: 2011-12-24 05:52+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-13 04:39+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account
#: view:account.invoice.report:0
@ -1431,7 +1431,7 @@ msgstr ""
#. module: account
#: model:ir.model,name:account.model_temp_range
msgid "A Temporary table used for Dashboard view"
msgstr "用于控制台视图的临时表"
msgstr "用于仪表盘视图的临时表"
#. module: account
#: model:ir.actions.act_window,name:account.action_invoice_tree4
@ -3767,7 +3767,7 @@ msgstr "(如果你想打开它发票要反核销)"
#: model:ir.actions.act_window,name:account.open_board_account
#: model:ir.ui.menu,name:account.menu_board_account
msgid "Accounting Dashboard"
msgstr "会计控制台"
msgstr "会计仪表盘"
#. module: account
#: field:account.tax,name:0
@ -6141,7 +6141,7 @@ msgstr "供应商红字发票"
#. module: account
#: model:ir.ui.menu,name:account.menu_dashboard_acc
msgid "Dashboard"
msgstr "控制台"
msgstr "仪表盘"
#. module: account
#: field:account.bank.statement,move_line_ids:0
@ -8876,7 +8876,7 @@ msgstr "本年"
#. module: account
#: view:board.board:0
msgid "Account Board"
msgstr "控制台"
msgstr "会计仪表盘"
#. module: account
#: view:account.model:0

View File

@ -60,7 +60,6 @@
<tree colors="blue:state=='pending';grey:state in ('close','cancelled');blue:type=='view'" string="Analytic account" toolbar="1">
<field name="name"/>
<field name="code" groups="base.group_extended"/>
<field name="quantity"/>
<field name="debit"/>
<field name="credit"/>
<field name="balance"/>

View File

@ -58,18 +58,25 @@ class report_account_common(report_sxw.rml_parse, common_report_header):
'name': report.name,
'balance': report.balance,
'type': 'report',
'level': report.level,
'level': bool(report.style_overwrite) and report.style_overwrite or report.level,
'account_type': report.type =='sum' and 'view' or False, #used to underline the financial report balances
}
if data['form']['enable_filter']:
vals['balance_cmp'] = self.pool.get('account.financial.report').browse(self.cr, self.uid, report.id, context=data['form']['comparison_context']).balance
lines.append(vals)
account_ids = []
if report.display_detail == 'no_detail':
#the rest of the loop is used to display the details of the financial report, so it's not needed here.
continue
if report.type == 'accounts' and report.account_ids:
account_ids = account_obj._get_children_and_consol(self.cr, self.uid, [x.id for x in report.account_ids])
elif report.type == 'account_type' and report.account_type_ids:
account_ids = account_obj.search(self.cr, self.uid, [('user_type','in', [x.id for x in report.account_type_ids])])
if account_ids:
for account in account_obj.browse(self.cr, self.uid, account_ids, context=data['form']['used_context']):
#if there are accounts to display, we add them to the lines with a level equals to their level in
#the COA + 1 (to avoid having them with a too low level that would conflicts with the level of data
#financial reports for Assets, liabilities...)
if report.display_detail == 'detail_flat' and account.type == 'view':
continue
flag = False
@ -77,7 +84,7 @@ class report_account_common(report_sxw.rml_parse, common_report_header):
'name': account.code + ' ' + account.name,
'balance': account.balance != 0 and account.balance * report.sign or account.balance,
'type': 'account',
'level': report.display_detail == 'detail_with_hierarchy' and min(account.level,6) or 6,
'level': report.display_detail == 'detail_with_hierarchy' and min(account.level + 1,6) or 6, #account.level + 1
'account_type': account.type,
}
if not currency_obj.is_zero(self.cr, self.uid, account.company_id.currency_id, vals['balance']):

View File

@ -127,43 +127,31 @@
<paraStyle name="terp_level_0_name" fontName="Helvetica-Bold" fontSize="9.0" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_0_balance" fontName="Helvetica-Bold" fontSize="9.0" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_1_name" fontName="Helvetica-Bold" fontSize="9.0" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_1_balance" fontName="Helvetica-Bold" fontSize="9.0" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_2_name" fontName="Helvetica-Bold" fontSize="8.0" leftIndent="10.0" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_2_balance" fontName="Helvetica-Bold" fontSize="8.0" leftIndent="10.0" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_3_name" fontName="Helvetica" fontSize="8.0" leftIndent="20.0" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_3_name_bold" fontName="Helvetica-Bold" fontSize="8.0" leftIndent="20.0" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_3_balance" fontName="Helvetica" fontSize="8.0" leftIndent="0.0" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_3_balance_bold" fontName="Helvetica-Bold" fontSize="8.0" leftIndent="0.0" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_4_name" fontName="Helvetica" fontSize="8.0" leftIndent="30.0" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_4_name_bold" fontName="Helvetica-Bold" fontSize="8.0" leftIndent="30.0" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_1_name" fontName="Helvetica-Bold" fontSize="10.0" alignment="LEFT" leading="20" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_1_balance" fontName="Helvetica-Bold" fontSize="10.0" alignment="RIGHT" leading="20" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_2_name" fontName="Helvetica-Bold" fontSize="9.0" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_2_balance" fontName="Helvetica-Bold" fontSize="9.0" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_3_name" fontName="Helvetica-Bold" fontSize="8.0" leftIndent="10.0" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_3_balance" fontName="Helvetica-Bold" fontSize="8.0" leftIndent="10.0" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_4_name" fontName="Helvetica" fontSize="8.0" leftIndent="20.0" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_4_balance" fontName="Helvetica" fontSize="8.0" leftIndent="0.0" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_5_name" fontName="Helvetica-Oblique" fontSize="7.5" leftIndent="30.0" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_5_balance" fontName="Helvetica-Oblique" fontSize="7.5" leftIndent="0.0" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_6_name" fontName="Helvetica" fontSize="6.5" leftIndent="40.0" alignment="LEFT" spaceBefore="0.0" spaceAfter="0.0"/>
<paraStyle name="terp_level_6_balance" fontName="Helvetica" fontSize="6.5" leftIndent="0.0" alignment="RIGHT" spaceBefore="0.0" spaceAfter="0.0"/>
<blockTableStyle id="Table1">
<blockTopPadding start="0,0" stop="-1,0" length="15"/>
<blockFont name="Helvetica-Bold" size="10.0" />
<lineStyle kind="LINEBELOW" colorName="#000000" start="0,0" stop="-1,1" thickness="1"/>
</blockTableStyle>
<blockTableStyle id="Table2">
<blockTopPadding start="0,0" stop="-1,0" length="10"/>
<blockAlignment value="LEFT"/>
<lineStyle kind="LINEBELOW" colorName="#666666" start="1,1" stop="1,1"/>
</blockTableStyle>
<blockTableStyle id="Table2">
<blockValign value="TOP"/>
</blockTableStyle>
<blockTableStyle id="Table3">
<blockValign value="TOP"/>
</blockTableStyle>
<blockTableStyle id="Table2_Report">
<blockAlignment value="LEFT"/>
<blockValign value="TOP"/>
<lineStyle kind="GRID" colorName="#cccccc"/>
</blockTableStyle>
<blockTableStyle id="Table1_main">
<blockAlignment value="LEFT"/>
<blockValign value="TOP"/>
</blockTableStyle>
</stylesheet>
<images/>
<story>
@ -231,9 +219,11 @@
[[ repeatIn(get_lines(data), 'a') ]]
[[ (a.get('level') &lt;&gt; 0) or removeParentNode('tr') ]]
[[ setTag('tr','tr',{'style': 'Table'+str(min(3,'level' in a and a.get('level') or 1))}) ]]
<td><para style="terp_level_3_name">[[ (a.get('account_type') =='view' and a.get('level') &gt;= 3) and setTag('para','para',{'style': 'terp_level_'+str(min(3,a.get('level')))+'_name_bold'}) or setTag('para','para',{'style': 'terp_level_'+str(min(4,a.get('level')))+'_name'}) ]][[ a.get('name') ]]</para></td>
<td>[[ (a.get('level') &lt;&gt;2) or removeParentNode('td') ]]<para style="terp_level_3_balance">[[ (a.get('account_type') =='view' and a.get('level') &gt;= 3) and setTag('para','para',{'style': 'terp_level_3_balance_bold'}) or setTag('para','para',{'style': 'terp_level_'+str(min(3,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]]</para></td>
<td>[[ a.get('level') == 2 or removeParentNode('td') ]]<para style="terp_level_2_balance"><u>[[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]]</u></para></td>
<td><para style="terp_level_3_name">[[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_name'}) ]][[ a.get('name') ]]</para></td>
<td>[[ a.get('account_type') =='view' or removeParentNode('td') ]]
<para style="terp_level_3_balance"><u>[[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]]</u></para></td>
<td>[[ a.get('account_type') &lt;&gt;'view' or removeParentNode('td') ]]
<para style="terp_level_3_balance">[[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]]</para></td>
</tr>
</blockTable>
<para style="Standard">
@ -256,11 +246,15 @@
[[ repeatIn(get_lines(data), 'a') ]]
[[ (a.get('level') &lt;&gt; 0) or removeParentNode('tr') ]]
[[ setTag('tr','tr',{'style': 'Table'+str(min(3,'level' in a and a.get('level') or 1))}) ]]
<td><para style="terp_level_3_name">[[ (a.get('account_type') =='view' and a.get('level') &gt;= 3) and setTag('para','para',{'style': 'terp_level_'+str(min(3,a.get('level')))+'_name_bold'}) or setTag('para','para',{'style': 'terp_level_'+str(min(4,a.get('level')))+'_name'}) ]][[ a.get('name') ]]</para></td>
<td>[[ (a.get('level') &lt;&gt;2) or removeParentNode('td') ]]<para style="terp_level_3_balance">[[ (a.get('account_type') =='view' and a.get('level') &gt;= 3) and setTag('para','para',{'style': 'terp_level_3_balance_bold'}) or setTag('para','para',{'style': 'terp_level_'+str(min(3,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]]</para></td>
<td>[[ a.get('level') == 2 or removeParentNode('td') ]]<para style="terp_level_2_balance"><u>[[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]]</u></para></td>
<td>[[ (a.get('level') &lt;&gt;2) or removeParentNode('td') ]]<para style="terp_level_3_balance">[[ (a.get('account_type') =='view' and a.get('level') &gt;= 3) and setTag('para','para',{'style': 'terp_level_3_balance_bold'}) or setTag('para','para',{'style': 'terp_level_'+str(min(3,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance_cmp'), currency_obj = company.currency_id) ]]</para></td>
<td>[[ a.get('level') == 2 or removeParentNode('td') ]]<para style="terp_level_2_balance"><u>[[ formatLang(a.get('balance_cmp'), currency_obj = company.currency_id) ]]</u></para></td>
<td><para style="terp_level_3_name">[[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_name'}) ]][[ a.get('name') ]]</para></td>
<td>[[ a.get('account_type') =='view' or removeParentNode('td') ]]
<para style="terp_level_3_balance"><u>[[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]]</u></para></td>
<td>[[ a.get('account_type') &lt;&gt;'view' or removeParentNode('td') ]]
<para style="terp_level_3_balance">[[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance'), currency_obj = company.currency_id) ]]</para></td>
<td>[[ a.get('account_type') =='view' or removeParentNode('td') ]]
<para style="terp_level_3_balance"><u>[[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance_cmp'), currency_obj = company.currency_id) ]]</u></para></td>
<td>[[ a.get('account_type') &lt;&gt;'view' or removeParentNode('td') ]]
<para style="terp_level_3_balance">[[ setTag('para','para',{'style': 'terp_level_'+str(min(6,a.get('level')))+'_balance'}) ]][[ formatLang(a.get('balance_cmp'), currency_obj = company.currency_id) ]]</para></td>
</tr>
</blockTable>
<para style="Standard">

View File

@ -105,6 +105,7 @@ class account_fiscalyear_close(osv.osv_memory):
'name': '/',
'ref': '',
'period_id': period.id,
'date': period.date_start,
'journal_id': new_journal.id,
}
move_id = obj_acc_move.create(cr, uid, vals, context=context)
@ -118,7 +119,6 @@ class account_fiscalyear_close(osv.osv_memory):
AND a.type != 'view'
AND t.close_method = %s''', ('unreconciled', ))
account_ids = map(lambda x: x[0], cr.fetchall())
if account_ids:
cr.execute('''
INSERT INTO account_move_line (
@ -130,11 +130,11 @@ class account_fiscalyear_close(osv.osv_memory):
(SELECT name, create_uid, create_date, write_uid, write_date,
statement_id, %s,currency_id, date_maturity, partner_id,
blocked, credit, 'draft', debit, ref, account_id,
%s, date, %s, amount_currency, quantity, product_id, company_id
%s, (%s) AS date, %s, amount_currency, quantity, product_id, company_id
FROM account_move_line
WHERE account_id IN %s
AND ''' + query_line + '''
AND reconcile_id IS NULL)''', (new_journal.id, period.id, move_id, tuple(account_ids),))
AND reconcile_id IS NULL)''', (new_journal.id, period.id, period.date_start, move_id, tuple(account_ids),))
#We have also to consider all move_lines that were reconciled
#on another fiscal year, and report them too
@ -149,7 +149,7 @@ class account_fiscalyear_close(osv.osv_memory):
b.name, b.create_uid, b.create_date, b.write_uid, b.write_date,
b.statement_id, %s, b.currency_id, b.date_maturity,
b.partner_id, b.blocked, b.credit, 'draft', b.debit,
b.ref, b.account_id, %s, b.date, %s, b.amount_currency,
b.ref, b.account_id, %s, (%s) AS date, %s, b.amount_currency,
b.quantity, b.product_id, b.company_id
FROM account_move_line b
WHERE b.account_id IN %s
@ -157,7 +157,7 @@ class account_fiscalyear_close(osv.osv_memory):
AND b.period_id IN ('''+fy_period_set+''')
AND b.reconcile_id IN (SELECT DISTINCT(reconcile_id)
FROM account_move_line a
WHERE a.period_id IN ('''+fy2_period_set+''')))''', (new_journal.id, period.id, move_id, tuple(account_ids),))
WHERE a.period_id IN ('''+fy2_period_set+''')))''', (new_journal.id, period.id, period.date_start, move_id, tuple(account_ids),))
#2. report of the accounts with defferal method == 'detail'
cr.execute('''
@ -180,11 +180,11 @@ class account_fiscalyear_close(osv.osv_memory):
(SELECT name, create_uid, create_date, write_uid, write_date,
statement_id, %s,currency_id, date_maturity, partner_id,
blocked, credit, 'draft', debit, ref, account_id,
%s, date, %s, amount_currency, quantity, product_id, company_id
%s, (%s) AS date, %s, amount_currency, quantity, product_id, company_id
FROM account_move_line
WHERE account_id IN %s
AND ''' + query_line + ''')
''', (new_journal.id, period.id, move_id, tuple(account_ids),))
''', (new_journal.id, period.id, period.date_start, move_id, tuple(account_ids),))
#3. report of the accounts with defferal method == 'balance'

View File

@ -29,8 +29,14 @@ class account_common_report(osv.osv_memory):
_name = "account.common.report"
_description = "Account Common Report"
def onchange_chart_id(self, cr, uid, ids, chart_account_id=False, context=None):
if chart_account_id:
company_id = self.pool.get('account.account').browse(cr, uid, chart_account_id, context=context).company_id.id
return {'value': {'company_id': company_id}}
_columns = {
'chart_account_id': fields.many2one('account.account', 'Chart of Account', help='Select Charts of Accounts', required=True, domain = [('parent_id','=',False)]),
'company_id': fields.related('chart_account_id', 'company_id', type='many2one', relation='res.company', string='Company', readonly=True),
'fiscalyear_id': fields.many2one('account.fiscalyear', 'Fiscal Year', help='Keep empty for all open fiscal year'),
'filter': fields.selection([('filter_no', 'No Filters'), ('filter_date', 'Date'), ('filter_period', 'Periods')], "Filter by", required=True),
'period_from': fields.many2one('account.period', 'Start Period'),
@ -44,6 +50,22 @@ class account_common_report(osv.osv_memory):
}
def _check_company_id(self, cr, uid, ids, context=None):
for wiz in self.browse(cr, uid, ids, context=context):
company_id = wiz.company_id.id
if wiz.fiscalyear_id and company_id != wiz.fiscalyear_id.company_id.id:
return False
if wiz.period_from and company_id != wiz.period_from.company_id.id:
return False
if wiz.period_to and company_id != wiz.period_to.company_id.id:
return False
return True
_constraints = [
(_check_company_id, 'The fiscalyear, periods or chart of account chosen have to belong to the same company.', ['chart_account_id','fiscalyear_id','period_from','period_to']),
]
def fields_view_get(self, cr, uid, view_id=None, view_type='form', context=None, toolbar=False, submenu=False):
res = super(account_common_report, self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar, submenu=False)
if context.get('active_model', False) == 'account.account' and view_id:

View File

@ -10,8 +10,9 @@
<form string="Report Options">
<label nolabel="1" string=""/>
<newline/>
<field name="chart_account_id" widget='selection'/>
<field name="fiscalyear_id"/>
<field name="chart_account_id" widget='selection' on_change="onchange_chart_id(chart_account_id, context)"/>
<field name="company_id" invisible="1"/>
<field name="fiscalyear_id" domain="[('company_id','=',company_id)]"/>
<field name="target_move"/>
<notebook tabpos="up" colspan="4">
<page string="Filters" name="filters">
@ -20,7 +21,7 @@
<field name="date_from" attrs="{'readonly':[('filter', '!=', 'filter_date')], 'required':[('filter', '=', 'filter_date')]}" colspan="4"/>
<field name="date_to" attrs="{'readonly':[('filter', '!=', 'filter_date')], 'required':[('filter', '=', 'filter_date')]}" colspan="4"/>
<separator string="Periods" colspan="4"/>
<field name="period_from" domain="[('fiscalyear_id', '=', fiscalyear_id)]" attrs="{'readonly':[('filter','!=','filter_period')], 'required':[('filter', '=', 'filter_period')]}" colspan="4"/>
<field name="period_from" domain="[('fiscalyear_id', '=', fiscalyear_id)]" attrs="{'readonly':[('filter','!=','filter_period')], 'required':[('filter', '=', 'filter_period')]}" colspan="4"/>
<field name="period_to" domain="[('fiscalyear_id', '=', fiscalyear_id)]" attrs="{'readonly':[('filter','!=','filter_period')], 'required':[('filter', '=', 'filter_period')]}" colspan="4"/>
</page>
<page string="Journals" name="journal_ids">

View File

@ -23,6 +23,7 @@
"version" : "1.1",
"author" : "OpenERP SA",
"category": 'Accounting & Finance',
"sequence": 10,
'complexity': "normal",
"description": """
Accounting Access Rights.

View File

@ -36,7 +36,7 @@ user-wise as well as month wise.
"author" : "Camptocamp",
"website" : "http://www.camptocamp.com/",
"images" : ["images/bill_tasks_works.jpeg","images/overpassed_accounts.jpeg"],
"depends" : ["hr_timesheet_invoice"],
"depends" : ["hr_timesheet_invoice", "sale"], #although sale is technically not required to install this module, all menuitems are located under 'Sales' application
"init_xml" : [],
"update_xml": [
"security/ir.model.access.csv",

View File

@ -33,9 +33,7 @@ class account_analytic_account(osv.osv):
def _analysis_all(self, cr, uid, ids, fields, arg, context=None):
dp = 2
res = dict([(i, {}) for i in ids])
parent_ids = tuple(self.search(cr, uid, [('parent_id', 'child_of', ids)], context=context))
res.update(dict([(i, {}) for i in parent_ids]))
parent_ids = tuple(ids) #We don't want consolidation for each of these fields because those complex computation is resource-greedy.
accounts = self.browse(cr, uid, ids, context=context)
for f in fields:
@ -72,10 +70,6 @@ class account_analytic_account(osv.osv):
if account_id not in res:
res[account_id] = {}
res[account_id][f] = sum
for account in accounts:
for child in account.child_ids:
if res[account.id][f] < res.get(child.id, {}).get(f):
res[account.id][f] = res.get(child.id, {}).get(f, False)
elif f == 'ca_to_invoice':
for id in ids:
res[id][f] = 0.0
@ -111,13 +105,6 @@ class account_analytic_account(osv.osv):
res[account_id] = {}
res[account_id][f] = round(sum, dp)
for account in accounts:
#res.setdefault(account.id, 0.0)
res2.setdefault(account.id, 0.0)
for child in account.child_ids:
if child.id != account.id:
res[account.id][f] += res.get(child.id, {}).get(f, 0.0)
res2[account.id] += res2.get(child.id, 0.0)
# sum both result on account_id
for id in ids:
res[id][f] = round(res.get(id, {}).get(f, 0.0), dp) + round(res2.get(id, 0.0), 2)
@ -135,10 +122,6 @@ class account_analytic_account(osv.osv):
GROUP BY account_analytic_line.account_id",(parent_ids,))
for account_id, lid in cr.fetchall():
res[account_id][f] = lid
for account in accounts:
for child in account.child_ids:
if res[account.id][f] < res.get(child.id, {}).get(f):
res[account.id][f] = res.get(child.id, {}).get(f, False)
elif f == 'last_worked_date':
for id in ids:
res[id][f] = False
@ -152,10 +135,6 @@ class account_analytic_account(osv.osv):
if account_id not in res:
res[account_id] = {}
res[account_id][f] = lwd
for account in accounts:
for child in account.child_ids:
if res[account.id][f] < res.get(child.id, {}).get(f):
res[account.id][f] = res.get(child.id, {}).get(f, False)
elif f == 'hours_qtt_non_invoiced':
for id in ids:
res[id][f] = 0.0
@ -173,10 +152,6 @@ class account_analytic_account(osv.osv):
if account_id not in res:
res[account_id] = {}
res[account_id][f] = round(sua, dp)
for account in accounts:
for child in account.child_ids:
if account.id != child.id:
res[account.id][f] += res.get(child.id, {}).get(f, 0.0)
for id in ids:
res[id][f] = round(res[id][f], dp)
elif f == 'hours_quantity':
@ -195,19 +170,12 @@ class account_analytic_account(osv.osv):
if account_id not in res:
res[account_id] = {}
res[account_id][f] = round(hq, dp)
for account in accounts:
for child in account.child_ids:
if account.id != child.id:
if account.id not in res:
res[account.id] = {f: 0.0}
res[account.id][f] += res.get(child.id, {}).get(f, 0.0)
for id in ids:
res[id][f] = round(res[id][f], dp)
elif f == 'ca_theorical':
# TODO Take care of pricelist and purchase !
for id in ids:
res[id][f] = 0.0
res2 = {}
# Warning
# This computation doesn't take care of pricelist !
# Just consider list_price
@ -232,31 +200,15 @@ class account_analytic_account(osv.osv):
AND account_analytic_journal.type IN ('purchase', 'general')
GROUP BY account_analytic_line.account_id""",(parent_ids,))
for account_id, sum in cr.fetchall():
res2[account_id] = round(sum, dp)
for account in accounts:
res2.setdefault(account.id, 0.0)
for child in account.child_ids:
if account.id != child.id:
if account.id not in res:
res[account.id] = {f: 0.0}
res[account.id][f] += res.get(child.id, {}).get(f, 0.0)
res[account.id][f] += res2.get(child.id, 0.0)
# sum both result on account_id
for id in ids:
res[id][f] = round(res[id][f], dp) + round(res2.get(id, 0.0), dp)
res[account_id][f] = round(sum, dp)
return res
def _ca_invoiced_calc(self, cr, uid, ids, name, arg, context=None):
res = {}
res_final = {}
child_ids = tuple(self.search(cr, uid, [('parent_id', 'child_of', ids)], context=context))
child_ids = tuple(ids) #We don't want consolidation for each of these fields because those complex computation is resource-greedy.
for i in child_ids:
res[i] = {}
for n in [name]:
res[i][n] = 0.0
res[i] = 0.0
if not child_ids:
return res
@ -269,24 +221,18 @@ class account_analytic_account(osv.osv):
AND account_analytic_journal.type = 'sale' \
GROUP BY account_analytic_line.account_id", (child_ids,))
for account_id, sum in cr.fetchall():
res[account_id][name] = round(sum,2)
data = self._compute_level_tree(cr, uid, ids, child_ids, res, [name], context=context)
for i in data:
res_final[i] = data[i][name]
res[account_id] = round(sum,2)
res_final = res
return res_final
def _total_cost_calc(self, cr, uid, ids, name, arg, context=None):
res = {}
res_final = {}
child_ids = tuple(self.search(cr, uid, [('parent_id', 'child_of', ids)], context=context))
child_ids = tuple(ids) #We don't want consolidation for each of these fields because those complex computation is resource-greedy.
for i in child_ids:
res[i] = {}
for n in [name]:
res[i][n] = 0.0
res[i] = 0.0
if not child_ids:
return res
if child_ids:
cr.execute("""SELECT account_analytic_line.account_id, COALESCE(SUM(amount), 0.0) \
FROM account_analytic_line \
@ -296,10 +242,8 @@ class account_analytic_account(osv.osv):
AND amount<0 \
GROUP BY account_analytic_line.account_id""",(child_ids,))
for account_id, sum in cr.fetchall():
res[account_id][name] = round(sum,2)
data = self._compute_level_tree(cr, uid, ids, child_ids, res, [name], context)
for i in data:
res_final[i] = data[i][name]
res[account_id] = round(sum,2)
res_final = res
return res_final
def _remaining_hours_calc(self, cr, uid, ids, name, arg, context=None):
@ -378,7 +322,7 @@ class account_analytic_account(osv.osv):
result = dict.fromkeys(ids, 0)
for record in self.browse(cr, uid, ids, context=context):
if record.quantity_max > 0.0:
result[record.id] = int(record.quantity >= record.quantity_max)
result[record.id] = int(record.hours_quantity >= record.quantity_max)
else:
result[record.id] = 0
return result
@ -455,7 +399,7 @@ class account_analytic_account_summary_user(osv.osv):
max_user = cr.fetchone()[0]
account_ids = [int(str(x/max_user - (x%max_user == 0 and 1 or 0))) for x in ids]
user_ids = [int(str(x-((x/max_user - (x%max_user == 0 and 1 or 0)) *max_user))) for x in ids]
parent_ids = tuple(account_obj.search(cr, uid, [('parent_id', 'child_of', account_ids)], context=context))
parent_ids = tuple(account_ids) #We don't want consolidation for each of these fields because those complex computation is resource-greedy.
if parent_ids:
cr.execute('SELECT id, unit_amount ' \
'FROM account_analytic_analysis_summary_user ' \
@ -463,20 +407,13 @@ class account_analytic_account_summary_user(osv.osv):
'AND "user" IN %s',(parent_ids, tuple(user_ids),))
for sum_id, unit_amount in cr.fetchall():
res[sum_id] = unit_amount
for obj_id in ids:
res.setdefault(obj_id, 0.0)
for child_id in account_obj.search(cr, uid,
[('parent_id', 'child_of', [int(str(obj_id/max_user - (obj_id%max_user == 0 and 1 or 0)))])]):
if child_id != int(str(obj_id/max_user - (obj_id%max_user == 0 and 1 or 0))):
res[obj_id] += res.get((child_id * max_user) + obj_id -((obj_id/max_user - (obj_id%max_user == 0 and 1 or 0)) * max_user), 0.0)
for id in ids:
res[id] = round(res.get(id, 0.0), 2)
return res
_columns = {
'account_id': fields.many2one('account.analytic.account', 'Analytic Account', readonly=True),
'unit_amount': fields.function(_unit_amount, type='float',
string='Total Time'),
'unit_amount': fields.float('Total Time'),
'user': fields.many2one('res.users', 'User'),
}
@ -516,96 +453,6 @@ class account_analytic_account_summary_user(osv.osv):
'GROUP BY u."user", u.account_id, u.max_user' \
')')
def _read_flat(self, cr, user, ids, fields, context=None, load='_classic_read'):
if context is None:
context = {}
if not ids:
return []
if fields is None:
fields = self._columns.keys()
res_trans_obj = self.pool.get('ir.translation')
# construct a clause for the rules:
d1, d2, tables = self.pool.get('ir.rule').domain_get(cr, user, self._name, 'read', context=context)
# all inherited fields + all non inherited fields for which the attribute whose name is in load is True
fields_pre = filter(lambda x: x in self._columns and getattr(self._columns[x],'_classic_write'), fields) + self._inherits.values()
res = []
cr.execute('SELECT MAX(id) FROM res_users')
max_user = cr.fetchone()[0]
if fields_pre:
fields_pre2 = map(lambda x: (x in ('create_date', 'write_date')) and ('date_trunc(\'second\', '+x+') as '+x) or '"'+x+'"', fields_pre)
for i in range(0, len(ids), cr.IN_MAX):
sub_ids = ids[i:i+cr.IN_MAX]
if d1:
cr.execute('SELECT %s FROM \"%s\" WHERE id IN (%s) ' \
'AND account_id IN (%s) ' \
'AND "user" IN (%s) AND %s ORDER BY %s' % \
(','.join(fields_pre2 + ['id']), self._table,
','.join([str(x) for x in sub_ids]),
','.join([str(x/max_user - (x%max_user == 0 and 1 or 0)) for x in sub_ids]),
','.join([str(x-((x/max_user - (x%max_user == 0 and 1 or 0)) *max_user)) for x in sub_ids]), d1,
self._order),d2)
if not cr.rowcount == len({}.fromkeys(sub_ids)):
raise except_orm(_('AccessError'),
_('You try to bypass an access rule (Document type: %s).') % self._description)
else:
cr.execute('SELECT %s FROM \"%s\" WHERE id IN (%s) ' \
'AND account_id IN (%s) ' \
'AND "user" IN (%s) ORDER BY %s' % \
(','.join(fields_pre2 + ['id']), self._table,
','.join([str(x) for x in sub_ids]),
','.join([str(x/max_user - (x%max_user == 0 and 1 or 0)) for x in sub_ids]),
','.join([str(x-((x/max_user - (x%max_user == 0 and 1 or 0)) *max_user)) for x in sub_ids]),
self._order))
res.extend(cr.dictfetchall())
else:
res = map(lambda x: {'id': x}, ids)
for f in fields_pre:
if self._columns[f].translate:
ids = map(lambda x: x['id'], res)
res_trans = res_trans_obj._get_ids(cr, user, self._name+','+f, 'model', context.get('lang', False) or 'en_US', ids)
for r in res:
r[f] = res_trans.get(r['id'], False) or r[f]
for table in self._inherits:
col = self._inherits[table]
cols = intersect(self._inherit_fields.keys(), fields)
if not cols:
continue
res2 = self.pool.get(table).read(cr, user, [x[col] for x in res], cols, context, load)
res3 = {}
for r in res2:
res3[r['id']] = r
del r['id']
for record in res:
record.update(res3[record[col]])
if col not in fields:
del record[col]
# all fields which need to be post-processed by a simple function (symbol_get)
fields_post = filter(lambda x: x in self._columns and self._columns[x]._symbol_get, fields)
if fields_post:
# maybe it would be faster to iterate on the fields then on res, so that we wouldn't need
# to get the _symbol_get in each occurence
for r in res:
for f in fields_post:
r[f] = self.columns[f]._symbol_get(r[f])
ids = map(lambda x: x['id'], res)
# all non inherited fields for which the attribute whose name is in load is False
fields_post = filter(lambda x: x in self._columns and not getattr(self._columns[x], load), fields)
for f in fields_post:
# get the value of that field for all records/ids
res2 = self._columns[f].get(cr, self, ids, f, user, context=context, values=res)
for record in res:
record[f] = res2[record['id']]
return res
account_analytic_account_summary_user()
class account_analytic_account_summary_month(osv.osv):
@ -614,32 +461,9 @@ class account_analytic_account_summary_month(osv.osv):
_auto = False
_rec_name = 'month'
def _unit_amount(self, cr, uid, ids, name, arg, context=None):
res = {}
account_obj = self.pool.get('account.analytic.account')
account_ids = [int(str(int(x))[:-6]) for x in ids]
month_ids = [int(str(int(x))[-6:]) for x in ids]
parent_ids = tuple(account_obj.search(cr, uid, [('parent_id', 'child_of', account_ids)], context=context))
if parent_ids:
cr.execute('SELECT id, unit_amount ' \
'FROM account_analytic_analysis_summary_month ' \
'WHERE account_id IN %s ' \
'AND month_id IN %s ',(parent_ids, tuple(month_ids),))
for sum_id, unit_amount in cr.fetchall():
res[sum_id] = unit_amount
for obj_id in ids:
res.setdefault(obj_id, 0.0)
for child_id in account_obj.search(cr, uid,
[('parent_id', 'child_of', [int(str(int(obj_id))[:-6])])]):
if child_id != int(str(int(obj_id))[:-6]):
res[obj_id] += res.get(int(child_id * 1000000 + int(str(int(obj_id))[-6:])), 0.0)
for id in ids:
res[id] = round(res.get(id, 0.0), 2)
return res
_columns = {
'account_id': fields.many2one('account.analytic.account', 'Analytic Account', readonly=True),
'unit_amount': fields.function(_unit_amount, type='float', string='Total Time'),
'unit_amount': fields.float('Total Time'),
'month': fields.char('Month', size=32, readonly=True),
}
@ -690,93 +514,6 @@ class account_analytic_account_summary_month(osv.osv):
'GROUP BY d.month, d.account_id ' \
')')
def _read_flat(self, cr, user, ids, fields, context=None, load='_classic_read'):
if context is None:
context = {}
if not ids:
return []
if fields is None:
fields = self._columns.keys()
res_trans_obj = self.pool.get('ir.translation')
# construct a clause for the rules:
d1, d2, tables= self.pool.get('ir.rule').domain_get(cr, user, self._name)
# all inherited fields + all non inherited fields for which the attribute whose name is in load is True
fields_pre = filter(lambda x: x in self._columns and getattr(self._columns[x],'_classic_write'), fields) + self._inherits.values()
res = []
if fields_pre:
fields_pre2 = map(lambda x: (x in ('create_date', 'write_date')) and ('date_trunc(\'second\', '+x+') as '+x) or '"'+x+'"', fields_pre)
for i in range(0, len(ids), cr.IN_MAX):
sub_ids = ids[i:i+cr.IN_MAX]
if d1:
cr.execute('SELECT %s FROM \"%s\" WHERE id IN (%s) ' \
'AND account_id IN (%s) ' \
'AND month_id IN (%s) AND %s ORDER BY %s' % \
(','.join(fields_pre2 + ['id']), self._table,
','.join([str(x) for x in sub_ids]),
','.join([str(x)[:-6] for x in sub_ids]),
','.join([str(x)[-6:] for x in sub_ids]), d1,
self._order),d2)
if not cr.rowcount == len({}.fromkeys(sub_ids)):
raise except_orm(_('AccessError'),
_('You try to bypass an access rule (Document type: %s).') % self._description)
else:
cr.execute('SELECT %s FROM \"%s\" WHERE id IN (%s) ' \
'AND account_id IN (%s) ' \
'AND month_id IN (%s) ORDER BY %s' % \
(','.join(fields_pre2 + ['id']), self._table,
','.join([str(x) for x in sub_ids]),
','.join([str(x)[:-6] for x in sub_ids]),
','.join([str(x)[-6:] for x in sub_ids]),
self._order))
res.extend(cr.dictfetchall())
else:
res = map(lambda x: {'id': x}, ids)
for f in fields_pre:
if self._columns[f].translate:
ids = map(lambda x: x['id'], res)
res_trans = res_trans_obj._get_ids(cr, user, self._name+','+f, 'model', context.get('lang', False) or 'en_US', ids)
for r in res:
r[f] = res_trans.get(r['id'], False) or r[f]
for table in self._inherits:
col = self._inherits[table]
cols = intersect(self._inherit_fields.keys(), fields)
if not cols:
continue
res2 = self.pool.get(table).read(cr, user, [x[col] for x in res], cols, context, load)
res3 = {}
for r in res2:
res3[r['id']] = r
del r['id']
for record in res:
record.update(res3[record[col]])
if col not in fields:
del record[col]
# all fields which need to be post-processed by a simple function (symbol_get)
fields_post = filter(lambda x: x in self._columns and self._columns[x]._symbol_get, fields)
if fields_post:
# maybe it would be faster to iterate on the fields then on res, so that we wouldn't need
# to get the _symbol_get in each occurence
for r in res:
for f in fields_post:
r[f] = self.columns[f]._symbol_get(r[f])
ids = map(lambda x: x['id'], res)
# all non inherited fields for which the attribute whose name is in load is False
fields_post = filter(lambda x: x in self._columns and not getattr(self._columns[x], load), fields)
for f in fields_post:
# get the value of that field for all records/ids
res2 = self._columns[f].get(cr, self, ids, f, user, context=context, values=res)
for record in res:
record[f] = res2[record['id']]
return res
account_analytic_account_summary_month()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -93,6 +93,7 @@
<field name="hours_quantity"/>
<field name="hours_qtt_non_invoiced"/>
<field name="remaining_hours"/>
<field name="quantity_max"/>
</field>
</field>
</record>

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2009-02-03 06:22+0000\n"
"Last-Translator: <>\n"
"PO-Revision-Date: 2012-01-05 20:55+0000\n"
"Last-Translator: kifcaliph <kifcaliph@hotmail.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: 2011-12-23 06:50+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-06 04:49+0000\n"
"X-Generator: Launchpad (build 14637)\n"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
@ -211,7 +211,7 @@ msgstr ""
#: field:account.analytic.account,user_ids:0
#: field:account_analytic_analysis.summary.user,user:0
msgid "User"
msgstr ""
msgstr "المستخدم"
#. module: account_analytic_analysis
#: help:account.analytic.account,real_margin_rate:0
@ -260,7 +260,7 @@ msgstr ""
msgid ""
"Error! The currency has to be the same as the currency of the selected "
"company"
msgstr ""
msgstr "خطأ! العملة لابد و أن تكون مثل العملة للشركة المختارة"
#. module: account_analytic_analysis
#: help:account.analytic.account,ca_invoiced:0
@ -275,7 +275,7 @@ msgstr ""
#. module: account_analytic_analysis
#: constraint:account.analytic.account:0
msgid "Error! You can not create recursive analytic accounts."
msgstr ""
msgstr "خطأ! لا يمكنك إنشاء حسابات تحليلية متكررة."
#. module: account_analytic_analysis
#: field:account.analytic.account,remaining_ca:0
@ -315,7 +315,7 @@ msgstr ""
#: field:account.analytic.account,month_ids:0
#: field:account_analytic_analysis.summary.month,month:0
msgid "Month"
msgstr ""
msgstr "شهر"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
@ -323,7 +323,7 @@ msgstr ""
#: field:account_analytic_analysis.summary.user,account_id:0
#: model:ir.model,name:account_analytic_analysis.model_account_analytic_account
msgid "Analytic Account"
msgstr ""
msgstr "حساب تحليلي"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue_all
@ -362,7 +362,7 @@ msgstr ""
#: field:account_analytic_analysis.summary.month,unit_amount:0
#: field:account_analytic_analysis.summary.user,unit_amount:0
msgid "Total Time"
msgstr ""
msgstr "إجمالي الوقت"
#. module: account_analytic_analysis
#: help:account.analytic.account,total_cost:0
@ -370,3 +370,9 @@ msgid ""
"Total of costs for this account. It includes real costs (from invoices) and "
"indirect costs, like time spent on timesheets."
msgstr ""
#~ msgid "Remaining Hours"
#~ msgstr "الساعات المتبقية"
#~ msgid "Billing"
#~ msgstr "عمليات الفواتير"

View File

@ -7,25 +7,24 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev_rc3\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-13 12:36+0000\n"
"Last-Translator: Thorsten Vocks (OpenBig.org) <thorsten.vocks@big-"
"consulting.net>\n"
"PO-Revision-Date: 2012-01-13 20:36+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\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: 2011-12-23 06:50+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "No Account Manager"
msgstr ""
msgstr "Kein Konto Mananger"
#. module: account_analytic_analysis
#: field:account.analytic.account,revenue_per_hour:0
msgid "Revenue per Time (real)"
msgstr ""
msgstr "Erträge je Zeiteinheit (real)"
#. module: account_analytic_analysis
#: help:account.analytic.account,remaining_ca:0
@ -44,11 +43,13 @@ msgid ""
"The contracts to be renewed because the deadline is passed or the working "
"hours are higher than the allocated hours"
msgstr ""
"Der Vertrag muss erneuert werden, das die Frist abgelaufen ist oder die "
"geplanten Stunden überschritten sind"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Pending contracts to renew with your customer"
msgstr ""
msgstr "Verträge, die zu erneuern sind"
#. module: account_analytic_analysis
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:551
@ -60,22 +61,22 @@ msgstr "Verbindungsfehler"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Analytic Accounts with a past deadline in one month."
msgstr ""
msgstr "Analyse Konten mit Fristablauf in einem Monat"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Group By..."
msgstr ""
msgstr "Gruppiere nach..."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "End Date"
msgstr ""
msgstr "Enddatum"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Create Invoice"
msgstr ""
msgstr "Erzeuge Rechnung"
#. module: account_analytic_analysis
#: field:account.analytic.account,last_invoice_date:0
@ -93,16 +94,18 @@ msgid ""
"Number of time you spent on the analytic account (from timesheet). It "
"computes quantities on all journal of type 'general'."
msgstr ""
"Anzahl der Zeiten, die auf dieses Analyse Konto gebucht wurden. Es werden "
"alle Summen der Journale 'general' gebildet"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Contracts in progress"
msgstr ""
msgstr "Verträge in Bearbeitung"
#. module: account_analytic_analysis
#: field:account.analytic.account,is_overdue_quantity:0
msgid "Overdue Quantity"
msgstr ""
msgstr "Überfällige Mengen"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue
@ -114,6 +117,12 @@ msgid ""
"pending accounts and reopen or close the according to the negotiation with "
"the customer."
msgstr ""
"Hier finden Sie alle Verträge die zu überarbeiten sind, weil die Frist "
"abgelaufen ist oder die kontierte Zeit größer als die geplante ist.\r\n"
"OpenERP setzt diese Analysekonten automatisch auf \"schwebend\", um während "
"der Zeitaufzeichnung eine Warnung generieren zu können. Verkäufer sollen "
"alle schwebenden Verträge überarbeiten und wieder eröffnen oder schließen, "
"je nach Verhandlungsergebnis mit dem Kunden"
#. module: account_analytic_analysis
#: field:account.analytic.account,ca_theorical:0
@ -123,7 +132,7 @@ msgstr "Theoretische Einnahmen"
#. module: account_analytic_analysis
#: field:account.analytic.account,hours_qtt_non_invoiced:0
msgid "Uninvoiced Time"
msgstr ""
msgstr "nicht verrechnete Zeit"
#. module: account_analytic_analysis
#: help:account.analytic.account,last_worked_invoiced_date:0
@ -137,7 +146,7 @@ msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "To Renew"
msgstr ""
msgstr "Zu Erneuern"
#. module: account_analytic_analysis
#: field:account.analytic.account,last_worked_date:0
@ -147,24 +156,24 @@ msgstr "vorheriger Arbeitstag"
#. module: account_analytic_analysis
#: field:account.analytic.account,hours_qtt_invoiced:0
msgid "Invoiced Time"
msgstr ""
msgstr "Verrechnete Zeit"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid ""
"A contract in OpenERP is an analytic account having a partner set on it."
msgstr ""
msgstr "Ein Vertrag ist ein Analyse Konto mit Partner"
#. module: account_analytic_analysis
#: field:account.analytic.account,remaining_hours:0
msgid "Remaining Time"
msgstr ""
msgstr "Verbleibende Zeit"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue
msgid "Contracts to Renew"
msgstr ""
msgstr "Zu erneuernde Verträge"
#. module: account_analytic_analysis
#: help:account.analytic.account,hours_qtt_non_invoiced:0
@ -172,6 +181,8 @@ msgid ""
"Number of time (hours/days) (from journal of type 'general') that can be "
"invoiced if you invoice based on analytic account."
msgstr ""
"verrechenbare Zeiten (Stunden/Tage) vom Journal 'General', wenn die "
"Verrechnung auf Analyse Konten beruht"
#. module: account_analytic_analysis
#: field:account.analytic.account,theorical_margin:0
@ -181,7 +192,7 @@ msgstr "Theoretische Marge"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid " +1 Month"
msgstr ""
msgstr " +1 Monat"
#. module: account_analytic_analysis
#: help:account.analytic.account,ca_theorical:0
@ -197,7 +208,7 @@ msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Pending"
msgstr ""
msgstr "Unerledigt"
#. module: account_analytic_analysis
#: field:account.analytic.account,ca_to_invoice:0
@ -212,7 +223,7 @@ msgstr "Berechnet durch die Formel: Rechnungsbetrag - Gesamt Kosten."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Parent"
msgstr ""
msgstr "Elternteil"
#. module: account_analytic_analysis
#: field:account.analytic.account,user_ids:0
@ -251,7 +262,7 @@ msgstr "Datum letzte Berechnung"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Contract"
msgstr ""
msgstr "Vertrag"
#. module: account_analytic_analysis
#: field:account.analytic.account,real_margin_rate:0
@ -293,7 +304,7 @@ msgstr "Verbleibender Gewinn"
#. module: account_analytic_analysis
#: help:account.analytic.account,remaining_hours:0
msgid "Computed using the formula: Maximum Time - Total Time"
msgstr ""
msgstr "Berechnet als \"maximaler Zeit\" - \"Gesamte Zeit\""
#. module: account_analytic_analysis
#: help:account.analytic.account,hours_qtt_invoiced:0
@ -301,6 +312,8 @@ msgid ""
"Number of time (hours/days) that can be invoiced plus those that already "
"have been invoiced."
msgstr ""
"Anzahl von Stunden oder Tagen, die verrechnet werden können, inklusiver der "
"bereits verrechneten"
#. module: account_analytic_analysis
#: help:account.analytic.account,ca_to_invoice:0
@ -315,7 +328,7 @@ msgstr ""
#. module: account_analytic_analysis
#: help:account.analytic.account,revenue_per_hour:0
msgid "Computed using the formula: Invoiced Amount / Total Time"
msgstr ""
msgstr "Berechnet als: Verrechneter Betrag / Gesamt Zeit"
#. module: account_analytic_analysis
#: field:account.analytic.account,total_cost:0
@ -340,12 +353,12 @@ msgstr "Analytisches Konto"
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue_all
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue_all
msgid "Contracts"
msgstr ""
msgstr "Verträge"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Manager"
msgstr ""
msgstr "Manager"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_all
@ -357,16 +370,17 @@ msgstr "Alle offenen Positionen (Abrechenbar)"
#: help:account.analytic.account,last_invoice_date:0
msgid "If invoice from the costs, this is the date of the latest invoiced."
msgstr ""
"Wenn Kosten verrechnet werden, dann ist dies das Datum der letzten Rechnung."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Associated Partner"
msgstr ""
msgstr "Zugehöriger Partner"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Open"
msgstr ""
msgstr "Offen"
#. module: account_analytic_analysis
#: field:account.analytic.account,hours_quantity:0

View File

@ -0,0 +1,473 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-24 09:06+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "No Account Manager"
msgstr "No Account Manager"
#. module: account_analytic_analysis
#: field:account.analytic.account,revenue_per_hour:0
msgid "Revenue per Time (real)"
msgstr "Revenue per Time (real)"
#. module: account_analytic_analysis
#: help:account.analytic.account,remaining_ca:0
msgid "Computed using the formula: Max Invoice Price - Invoiced Amount."
msgstr "Computed using the formula: Max Invoice Price - Invoiced Amount."
#. module: account_analytic_analysis
#: help:account.analytic.account,last_worked_date:0
msgid "Date of the latest work done on this account."
msgstr "Date of the latest work done on this account."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid ""
"The contracts to be renewed because the deadline is passed or the working "
"hours are higher than the allocated hours"
msgstr ""
"The contracts to be renewed because the deadline is passed or the working "
"hours are higher than the allocated hours"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Pending contracts to renew with your customer"
msgstr "Pending contracts to renew with your customer"
#. module: account_analytic_analysis
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:551
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:722
#, python-format
msgid "AccessError"
msgstr "AccessError"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Analytic Accounts with a past deadline in one month."
msgstr "Analytic Accounts with a past deadline in one month."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Group By..."
msgstr "Group By..."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "End Date"
msgstr "End Date"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Create Invoice"
msgstr "Create Invoice"
#. module: account_analytic_analysis
#: field:account.analytic.account,last_invoice_date:0
msgid "Last Invoice Date"
msgstr "Last Invoice Date"
#. module: account_analytic_analysis
#: help:account.analytic.account,theorical_margin:0
msgid "Computed using the formula: Theorial Revenue - Total Costs"
msgstr "Computed using the formula: Theorial Revenue - Total Costs"
#. module: account_analytic_analysis
#: help:account.analytic.account,hours_quantity:0
msgid ""
"Number of time you spent on the analytic account (from timesheet). It "
"computes quantities on all journal of type 'general'."
msgstr ""
"Number of time you spent on the analytic account (from timesheet). It "
"computes quantities on all journal of type 'general'."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Contracts in progress"
msgstr "Contracts in progress"
#. module: account_analytic_analysis
#: field:account.analytic.account,is_overdue_quantity:0
msgid "Overdue Quantity"
msgstr "Overdue Quantity"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue
msgid ""
"You will find here the contracts to be renewed because the deadline is "
"passed or the working hours are higher than the allocated hours. OpenERP "
"automatically sets these analytic accounts to the pending state, in order to "
"raise a warning during the timesheets recording. Salesmen should review all "
"pending accounts and reopen or close the according to the negotiation with "
"the customer."
msgstr ""
"You will find here the contracts to be renewed because the deadline is "
"passed or the working hours are higher than the allocated hours. OpenERP "
"automatically sets these analytic accounts to the pending state, in order to "
"raise a warning during the timesheets recording. Salesmen should review all "
"pending accounts and reopen or close the according to the negotiation with "
"the customer."
#. module: account_analytic_analysis
#: field:account.analytic.account,ca_theorical:0
msgid "Theoretical Revenue"
msgstr "Theoretical Revenue"
#. module: account_analytic_analysis
#: field:account.analytic.account,hours_qtt_non_invoiced:0
msgid "Uninvoiced Time"
msgstr "Uninvoiced Time"
#. module: account_analytic_analysis
#: help:account.analytic.account,last_worked_invoiced_date:0
msgid ""
"If invoice from the costs, this is the date of the latest work or cost that "
"have been invoiced."
msgstr ""
"If invoice from the costs, this is the date of the latest work or cost that "
"have been invoiced."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "To Renew"
msgstr "To Renew"
#. module: account_analytic_analysis
#: field:account.analytic.account,last_worked_date:0
msgid "Date of Last Cost/Work"
msgstr "Date of Last Cost/Work"
#. module: account_analytic_analysis
#: field:account.analytic.account,hours_qtt_invoiced:0
msgid "Invoiced Time"
msgstr "Invoiced Time"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid ""
"A contract in OpenERP is an analytic account having a partner set on it."
msgstr ""
"A contract in OpenERP is an analytic account having a partner set on it."
#. module: account_analytic_analysis
#: field:account.analytic.account,remaining_hours:0
msgid "Remaining Time"
msgstr "Remaining Time"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue
msgid "Contracts to Renew"
msgstr "Contracts to Renew"
#. module: account_analytic_analysis
#: help:account.analytic.account,hours_qtt_non_invoiced:0
msgid ""
"Number of time (hours/days) (from journal of type 'general') that can be "
"invoiced if you invoice based on analytic account."
msgstr ""
"Number of time (hours/days) (from journal of type 'general') that can be "
"invoiced if you invoice based on analytic account."
#. module: account_analytic_analysis
#: field:account.analytic.account,theorical_margin:0
msgid "Theoretical Margin"
msgstr "Theoretical Margin"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid " +1 Month"
msgstr " +1 Month"
#. module: account_analytic_analysis
#: help:account.analytic.account,ca_theorical:0
msgid ""
"Based on the costs you had on the project, what would have been the revenue "
"if all these costs have been invoiced at the normal sale price provided by "
"the pricelist."
msgstr ""
"Based on the costs you had on the project, what would have been the revenue "
"if all these costs have been invoiced at the normal sale price provided by "
"the pricelist."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Pending"
msgstr "Pending"
#. module: account_analytic_analysis
#: field:account.analytic.account,ca_to_invoice:0
msgid "Uninvoiced Amount"
msgstr "Uninvoiced Amount"
#. module: account_analytic_analysis
#: help:account.analytic.account,real_margin:0
msgid "Computed using the formula: Invoiced Amount - Total Costs."
msgstr "Computed using the formula: Invoiced Amount - Total Costs."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Parent"
msgstr "Parent"
#. module: account_analytic_analysis
#: field:account.analytic.account,user_ids:0
#: field:account_analytic_analysis.summary.user,user:0
msgid "User"
msgstr "User"
#. module: account_analytic_analysis
#: help:account.analytic.account,real_margin_rate:0
msgid "Computes using the formula: (Real Margin / Total Costs) * 100."
msgstr "Computes using the formula: (Real Margin / Total Costs) * 100."
#. module: account_analytic_analysis
#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user
msgid "Hours Summary by User"
msgstr "Hours Summary by User"
#. module: account_analytic_analysis
#: field:account.analytic.account,ca_invoiced:0
msgid "Invoiced Amount"
msgstr "Invoiced Amount"
#. module: account_analytic_analysis
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:552
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:723
#, python-format
msgid "You try to bypass an access rule (Document type: %s)."
msgstr "You try to bypass an access rule (Document type: %s)."
#. module: account_analytic_analysis
#: field:account.analytic.account,last_worked_invoiced_date:0
msgid "Date of Last Invoiced Cost"
msgstr "Date of Last Invoiced Cost"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Contract"
msgstr "Contract"
#. module: account_analytic_analysis
#: field:account.analytic.account,real_margin_rate:0
msgid "Real Margin Rate (%)"
msgstr "Real Margin Rate (%)"
#. module: account_analytic_analysis
#: field:account.analytic.account,real_margin:0
msgid "Real Margin"
msgstr "Real Margin"
#. module: account_analytic_analysis
#: constraint:account.analytic.account:0
msgid ""
"Error! The currency has to be the same as the currency of the selected "
"company"
msgstr ""
"Error! The currency has to be the same as the currency of the selected "
"company"
#. module: account_analytic_analysis
#: help:account.analytic.account,ca_invoiced:0
msgid "Total customer invoiced amount for this account."
msgstr "Total customer invoiced amount for this account."
#. module: account_analytic_analysis
#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_month
msgid "Hours summary by month"
msgstr "Hours summary by month"
#. module: account_analytic_analysis
#: constraint:account.analytic.account:0
msgid "Error! You can not create recursive analytic accounts."
msgstr "Error! You can not create recursive analytic accounts."
#. module: account_analytic_analysis
#: field:account.analytic.account,remaining_ca:0
msgid "Remaining Revenue"
msgstr "Remaining Revenue"
#. module: account_analytic_analysis
#: help:account.analytic.account,remaining_hours:0
msgid "Computed using the formula: Maximum Time - Total Time"
msgstr "Computed using the formula: Maximum Time - Total Time"
#. module: account_analytic_analysis
#: help:account.analytic.account,hours_qtt_invoiced:0
msgid ""
"Number of time (hours/days) that can be invoiced plus those that already "
"have been invoiced."
msgstr ""
"Number of time (hours/days) that can be invoiced plus those that already "
"have been invoiced."
#. module: account_analytic_analysis
#: help:account.analytic.account,ca_to_invoice:0
msgid ""
"If invoice from analytic account, the remaining amount you can invoice to "
"the customer based on the total costs."
msgstr ""
"If invoice from analytic account, the remaining amount you can invoice to "
"the customer based on the total costs."
#. module: account_analytic_analysis
#: help:account.analytic.account,revenue_per_hour:0
msgid "Computed using the formula: Invoiced Amount / Total Time"
msgstr "Computed using the formula: Invoiced Amount / Total Time"
#. module: account_analytic_analysis
#: field:account.analytic.account,total_cost:0
msgid "Total Costs"
msgstr "Total Costs"
#. module: account_analytic_analysis
#: field:account.analytic.account,month_ids:0
#: field:account_analytic_analysis.summary.month,month:0
msgid "Month"
msgstr "Month"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
#: field:account_analytic_analysis.summary.month,account_id:0
#: field:account_analytic_analysis.summary.user,account_id:0
#: model:ir.model,name:account_analytic_analysis.model_account_analytic_account
msgid "Analytic Account"
msgstr "Analytic Account"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue_all
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue_all
msgid "Contracts"
msgstr "Contracts"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Manager"
msgstr "Manager"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_all
#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_all
msgid "All Uninvoiced Entries"
msgstr "All Uninvoiced Entries"
#. module: account_analytic_analysis
#: help:account.analytic.account,last_invoice_date:0
msgid "If invoice from the costs, this is the date of the latest invoiced."
msgstr "If invoice from the costs, this is the date of the latest invoiced."
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Associated Partner"
msgstr "Associated Partner"
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Open"
msgstr "Open"
#. module: account_analytic_analysis
#: field:account.analytic.account,hours_quantity:0
#: field:account_analytic_analysis.summary.month,unit_amount:0
#: field:account_analytic_analysis.summary.user,unit_amount:0
msgid "Total Time"
msgstr "Total Time"
#. module: account_analytic_analysis
#: help:account.analytic.account,total_cost:0
msgid ""
"Total of costs for this account. It includes real costs (from invoices) and "
"indirect costs, like time spent on timesheets."
msgstr ""
"Total of costs for this account. It includes real costs (from invoices) and "
"indirect costs, like time spent on timesheets."
#~ msgid "Billing"
#~ msgstr "Billing"
#~ msgid ""
#~ "Number of hours that can be invoiced plus those that already have been "
#~ "invoiced."
#~ msgstr ""
#~ "Number of hours that can be invoiced plus those that already have been "
#~ "invoiced."
#~ msgid "Uninvoiced Hours"
#~ msgstr "Uninvoiced Hours"
#~ msgid "Date of the last invoice created for this analytic account."
#~ msgstr "Date of the last invoice created for this analytic account."
#~ msgid "Computed using the formula: Maximum Quantity - Hours Tot."
#~ msgstr "Computed using the formula: Maximum Quantity - Hours Tot."
#~ msgid "report_account_analytic"
#~ msgstr "report_account_analytic"
#~ msgid ""
#~ "Number of hours you spent on the analytic account (from timesheet). It "
#~ "computes on all journal of type 'general'."
#~ msgstr ""
#~ "Number of hours you spent on the analytic account (from timesheet). It "
#~ "computes on all journal of type 'general'."
#~ msgid "Remaining Hours"
#~ msgstr "Remaining Hours"
#~ msgid "Invoiced Hours"
#~ msgstr "Invoiced Hours"
#~ msgid ""
#~ "\n"
#~ "This module is for modifying account analytic view to show\n"
#~ "important data to project manager of services companies.\n"
#~ "Adds menu to show relevant information to each manager..\n"
#~ "\n"
#~ "You can also view the report of account analytic summary\n"
#~ "user-wise as well as month wise.\n"
#~ msgstr ""
#~ "\n"
#~ "This module is for modifying account analytic view to show\n"
#~ "important data to project manager of services companies.\n"
#~ "Adds menu to show relevant information to each manager..\n"
#~ "\n"
#~ "You can also view the report of account analytic summary\n"
#~ "user-wise as well as month wise.\n"
#~ msgid "Hours Tot"
#~ msgstr "Hours Tot"
#~ msgid "Revenue per Hours (real)"
#~ msgstr "Revenue per Hours (real)"
#~ msgid "Overpassed Accounts"
#~ msgstr "Overpassed Accounts"
#~ msgid "Analytic accounts"
#~ msgstr "Analytic accounts"
#~ msgid ""
#~ "Number of hours (from journal of type 'general') that can be invoiced if you "
#~ "invoice based on analytic account."
#~ msgstr ""
#~ "Number of hours (from journal of type 'general') that can be invoiced if you "
#~ "invoice based on analytic account."
#~ msgid "Computed using the formula: Invoiced Amount / Hours Tot."
#~ msgstr "Computed using the formula: Invoiced Amount / Hours Tot."

View File

@ -61,7 +61,7 @@
<filter string="Product" icon="terp-accessories-archiver" context="{'group_by':'product_id'}" help="Product" />
<filter string="Analytic Account" icon="terp-folder-green" context="{'group_by':'analytic_id'}" help="Analytic Account" groups="analytic.group_analytic_accounting"/>
<separator orientation="vertical"/>
<filter string="Company" icon="terp-go-home" context="{'group_by':'company_id'}" help="Comapny" groups="base.group_multi_company" />
<filter string="Company" icon="terp-go-home" context="{'group_by':'company_id'}" groups="base.group_multi_company" />
</group>
</search>
</field>

View File

@ -7,15 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-12 10:15+0000\n"
"Last-Translator: Thorsten Vocks (OpenBig.org) <thorsten.vocks@big-"
"consulting.net>\n"
"PO-Revision-Date: 2012-01-13 19:25+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\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: 2011-12-23 06:57+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_analytic_default
#: help:account.analytic.default,partner_id:0
@ -138,12 +137,12 @@ msgstr "Analytische Buchungsvorlage"
#. module: account_analytic_default
#: sql_constraint:stock.picking:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Die Referenz muss je Firma eindeutig sein"
#. module: account_analytic_default
#: view:account.analytic.default:0
msgid "Analytical defaults whose end date is greater than today or None"
msgstr ""
msgstr "Analyse Standards, mit keinem oder einem Enddatum größer als heute"
#. module: account_analytic_default
#: help:account.analytic.default,product_id:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-23 19:33+0000\n"
"Last-Translator: Emerson <Unknown>\n"
"PO-Revision-Date: 2012-01-18 02:42+0000\n"
"Last-Translator: Rafael Sales <Unknown>\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: 2011-12-23 06:57+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-19 04:50+0000\n"
"X-Generator: Launchpad (build 14692)\n"
#. module: account_analytic_default
#: help:account.analytic.default,partner_id:0
@ -63,7 +63,7 @@ msgstr "Lista de Separação"
#. module: account_analytic_default
#: view:account.analytic.default:0
msgid "Comapny"
msgstr ""
msgstr "Empresa"
#. module: account_analytic_default
#: view:account.analytic.default:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-22 13:43+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-10 23:06+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\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: 2011-12-23 06:57+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-12 05:40+0000\n"
"X-Generator: Launchpad (build 14640)\n"
#. module: account_analytic_default
#: help:account.analytic.default,partner_id:0
@ -62,7 +62,7 @@ msgstr "Toplama Listesi"
#. module: account_analytic_default
#: view:account.analytic.default:0
msgid "Comapny"
msgstr ""
msgstr "Şirket"
#. module: account_analytic_default
#: view:account.analytic.default:0
@ -135,12 +135,12 @@ msgstr "Varsayılan Analizler"
#. module: account_analytic_default
#: sql_constraint:stock.picking:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Referans her şirket için tekil olmalı!"
#. module: account_analytic_default
#: view:account.analytic.default:0
msgid "Analytical defaults whose end date is greater than today or None"
msgstr ""
msgstr "Bitiş tarihi bugünden sonra ya da boş olan Analitik varsayılanlar"
#. module: account_analytic_default
#: help:account.analytic.default,product_id:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-13 06:26+0000\n"
"Last-Translator: silas <Unknown>\n"
"PO-Revision-Date: 2012-01-13 19:23+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\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: 2011-12-23 06:51+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_analytic_plans
#: view:analytic.plan.create.model:0
@ -98,7 +98,7 @@ msgstr "Konto2 ID"
#. module: account_analytic_plans
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Die Rechnungsnummer muss je Firma eindeutig sein"
#. module: account_analytic_plans
#: report:account.analytic.account.crossovered.analytic:0
@ -111,6 +111,8 @@ msgid ""
"Configuration error! The currency chosen should be shared by the default "
"accounts too."
msgstr ""
"Konfigurationsfehler! Die gewählte Währung muss auch bei den Standardkonten "
"verwendet werden"
#. module: account_analytic_plans
#: sql_constraint:account.move.line:0
@ -135,12 +137,12 @@ msgstr "Bankauszug Buchungen"
#. module: account_analytic_plans
#: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_plan_form_action_installer
msgid "Define your Analytic Plans"
msgstr ""
msgstr "Definieren Sie die Analsyskonten"
#. module: account_analytic_plans
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "ungültige BBA Kommunikations Stuktur"
#. module: account_analytic_plans
#: field:account.analytic.plan.instance.line,analytic_account_id:0
@ -265,7 +267,7 @@ msgstr "Start Datum"
msgid ""
"The selected account of your Journal Entry must receive a value in its "
"secondary currency"
msgstr ""
msgstr "Das ausgewählte Konto muss auch in der 2.Währung bebucht werden."
#. module: account_analytic_plans
#: field:account.analytic.plan.instance,account5_ids:0
@ -308,7 +310,7 @@ msgstr "analytic.plan.create.model.action"
#. module: account_analytic_plans
#: model:ir.model,name:account_analytic_plans.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
msgstr "Analyse Zeile"
#. module: account_analytic_plans
#: report:account.analytic.account.crossovered.analytic:0
@ -350,6 +352,8 @@ msgstr ""
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
"Das Datum Ihrer Journalbuchung befindet sich nicht in der definierten "
"Periode!"
#. module: account_analytic_plans
#: field:account.analytic.plan.line,min_required:0
@ -410,7 +414,7 @@ msgstr "Konto3 ID"
#. module: account_analytic_plans
#: constraint:account.analytic.line:0
msgid "You can not create analytic line on view account."
msgstr ""
msgstr "Für Sichten dürfen keine Analysezeilen erzeugt werden"
#. module: account_analytic_plans
#: model:ir.model,name:account_analytic_plans.model_account_invoice

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-22 16:29+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-25 00:10+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\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: 2011-12-23 06:51+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-26 05:27+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_analytic_plans
#: view:analytic.plan.create.model:0
@ -97,7 +97,7 @@ msgstr "Hesap2 No"
#. module: account_analytic_plans
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Fatura Numarası Her Şirkette Tekil Olmalı!"
#. module: account_analytic_plans
#: report:account.analytic.account.crossovered.analytic:0
@ -134,12 +134,12 @@ msgstr "Banka Ekstresi Kalemi"
#. module: account_analytic_plans
#: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_plan_form_action_installer
msgid "Define your Analytic Plans"
msgstr ""
msgstr "Analitik Planınızı Tanımlayın"
#. module: account_analytic_plans
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Geçersiz BBA Yapılı İletişim !"
#. module: account_analytic_plans
#: field:account.analytic.plan.instance.line,analytic_account_id:0
@ -302,7 +302,7 @@ msgstr "analiz.plan.oluştur.model.eylem"
#. module: account_analytic_plans
#: model:ir.model,name:account_analytic_plans.model_account_analytic_line
msgid "Analytic Line"
msgstr ""
msgstr "Analiz Satırı"
#. module: account_analytic_plans
#: report:account.analytic.account.crossovered.analytic:0
@ -342,7 +342,7 @@ msgstr "Firma bağlı olduğu hesap ve dönemle aynı olmalıdır."
#. module: account_analytic_plans
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
msgstr "Yevmiye Girişinizin tarihi tanımlanan dönemle uyuşmuyor!"
#. module: account_analytic_plans
#: field:account.analytic.plan.line,min_required:0

View File

@ -7,19 +7,19 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-13 12:52+0000\n"
"Last-Translator: silas <Unknown>\n"
"PO-Revision-Date: 2012-01-13 19:22+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:15+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_anglo_saxon
#: sql_constraint:purchase.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Die Bestellreferenz muss je Firma eindeutig sein"
#. module: account_anglo_saxon
#: view:product.category:0
@ -34,17 +34,17 @@ msgstr "Produkt Kategorie"
#. module: account_anglo_saxon
#: sql_constraint:stock.picking:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Die Referenz muss je Firma eindeutig sein"
#. module: account_anglo_saxon
#: constraint:product.category:0
msgid "Error ! You cannot create recursive categories."
msgstr ""
msgstr "Fehler! Rekursive Kategorien sind nicht zulässig"
#. module: account_anglo_saxon
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "ungültige BBA Kommunikations Stuktur"
#. module: account_anglo_saxon
#: constraint:product.template:0
@ -88,7 +88,7 @@ msgstr "Pack Auftrag"
#. module: account_anglo_saxon
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Die Rechnungsnummer muss je Firma eindeutig sein"
#. module: account_anglo_saxon
#: help:product.category,property_account_creditor_price_difference_categ:0

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-08-25 11:47+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 13:21+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:15+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: account_anglo_saxon
#: sql_constraint:purchase.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Order Reference must be unique per Company!"
#. module: account_anglo_saxon
#: view:product.category:0
@ -35,17 +35,17 @@ msgstr "Product Category"
#. module: account_anglo_saxon
#: sql_constraint:stock.picking:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Reference must be unique per Company!"
#. module: account_anglo_saxon
#: constraint:product.category:0
msgid "Error ! You cannot create recursive categories."
msgstr ""
msgstr "Error ! You cannot create recursive categories."
#. module: account_anglo_saxon
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Invalid BBA Structured Communication !"
#. module: account_anglo_saxon
#: constraint:product.template:0
@ -88,7 +88,7 @@ msgstr "Picking List"
#. module: account_anglo_saxon
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Invoice Number must be unique per Company!"
#. module: account_anglo_saxon
#: help:product.category,property_account_creditor_price_difference_categ:0

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-06-02 17:13+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-25 00:15+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:15+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-26 05:28+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_anglo_saxon
#: sql_constraint:purchase.order:0
msgid "Order Reference must be unique per Company!"
msgstr ""
msgstr "Sipariş Referansı Her Şirket İçin Tekil Olmalı!"
#. module: account_anglo_saxon
#: view:product.category:0
@ -35,17 +35,17 @@ msgstr "Ürün Kategorisi"
#. module: account_anglo_saxon
#: sql_constraint:stock.picking:0
msgid "Reference must be unique per Company!"
msgstr ""
msgstr "Referans her şirket için tekil olmalı!"
#. module: account_anglo_saxon
#: constraint:product.category:0
msgid "Error ! You cannot create recursive categories."
msgstr ""
msgstr "Birbirinin alt kategorisi olan kategoriler oluşturamazsınız."
#. module: account_anglo_saxon
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Geçersiz BBA Yapılı İletişim !"
#. module: account_anglo_saxon
#: constraint:product.template:0
@ -88,7 +88,7 @@ msgstr "Toplama Listesi"
#. module: account_anglo_saxon
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Fatura Numarası Her Şirkette Tekil Olmalı!"
#. module: account_anglo_saxon
#: help:product.category,property_account_creditor_price_difference_categ:0

View File

@ -30,6 +30,7 @@
""",
"website" : "http://www.openerp.com",
"category" : "Accounting & Finance",
"sequence": 32,
"init_xml" : [
],
"demo_xml" : [ 'account_asset_demo.xml'

View File

@ -7,20 +7,20 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:43+0000\n"
"PO-Revision-Date: 2011-09-04 12:15+0000\n"
"PO-Revision-Date: 2012-01-11 09:11+0000\n"
"Last-Translator: Jiří Hajda <robie@centrum.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"Language-Team: Czech <openerp-i18n-czech@lists.launchpad.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:35+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-12 05:40+0000\n"
"X-Generator: Launchpad (build 14640)\n"
"X-Poedit-Language: Czech\n"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Assets in draft and open states"
msgstr ""
msgstr "Majetek ve stavu koncept a otevřeném stavu"
#. module: account_asset
#: field:account.asset.category,method_end:0
@ -32,27 +32,27 @@ msgstr "Datum ukončení"
#. module: account_asset
#: field:account.asset.asset,value_residual:0
msgid "Residual Value"
msgstr ""
msgstr "Zbytková hodnota"
#. module: account_asset
#: field:account.asset.category,account_expense_depreciation_id:0
msgid "Depr. Expense Account"
msgstr ""
msgstr "Nákladový odpisovací účet"
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
msgid "Compute Asset"
msgstr ""
msgstr "Spočítat majetek"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Group By..."
msgstr ""
msgstr "Seskupit podle..."
#. module: account_asset
#: field:asset.asset.report,gross_value:0
msgid "Gross Amount"
msgstr ""
msgstr "Hrubá částka"
#. module: account_asset
#: view:account.asset.asset:0
@ -73,6 +73,8 @@ msgid ""
"Indicates that the first depreciation entry for this asset have to be done "
"from the purchase date instead of the first January"
msgstr ""
"Říká, že první odpisová položka pro tento majetek by měla být provedena z "
"data nákupu namísto prvního Ledna"
#. module: account_asset
#: field:account.asset.history,name:0
@ -85,24 +87,24 @@ msgstr "Jméno historie"
#: view:asset.asset.report:0
#: field:asset.asset.report,company_id:0
msgid "Company"
msgstr ""
msgstr "Společnost"
#. module: account_asset
#: view:asset.modify:0
msgid "Modify"
msgstr ""
msgstr "Upravit"
#. module: account_asset
#: selection:account.asset.asset,state:0
#: view:asset.asset.report:0
#: selection:asset.asset.report,state:0
msgid "Running"
msgstr ""
msgstr "Běžící"
#. module: account_asset
#: field:account.asset.depreciation.line,amount:0
msgid "Depreciation Amount"
msgstr ""
msgstr "Odpisová částka"
#. module: account_asset
#: view:asset.asset.report:0
@ -110,7 +112,7 @@ msgstr ""
#: model:ir.model,name:account_asset.model_asset_asset_report
#: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report
msgid "Assets Analysis"
msgstr ""
msgstr "Analýza majetku"
#. module: account_asset
#: field:asset.modify,name:0
@ -121,13 +123,13 @@ msgstr "Důvod"
#: field:account.asset.asset,method_progress_factor:0
#: field:account.asset.category,method_progress_factor:0
msgid "Degressive Factor"
msgstr ""
msgstr "Činitel klesání"
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal
#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal
msgid "Asset Categories"
msgstr ""
msgstr "Kategorie majetku"
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
@ -135,6 +137,8 @@ msgid ""
"This wizard will post the depreciation lines of running assets that belong "
"to the selected period."
msgstr ""
"Tento průvodce zaúčtuje řádky odpisů běžících majetků, které patří k "
"vybranému období."
#. module: account_asset
#: field:account.asset.asset,account_move_line_ids:0
@ -147,29 +151,29 @@ msgstr "Položky"
#: view:account.asset.asset:0
#: field:account.asset.asset,depreciation_line_ids:0
msgid "Depreciation Lines"
msgstr ""
msgstr "Řádky odpisů"
#. module: account_asset
#: help:account.asset.asset,salvage_value:0
msgid "It is the amount you plan to have that you cannot depreciate."
msgstr ""
msgstr "Toto je částka, kterou plánujete, že nebudete odpisovat."
#. module: account_asset
#: field:account.asset.depreciation.line,depreciation_date:0
#: view:asset.asset.report:0
#: field:asset.asset.report,depreciation_date:0
msgid "Depreciation Date"
msgstr ""
msgstr "Datum odpisu"
#. module: account_asset
#: field:account.asset.category,account_asset_id:0
msgid "Asset Account"
msgstr ""
msgstr "Účet majetku"
#. module: account_asset
#: field:asset.asset.report,posted_value:0
msgid "Posted Amount"
msgstr ""
msgstr "Zaúčtovaná částka"
#. module: account_asset
#: view:account.asset.asset:0
@ -184,12 +188,12 @@ msgstr "Majetky"
#. module: account_asset
#: field:account.asset.category,account_depreciation_id:0
msgid "Depreciation Account"
msgstr ""
msgstr "Účet odpisů"
#. module: account_asset
#: constraint:account.move.line:0
msgid "You can not create move line on closed account."
msgstr ""
msgstr "Nemůžete vytvořit pohybové řádky v uzavřeném účtu."
#. module: account_asset
#: view:account.asset.asset:0
@ -203,23 +207,23 @@ msgstr "Poznámky"
#. module: account_asset
#: field:account.asset.depreciation.line,move_id:0
msgid "Depreciation Entry"
msgstr ""
msgstr "Položka odpisu"
#. module: account_asset
#: sql_constraint:account.move.line:0
msgid "Wrong credit or debit value in accounting entry !"
msgstr ""
msgstr "Chybná hodnota Má dáti nebo Dal v účetním záznamu !"
#. module: account_asset
#: view:asset.asset.report:0
#: field:asset.asset.report,nbr:0
msgid "# of Depreciation Lines"
msgstr ""
msgstr "# z řádek odpisů"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets in draft state"
msgstr ""
msgstr "Majetek ve stavu koncept"
#. module: account_asset
#: field:account.asset.asset,method_end:0
@ -227,33 +231,33 @@ msgstr ""
#: selection:account.asset.category,method_time:0
#: selection:account.asset.history,method_time:0
msgid "Ending Date"
msgstr ""
msgstr "Konečný datum"
#. module: account_asset
#: field:account.asset.asset,code:0
msgid "Reference"
msgstr ""
msgstr "Odkaz"
#. module: account_asset
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Neplatná strukturovaná komunikace BBA !"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Account Asset"
msgstr ""
msgstr "Účet majetku"
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard
#: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard
msgid "Compute Assets"
msgstr ""
msgstr "Spočítat majetky"
#. module: account_asset
#: field:account.asset.depreciation.line,sequence:0
msgid "Sequence of the depreciation"
msgstr ""
msgstr "Pořadí odpočtů"
#. module: account_asset
#: field:account.asset.asset,method_period:0
@ -261,7 +265,7 @@ msgstr ""
#: field:account.asset.history,method_period:0
#: field:asset.modify,method_period:0
msgid "Period Length"
msgstr ""
msgstr "Délka období"
#. module: account_asset
#: selection:account.asset.asset,state:0
@ -273,17 +277,17 @@ msgstr "Návrh"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Date of asset purchase"
msgstr ""
msgstr "Datum zakoupení majetku"
#. module: account_asset
#: help:account.asset.asset,method_number:0
msgid "Calculates Depreciation within specified interval"
msgstr ""
msgstr "Spočítat odpočty v zadaném rozmezí"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Change Duration"
msgstr ""
msgstr "Změnit trvání"
#. module: account_asset
#: field:account.asset.category,account_analytic_id:0
@ -294,12 +298,12 @@ msgstr "Analytický účet"
#: field:account.asset.asset,method:0
#: field:account.asset.category,method:0
msgid "Computation Method"
msgstr ""
msgstr "Metoda výpočtu"
#. module: account_asset
#: help:account.asset.asset,method_period:0
msgid "State here the time during 2 depreciations, in months"
msgstr ""
msgstr "Zde zjistěte čas trvajících dvou odpisů v měsících"
#. module: account_asset
#: constraint:account.asset.asset:0
@ -307,6 +311,7 @@ msgid ""
"Prorata temporis can be applied only for time method \"number of "
"depreciations\"."
msgstr ""
"Prorata temporis může být použita pouze pro časovou metodu \"počet odpisů\"."
#. module: account_asset
#: help:account.asset.history,method_time:0
@ -317,44 +322,47 @@ msgid ""
"Ending Date: Choose the time between 2 depreciations and the date the "
"depreciations won't go beyond."
msgstr ""
"Metoda k použití pro výpočet datumů a počet odpisových řádek.\n"
"Počet odpisů: Pevné číslo počtu odpisových řádků a čas mezi 2 odpisy.\n"
"Konečný datum: Vybere čas mezi 2 odpisy a datum odpis nemůže jít přes."
#. module: account_asset
#: field:account.asset.asset,purchase_value:0
msgid "Gross value "
msgstr ""
msgstr "Hrubá hodnota "
#. module: account_asset
#: constraint:account.asset.asset:0
msgid "Error ! You can not create recursive assets."
msgstr ""
msgstr "Chyba ! Nemůžete vytvářet rekurzivní majetky."
#. module: account_asset
#: help:account.asset.history,method_period:0
msgid "Time in month between two depreciations"
msgstr ""
msgstr "Čas v měsíci mezi dvěma odpočty"
#. module: account_asset
#: view:asset.asset.report:0
#: field:asset.asset.report,name:0
msgid "Year"
msgstr ""
msgstr "Rok"
#. module: account_asset
#: view:asset.modify:0
#: model:ir.actions.act_window,name:account_asset.action_asset_modify
#: model:ir.model,name:account_asset.model_asset_modify
msgid "Modify Asset"
msgstr ""
msgstr "Upravit majetek"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Other Information"
msgstr ""
msgstr "Jiné informace"
#. module: account_asset
#: field:account.asset.asset,salvage_value:0
msgid "Salvage Value"
msgstr ""
msgstr "Záchranná hodnota"
#. module: account_asset
#: field:account.invoice.line,asset_category_id:0
@ -365,7 +373,7 @@ msgstr "Kategorie majetku"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Set to Close"
msgstr ""
msgstr "Nastavit na uzavřené"
#. module: account_asset
#: model:ir.actions.wizard,name:account_asset.wizard_asset_compute
@ -380,12 +388,12 @@ msgstr "Upravit majetek"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Assets in closed state"
msgstr ""
msgstr "Majetek v uzavřeném stavu"
#. module: account_asset
#: field:account.asset.asset,parent_id:0
msgid "Parent Asset"
msgstr ""
msgstr "Nadřazený majetek"
#. module: account_asset
#: view:account.asset.history:0
@ -396,7 +404,7 @@ msgstr "Historie majetku"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets purchased in current year"
msgstr ""
msgstr "Majetky zakoupené v tomto roce"
#. module: account_asset
#: field:account.asset.asset,state:0
@ -407,34 +415,34 @@ msgstr "Stav"
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_invoice_line
msgid "Invoice Line"
msgstr ""
msgstr "Řádek faktury"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Month"
msgstr ""
msgstr "Měsíc"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Depreciation Board"
msgstr ""
msgstr "Odpisová tabule"
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_move_line
msgid "Journal Items"
msgstr ""
msgstr "Položky deníku"
#. module: account_asset
#: field:asset.asset.report,unposted_value:0
msgid "Unposted Amount"
msgstr ""
msgstr "Nezaúčtovaná částka"
#. module: account_asset
#: field:account.asset.asset,method_time:0
#: field:account.asset.category,method_time:0
#: field:account.asset.history,method_time:0
msgid "Time Method"
msgstr ""
msgstr "Časová metoda"
#. module: account_asset
#: constraint:account.move.line:0
@ -442,16 +450,17 @@ msgid ""
"The selected account of your Journal Entry must receive a value in its "
"secondary currency"
msgstr ""
"Vybraný účet vaší položky deníku musí obdržet hodnotu ve své druhořadé měně"
#. module: account_asset
#: view:account.asset.category:0
msgid "Analytic information"
msgstr ""
msgstr "Analytické informace"
#. module: account_asset
#: view:asset.modify:0
msgid "Asset durations to modify"
msgstr ""
msgstr "Úprava trvání majetku"
#. module: account_asset
#: field:account.asset.asset,note:0
@ -468,6 +477,9 @@ msgid ""
" * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n"
" * Degressive: Calculated on basis of: Remaining Value * Degressive Factor"
msgstr ""
"Vyberte metodu pro použití pro spočítání částky odpisových řádků.\n"
" * Lineární: Vypočteno na základě: Hrubé hodnoty / Počet odpisů\n"
" * Klesající: Vypočteno na základě: Zbytkové hodnoty * Činitel poklesu"
#. module: account_asset
#: help:account.asset.asset,method_time:0
@ -480,16 +492,19 @@ msgid ""
" * Ending Date: Choose the time between 2 depreciations and the date the "
"depreciations won't go beyond."
msgstr ""
"Vyberte metodu pro použití pro výpočet datumů a počtu odpisových řádků.\n"
" * Počet odpisů: Pevné číslo počtu odpisových řádků a čas mezi 2 odpisy.\n"
" * Konečný datum: Vybere čas mezi 2 odpisy a datum odpis nemůže jít přes."
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets in running state"
msgstr ""
msgstr "Majetek ve stavu běžící"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Closed"
msgstr ""
msgstr "Zavřený"
#. module: account_asset
#: field:account.asset.asset,partner_id:0
@ -501,22 +516,22 @@ msgstr "Společník"
#: view:asset.asset.report:0
#: field:asset.asset.report,depreciation_value:0
msgid "Amount of Depreciation Lines"
msgstr ""
msgstr "Částka odpisových řádků"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Posted depreciation lines"
msgstr ""
msgstr "Zaúčtované řádky odpisů"
#. module: account_asset
#: field:account.asset.asset,child_ids:0
msgid "Children Assets"
msgstr ""
msgstr "Podřízené majetky"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Date of depreciation"
msgstr ""
msgstr "Datum odpisu"
#. module: account_asset
#: field:account.asset.history,user_id:0
@ -531,38 +546,38 @@ msgstr "Datum"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets purchased in current month"
msgstr ""
msgstr "Majetek zakoupený v tomto měsíci"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Extended Filters..."
msgstr ""
msgstr "Rozšířené filtry..."
#. module: account_asset
#: constraint:account.move.line:0
msgid "Company must be same for its related account and period."
msgstr ""
msgstr "Společnost musí být stejná pro její vztažené účty a období."
#. module: account_asset
#: view:account.asset.asset:0
#: view:asset.depreciation.confirmation.wizard:0
msgid "Compute"
msgstr ""
msgstr "Spočítat"
#. module: account_asset
#: view:account.asset.category:0
msgid "Search Asset Category"
msgstr ""
msgstr "Hledat kategorii majetku"
#. module: account_asset
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
msgstr "Datum vaší položky deníku není v zadaném období!"
#. module: account_asset
#: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard
msgid "asset.depreciation.confirmation.wizard"
msgstr ""
msgstr "asset.depreciation.confirmation.wizard"
#. module: account_asset
#: field:account.asset.asset,active:0
@ -577,12 +592,12 @@ msgstr "Uzavřít majetek"
#. module: account_asset
#: field:account.asset.depreciation.line,parent_state:0
msgid "State of Asset"
msgstr ""
msgstr "Stav majetku"
#. module: account_asset
#: field:account.asset.depreciation.line,name:0
msgid "Depreciation Name"
msgstr ""
msgstr "Jméno odpisu"
#. module: account_asset
#: view:account.asset.asset:0
@ -593,7 +608,7 @@ msgstr "Historie"
#. module: account_asset
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Číslo dokladu musí být jedinečné na společnost!"
#. module: account_asset
#: field:asset.depreciation.confirmation.wizard,period_id:0
@ -603,28 +618,28 @@ msgstr "Období"
#. module: account_asset
#: view:account.asset.asset:0
msgid "General"
msgstr ""
msgstr "Obecné"
#. module: account_asset
#: field:account.asset.asset,prorata:0
#: field:account.asset.category,prorata:0
msgid "Prorata Temporis"
msgstr ""
msgstr "Prorata Temporis"
#. module: account_asset
#: view:account.asset.category:0
msgid "Accounting information"
msgstr ""
msgstr "Účetní informace"
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_invoice
msgid "Invoice"
msgstr ""
msgstr "Faktura"
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_form_normal
msgid "Review Asset Categories"
msgstr ""
msgstr "Přezkoumat kategorie majetku"
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
@ -642,20 +657,20 @@ msgstr "Zavřít"
#: view:account.asset.asset:0
#: view:account.asset.category:0
msgid "Depreciation Method"
msgstr ""
msgstr "Odpisová metoda"
#. module: account_asset
#: field:account.asset.asset,purchase_date:0
#: view:asset.asset.report:0
#: field:asset.asset.report,purchase_date:0
msgid "Purchase Date"
msgstr ""
msgstr "Datum zakoupení"
#. module: account_asset
#: selection:account.asset.asset,method:0
#: selection:account.asset.category,method:0
msgid "Degressive"
msgstr ""
msgstr "Klesající"
#. module: account_asset
#: help:asset.depreciation.confirmation.wizard,period_id:0
@ -663,33 +678,35 @@ msgid ""
"Choose the period for which you want to automatically post the depreciation "
"lines of running assets"
msgstr ""
"Vyberte období, pro které chcete automaticky zaúčtovat odpisové řádky "
"běžících majetků."
#. module: account_asset
#: view:account.asset.asset:0
msgid "Current"
msgstr ""
msgstr "Aktuální"
#. module: account_asset
#: field:account.asset.depreciation.line,remaining_value:0
msgid "Amount to Depreciate"
msgstr ""
msgstr "Částka k odepsání"
#. module: account_asset
#: field:account.asset.category,open_asset:0
msgid "Skip Draft State"
msgstr ""
msgstr "Přeskočit stav koncept"
#. module: account_asset
#: view:account.asset.asset:0
#: view:account.asset.category:0
#: view:account.asset.history:0
msgid "Depreciation Dates"
msgstr ""
msgstr "Datumy odpisů"
#. module: account_asset
#: field:account.asset.asset,currency_id:0
msgid "Currency"
msgstr ""
msgstr "Měna"
#. module: account_asset
#: field:account.asset.category,journal_id:0
@ -699,14 +716,14 @@ msgstr "Deník"
#. module: account_asset
#: field:account.asset.depreciation.line,depreciated_value:0
msgid "Amount Already Depreciated"
msgstr ""
msgstr "Již odepsaná částka"
#. module: account_asset
#: field:account.asset.depreciation.line,move_check:0
#: view:asset.asset.report:0
#: field:asset.asset.report,move_check:0
msgid "Posted"
msgstr ""
msgstr "Zaúčtováno"
#. module: account_asset
#: help:account.asset.asset,state:0
@ -717,11 +734,17 @@ msgid ""
"You can manually close an asset when the depreciation is over. If the last "
"line of depreciation is posted, the asset automatically goes in that state."
msgstr ""
"Když je majetek vytvořen, stav je 'Koncept'.\n"
"Pokud je majetek potvrzen, stav přechází na 'Běžící' a odpisové řádky mohou "
"být zaúčtovány v účetnictví.\n"
"Můžete ručně uzavřit majetek, pokud je odpisování dokončeno. Pokud je "
"poslední řádek odpisu zaúčtovaný, majetek automaticky přechází do tohoto "
"stavu."
#. module: account_asset
#: field:account.asset.category,name:0
msgid "Name"
msgstr ""
msgstr "Název"
#. module: account_asset
#: help:account.asset.category,open_asset:0
@ -729,11 +752,13 @@ msgid ""
"Check this if you want to automatically confirm the assets of this category "
"when created by invoices."
msgstr ""
"Zaškrtněte toto, pokud chcete automaticky potvrdit majetky pro tutu "
"kategorii, když jsou vytvořeny pomocí dokladů."
#. module: account_asset
#: view:account.asset.asset:0
msgid "Set to Draft"
msgstr ""
msgstr "Nastavit na koncept"
#. module: account_asset
#: selection:account.asset.asset,method:0
@ -744,12 +769,12 @@ msgstr "Lineární"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Month-1"
msgstr ""
msgstr "Měsíc -1"
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_asset_depreciation_line
msgid "Asset depreciation line"
msgstr ""
msgstr "Odpisový řádek majetku"
#. module: account_asset
#: field:account.asset.asset,category_id:0
@ -762,13 +787,13 @@ msgstr "Kategorie majetku"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets purchased in last month"
msgstr ""
msgstr "Majetek zakoupený v minulém měsíci"
#. module: account_asset
#: code:addons/account_asset/wizard/wizard_asset_compute.py:49
#, python-format
msgid "Created Asset Moves"
msgstr ""
msgstr "Vytvořit pohyby majetku"
#. module: account_asset
#: model:ir.actions.act_window,help:account_asset.action_asset_asset_report
@ -777,11 +802,14 @@ msgid ""
"search can also be used to personalise your Assets reports and so, match "
"this analysis to your needs;"
msgstr ""
"Z tohoto výkazu můžete mít přehled nad všemi odpisy. Nástroj hledání může "
"být také použit pro přizpůsobení vašich výkazů majetku a tak odpovídat této "
"analýze podle vašich potřeb;"
#. module: account_asset
#: help:account.asset.category,method_period:0
msgid "State here the time between 2 depreciations, in months"
msgstr ""
msgstr "Zde zjistěte čas mezi dvěma odpisy v měsíci"
#. module: account_asset
#: field:account.asset.asset,method_number:0
@ -792,22 +820,22 @@ msgstr ""
#: selection:account.asset.history,method_time:0
#: field:asset.modify,method_number:0
msgid "Number of Depreciations"
msgstr ""
msgstr "Počet odpisů"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Create Move"
msgstr ""
msgstr "Vytvořit pohyb"
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
msgid "Post Depreciation Lines"
msgstr ""
msgstr "Zaúčtovat odpisové řádky"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Confirm Asset"
msgstr ""
msgstr "Potvrdit majetek"
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree
@ -818,7 +846,7 @@ msgstr "Hierarchie majetku"
#. module: account_asset
#: constraint:account.move.line:0
msgid "You can not create move line on view account."
msgstr ""
msgstr "Nemůžete vytvořit řádek pohybu ve zobrazení účtu."
#~ msgid "Open Assets"
#~ msgstr "Otevřít majetky"

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:43+0000\n"
"PO-Revision-Date: 2011-11-29 08:00+0000\n"
"PO-Revision-Date: 2012-01-13 21:37+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:35+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:13+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Assets in draft and open states"
msgstr ""
msgstr "Anlagengüter - Entwurf und Offen"
#. module: account_asset
#: field:account.asset.category,method_end:0
@ -32,27 +32,27 @@ msgstr "Ende Datum"
#. module: account_asset
#: field:account.asset.asset,value_residual:0
msgid "Residual Value"
msgstr ""
msgstr "Rest Buchwert"
#. module: account_asset
#: field:account.asset.category,account_expense_depreciation_id:0
msgid "Depr. Expense Account"
msgstr ""
msgstr "Abschreibung Konto"
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
msgid "Compute Asset"
msgstr ""
msgstr "Berechne Anlagen"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Group By..."
msgstr ""
msgstr "Gruppiere nach..."
#. module: account_asset
#: field:asset.asset.report,gross_value:0
msgid "Gross Amount"
msgstr ""
msgstr "Brutto Betrag"
#. module: account_asset
#: view:account.asset.asset:0
@ -73,6 +73,8 @@ msgid ""
"Indicates that the first depreciation entry for this asset have to be done "
"from the purchase date instead of the first January"
msgstr ""
"Kennzeichen, dass die erste Abschreibung ab dem Kaufdatum und nicht ab dem "
"1. Jänner zu rechnen st."
#. module: account_asset
#: field:account.asset.history,name:0
@ -85,24 +87,24 @@ msgstr "Verlauf Bezeichnung"
#: view:asset.asset.report:0
#: field:asset.asset.report,company_id:0
msgid "Company"
msgstr ""
msgstr "Unternehmen"
#. module: account_asset
#: view:asset.modify:0
msgid "Modify"
msgstr ""
msgstr "Bearbeiten"
#. module: account_asset
#: selection:account.asset.asset,state:0
#: view:asset.asset.report:0
#: selection:asset.asset.report,state:0
msgid "Running"
msgstr ""
msgstr "In Betrieb"
#. module: account_asset
#: field:account.asset.depreciation.line,amount:0
msgid "Depreciation Amount"
msgstr ""
msgstr "Abschreibung Betrag"
#. module: account_asset
#: view:asset.asset.report:0
@ -110,7 +112,7 @@ msgstr ""
#: model:ir.model,name:account_asset.model_asset_asset_report
#: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report
msgid "Assets Analysis"
msgstr ""
msgstr "Anlagen Analyse"
#. module: account_asset
#: field:asset.modify,name:0
@ -121,13 +123,13 @@ msgstr "Begründung"
#: field:account.asset.asset,method_progress_factor:0
#: field:account.asset.category,method_progress_factor:0
msgid "Degressive Factor"
msgstr ""
msgstr "Degressiver Faktor"
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal
#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal
msgid "Asset Categories"
msgstr ""
msgstr "Anlagen Kategorien"
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
@ -135,6 +137,8 @@ msgid ""
"This wizard will post the depreciation lines of running assets that belong "
"to the selected period."
msgstr ""
"Dieser Assistent erzeugt Abschreibungsbuchungen bestehender Anlagen für die "
"gewählte Periode"
#. module: account_asset
#: field:account.asset.asset,account_move_line_ids:0
@ -147,29 +151,30 @@ msgstr "Buchungen"
#: view:account.asset.asset:0
#: field:account.asset.asset,depreciation_line_ids:0
msgid "Depreciation Lines"
msgstr ""
msgstr "Abschreibungs Buchungen"
#. module: account_asset
#: help:account.asset.asset,salvage_value:0
msgid "It is the amount you plan to have that you cannot depreciate."
msgstr ""
"Das ist der geplante Erinnerungswert, der nicht abgeschrieben werden kann."
#. module: account_asset
#: field:account.asset.depreciation.line,depreciation_date:0
#: view:asset.asset.report:0
#: field:asset.asset.report,depreciation_date:0
msgid "Depreciation Date"
msgstr ""
msgstr "Abschreibungs Datum"
#. module: account_asset
#: field:account.asset.category,account_asset_id:0
msgid "Asset Account"
msgstr ""
msgstr "Anlagen Konto"
#. module: account_asset
#: field:asset.asset.report,posted_value:0
msgid "Posted Amount"
msgstr ""
msgstr "Gebuchter Betrag"
#. module: account_asset
#: view:account.asset.asset:0
@ -184,12 +189,13 @@ msgstr "Anlagegüter"
#. module: account_asset
#: field:account.asset.category,account_depreciation_id:0
msgid "Depreciation Account"
msgstr ""
msgstr "Abschreibungs Konto"
#. module: account_asset
#: constraint:account.move.line:0
msgid "You can not create move line on closed account."
msgstr ""
"Sie können keine Buchung auf einem bereits abgeschlossenen Konto vornehmen."
#. module: account_asset
#: view:account.asset.asset:0
@ -203,23 +209,23 @@ msgstr "Bemerkungen"
#. module: account_asset
#: field:account.asset.depreciation.line,move_id:0
msgid "Depreciation Entry"
msgstr ""
msgstr "Abschreibungsbuchung"
#. module: account_asset
#: sql_constraint:account.move.line:0
msgid "Wrong credit or debit value in accounting entry !"
msgstr ""
msgstr "Falscher Debit oder Kreditwert im Buchungseintrag!"
#. module: account_asset
#: view:asset.asset.report:0
#: field:asset.asset.report,nbr:0
msgid "# of Depreciation Lines"
msgstr ""
msgstr "# der Abschreibungsbuchungen"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets in draft state"
msgstr ""
msgstr "Anlagen im Entwurf"
#. module: account_asset
#: field:account.asset.asset,method_end:0
@ -227,33 +233,33 @@ msgstr ""
#: selection:account.asset.category,method_time:0
#: selection:account.asset.history,method_time:0
msgid "Ending Date"
msgstr ""
msgstr "Enddatum"
#. module: account_asset
#: field:account.asset.asset,code:0
msgid "Reference"
msgstr ""
msgstr "Referenz"
#. module: account_asset
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "ungültige BBA Kommunikations Stuktur"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Account Asset"
msgstr ""
msgstr "Anlage Konto"
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard
#: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard
msgid "Compute Assets"
msgstr ""
msgstr "Berechne Anlagen"
#. module: account_asset
#: field:account.asset.depreciation.line,sequence:0
msgid "Sequence of the depreciation"
msgstr ""
msgstr "Sequenz der Abschreibung"
#. module: account_asset
#: field:account.asset.asset,method_period:0
@ -261,7 +267,7 @@ msgstr ""
#: field:account.asset.history,method_period:0
#: field:asset.modify,method_period:0
msgid "Period Length"
msgstr ""
msgstr "Perioden Länge"
#. module: account_asset
#: selection:account.asset.asset,state:0
@ -273,17 +279,17 @@ msgstr "Entwurf"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Date of asset purchase"
msgstr ""
msgstr "Kaufdatum der Anlage"
#. module: account_asset
#: help:account.asset.asset,method_number:0
msgid "Calculates Depreciation within specified interval"
msgstr ""
msgstr "Berechnet die Abschreibungen in einem definierten Intervall"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Change Duration"
msgstr ""
msgstr "Verändere Lebensdauer"
#. module: account_asset
#: field:account.asset.category,account_analytic_id:0
@ -294,12 +300,12 @@ msgstr "Analytisches Konto"
#: field:account.asset.asset,method:0
#: field:account.asset.category,method:0
msgid "Computation Method"
msgstr ""
msgstr "Berechnungsmethode"
#. module: account_asset
#: help:account.asset.asset,method_period:0
msgid "State here the time during 2 depreciations, in months"
msgstr ""
msgstr "Definieren Sie die Zeit in Monaten zwischen 2 Abschreibungen"
#. module: account_asset
#: constraint:account.asset.asset:0
@ -307,6 +313,8 @@ msgid ""
"Prorata temporis can be applied only for time method \"number of "
"depreciations\"."
msgstr ""
"Pro Rata Temporis Abschreibung kann nur für die Methode \"Anzahl der "
"Abschreibung\" verwendet werden"
#. module: account_asset
#: help:account.asset.history,method_time:0
@ -317,44 +325,50 @@ msgid ""
"Ending Date: Choose the time between 2 depreciations and the date the "
"depreciations won't go beyond."
msgstr ""
"Die Methode, die verwendet wird, um das Datum und Anzahl der "
"Abschreibungesbuchungen zu berechnen.\n"
"Anzahl der Abschreibungen: Anzahl der Abschreibungsbuchungen und Zeit "
"zwischen 2 Abschreibungen.\n"
"Ende Datum: Wählen Sie die Zeit zwischen 2 Abschreibungen und das Datum nach "
"dem keine Abschreibungen mehr berechnet werden."
#. module: account_asset
#: field:account.asset.asset,purchase_value:0
msgid "Gross value "
msgstr ""
msgstr "Brutto Wert "
#. module: account_asset
#: constraint:account.asset.asset:0
msgid "Error ! You can not create recursive assets."
msgstr ""
msgstr "Fehler! Sie können keine rekursiven Anlagen erzeugen"
#. module: account_asset
#: help:account.asset.history,method_period:0
msgid "Time in month between two depreciations"
msgstr ""
msgstr "Zeit in Monaten zwischen 2 Abschreibungen"
#. module: account_asset
#: view:asset.asset.report:0
#: field:asset.asset.report,name:0
msgid "Year"
msgstr ""
msgstr "Jahr"
#. module: account_asset
#: view:asset.modify:0
#: model:ir.actions.act_window,name:account_asset.action_asset_modify
#: model:ir.model,name:account_asset.model_asset_modify
msgid "Modify Asset"
msgstr ""
msgstr "Anlage Ändern"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Other Information"
msgstr ""
msgstr "Weitere Informationen"
#. module: account_asset
#: field:account.asset.asset,salvage_value:0
msgid "Salvage Value"
msgstr ""
msgstr "Liquidationswert"
#. module: account_asset
#: field:account.invoice.line,asset_category_id:0
@ -365,7 +379,7 @@ msgstr "Anlagenkategorie"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Set to Close"
msgstr ""
msgstr "Abschliessen"
#. module: account_asset
#: model:ir.actions.wizard,name:account_asset.wizard_asset_compute
@ -380,12 +394,12 @@ msgstr "Verändere Anlagegut"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Assets in closed state"
msgstr ""
msgstr "abgeschlossene Anlagen"
#. module: account_asset
#: field:account.asset.asset,parent_id:0
msgid "Parent Asset"
msgstr ""
msgstr "Übergeordnete Anlage"
#. module: account_asset
#: view:account.asset.history:0
@ -396,7 +410,7 @@ msgstr "Anlagenhistorie"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets purchased in current year"
msgstr ""
msgstr "Anlagen Anschaffungen im laufenden Jahr"
#. module: account_asset
#: field:account.asset.asset,state:0
@ -407,51 +421,51 @@ msgstr "Status"
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_invoice_line
msgid "Invoice Line"
msgstr ""
msgstr "Rechnungsposition"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Month"
msgstr ""
msgstr "Monat"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Depreciation Board"
msgstr ""
msgstr "Abschreibungsspiegel"
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_move_line
msgid "Journal Items"
msgstr ""
msgstr "Journaleinträge"
#. module: account_asset
#: field:asset.asset.report,unposted_value:0
msgid "Unposted Amount"
msgstr ""
msgstr "Nicht verbuchter Betrag"
#. module: account_asset
#: field:account.asset.asset,method_time:0
#: field:account.asset.category,method_time:0
#: field:account.asset.history,method_time:0
msgid "Time Method"
msgstr ""
msgstr "Zeit Methode"
#. module: account_asset
#: constraint:account.move.line:0
msgid ""
"The selected account of your Journal Entry must receive a value in its "
"secondary currency"
msgstr ""
msgstr "Das ausgewählte Konto muss auch in der 2.Währung bebucht werden."
#. module: account_asset
#: view:account.asset.category:0
msgid "Analytic information"
msgstr ""
msgstr "Analytische Information"
#. module: account_asset
#: view:asset.modify:0
msgid "Asset durations to modify"
msgstr ""
msgstr "Anlage Lebensdauer verändern"
#. module: account_asset
#: field:account.asset.asset,note:0
@ -468,6 +482,9 @@ msgid ""
" * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n"
" * Degressive: Calculated on basis of: Remaining Value * Degressive Factor"
msgstr ""
"Wählen Sie die Methode der Berechnung der Abschreibungsbeträge.\n"
" * Linear: Berechnung: Brutto Wert / Anzahl der Abschreibungen\n"
" * Degressive: Berechnung : Restbuchwert * Degressiven Faktor"
#. module: account_asset
#: help:account.asset.asset,method_time:0
@ -480,16 +497,21 @@ msgid ""
" * Ending Date: Choose the time between 2 depreciations and the date the "
"depreciations won't go beyond."
msgstr ""
"Wählen Sie die Methode für Datum und Anzahl der Abschreibungen.\n"
" * Anzahl der Abschreibungen: Definieren Sie die Anzahl der Abschreibungen "
"und die Perioden zwischen 2 Abschreibungen.\n"
" * End Datum: Wählen Sie die Zeit zwischen 2 Abschreibungen und das End "
"Datum."
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets in running state"
msgstr ""
msgstr "Anlage Aktiv"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Closed"
msgstr ""
msgstr "Abgeschlossen"
#. module: account_asset
#: field:account.asset.asset,partner_id:0
@ -501,22 +523,22 @@ msgstr "Partner"
#: view:asset.asset.report:0
#: field:asset.asset.report,depreciation_value:0
msgid "Amount of Depreciation Lines"
msgstr ""
msgstr "Betrag der Abschreibungen"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Posted depreciation lines"
msgstr ""
msgstr "verbuchte Abschreibungen"
#. module: account_asset
#: field:account.asset.asset,child_ids:0
msgid "Children Assets"
msgstr ""
msgstr "untergeordnete Anlagen"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Date of depreciation"
msgstr ""
msgstr "Abschreibungsdatum"
#. module: account_asset
#: field:account.asset.history,user_id:0
@ -531,38 +553,41 @@ msgstr "Datum"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets purchased in current month"
msgstr ""
msgstr "Anlagenkäufe des aktuellen Monats"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Extended Filters..."
msgstr ""
msgstr "Erweiterter Filter..."
#. module: account_asset
#: constraint:account.move.line:0
msgid "Company must be same for its related account and period."
msgstr ""
"Das Unternehmen muss für zugehörige Konten und Perioden identisch sein."
#. module: account_asset
#: view:account.asset.asset:0
#: view:asset.depreciation.confirmation.wizard:0
msgid "Compute"
msgstr ""
msgstr "Berechnen"
#. module: account_asset
#: view:account.asset.category:0
msgid "Search Asset Category"
msgstr ""
msgstr "Suche Anlagen Kategorie"
#. module: account_asset
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
"Das Datum Ihrer Journalbuchung befindet sich nicht in der definierten "
"Periode!"
#. module: account_asset
#: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard
msgid "asset.depreciation.confirmation.wizard"
msgstr ""
msgstr "asset.depreciation.confirmation.wizard"
#. module: account_asset
#: field:account.asset.asset,active:0
@ -577,12 +602,12 @@ msgstr "Anlagegut schliessen"
#. module: account_asset
#: field:account.asset.depreciation.line,parent_state:0
msgid "State of Asset"
msgstr ""
msgstr "Status der Anlage"
#. module: account_asset
#: field:account.asset.depreciation.line,name:0
msgid "Depreciation Name"
msgstr ""
msgstr "Abschreibung Bezeichnung"
#. module: account_asset
#: view:account.asset.asset:0
@ -593,7 +618,7 @@ msgstr "Verlauf"
#. module: account_asset
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Die Rechnungsnummer muss je Firma eindeutig sein"
#. module: account_asset
#: field:asset.depreciation.confirmation.wizard,period_id:0
@ -603,28 +628,28 @@ msgstr "Periode"
#. module: account_asset
#: view:account.asset.asset:0
msgid "General"
msgstr ""
msgstr "Allgemein"
#. module: account_asset
#: field:account.asset.asset,prorata:0
#: field:account.asset.category,prorata:0
msgid "Prorata Temporis"
msgstr ""
msgstr "Prorata Temporis"
#. module: account_asset
#: view:account.asset.category:0
msgid "Accounting information"
msgstr ""
msgstr "Buchhaltung Information"
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_invoice
msgid "Invoice"
msgstr ""
msgstr "Rechnung"
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_form_normal
msgid "Review Asset Categories"
msgstr ""
msgstr "Überarbeite Anlagen Kategorien"
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
@ -642,20 +667,20 @@ msgstr "Schließen"
#: view:account.asset.asset:0
#: view:account.asset.category:0
msgid "Depreciation Method"
msgstr ""
msgstr "Abschreibungsmethode"
#. module: account_asset
#: field:account.asset.asset,purchase_date:0
#: view:asset.asset.report:0
#: field:asset.asset.report,purchase_date:0
msgid "Purchase Date"
msgstr ""
msgstr "Kaufdatum"
#. module: account_asset
#: selection:account.asset.asset,method:0
#: selection:account.asset.category,method:0
msgid "Degressive"
msgstr ""
msgstr "Degressiv"
#. module: account_asset
#: help:asset.depreciation.confirmation.wizard,period_id:0
@ -663,33 +688,35 @@ msgid ""
"Choose the period for which you want to automatically post the depreciation "
"lines of running assets"
msgstr ""
"Wählen Sie die Periode für die automatische Abschreibungsbuchungen der "
"aktiven Anlagen erzeugt werden sollen."
#. module: account_asset
#: view:account.asset.asset:0
msgid "Current"
msgstr ""
msgstr "Aktuell"
#. module: account_asset
#: field:account.asset.depreciation.line,remaining_value:0
msgid "Amount to Depreciate"
msgstr ""
msgstr "Abzuschreibender Betrag"
#. module: account_asset
#: field:account.asset.category,open_asset:0
msgid "Skip Draft State"
msgstr ""
msgstr "Überspringe Entwurf Status"
#. module: account_asset
#: view:account.asset.asset:0
#: view:account.asset.category:0
#: view:account.asset.history:0
msgid "Depreciation Dates"
msgstr ""
msgstr "Abschreibung Datum"
#. module: account_asset
#: field:account.asset.asset,currency_id:0
msgid "Currency"
msgstr ""
msgstr "Währung"
#. module: account_asset
#: field:account.asset.category,journal_id:0
@ -699,14 +726,14 @@ msgstr "Journal"
#. module: account_asset
#: field:account.asset.depreciation.line,depreciated_value:0
msgid "Amount Already Depreciated"
msgstr ""
msgstr "Bereits abgeschriebener Betrag"
#. module: account_asset
#: field:account.asset.depreciation.line,move_check:0
#: view:asset.asset.report:0
#: field:asset.asset.report,move_check:0
msgid "Posted"
msgstr ""
msgstr "Gebucht"
#. module: account_asset
#: help:account.asset.asset,state:0
@ -717,11 +744,18 @@ msgid ""
"You can manually close an asset when the depreciation is over. If the last "
"line of depreciation is posted, the asset automatically goes in that state."
msgstr ""
"Wenn eine Anlage angelegt wird, ist der Status \"Entwurf\".\n"
"Nach Bestätigung der Anlage wird dies aktiv und Abschreibungen können "
"verbucht werden.\n"
"Sie können die Anlage automatisch schließen, wenn die Abschreibungen vorbei "
"sind. \n"
"Nach Verbuchung der letzen Abschreibung wird die Anlage automatisch "
"geschlossen."
#. module: account_asset
#: field:account.asset.category,name:0
msgid "Name"
msgstr ""
msgstr "Bezeichnung"
#. module: account_asset
#: help:account.asset.category,open_asset:0
@ -729,11 +763,13 @@ msgid ""
"Check this if you want to automatically confirm the assets of this category "
"when created by invoices."
msgstr ""
"Aktivieren, wenn die Anlage dieser Kategorie automatisch mit der Verbuchung "
"der Rechnung bestätigt werden soll."
#. module: account_asset
#: view:account.asset.asset:0
msgid "Set to Draft"
msgstr ""
msgstr "Setze auf Entwurf"
#. module: account_asset
#: selection:account.asset.asset,method:0
@ -744,12 +780,12 @@ msgstr "Linear"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Month-1"
msgstr ""
msgstr "Monat-1"
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_asset_depreciation_line
msgid "Asset depreciation line"
msgstr ""
msgstr "Anlage Abschreibungeszeile"
#. module: account_asset
#: field:account.asset.asset,category_id:0
@ -762,13 +798,13 @@ msgstr "Analgenkategorie"
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets purchased in last month"
msgstr ""
msgstr "Anlagen im letzen Monat gekauft"
#. module: account_asset
#: code:addons/account_asset/wizard/wizard_asset_compute.py:49
#, python-format
msgid "Created Asset Moves"
msgstr ""
msgstr "Erzeugte Anlagenbuchungen"
#. module: account_asset
#: model:ir.actions.act_window,help:account_asset.action_asset_asset_report
@ -777,11 +813,13 @@ msgid ""
"search can also be used to personalise your Assets reports and so, match "
"this analysis to your needs;"
msgstr ""
"Dieser Report gibt einen Überblick über alle Abschreibungen. Mit dem "
"Suchwerkzeug können Sie den Report an Ihre Bedürfnisse anpassen."
#. module: account_asset
#: help:account.asset.category,method_period:0
msgid "State here the time between 2 depreciations, in months"
msgstr ""
msgstr "Definieren Sie hier die Monate zwischen 2 Abschreibungen"
#. module: account_asset
#: field:account.asset.asset,method_number:0
@ -792,22 +830,22 @@ msgstr ""
#: selection:account.asset.history,method_time:0
#: field:asset.modify,method_number:0
msgid "Number of Depreciations"
msgstr ""
msgstr "Anzahl der Abschreibungen"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Create Move"
msgstr ""
msgstr "Erzeuge Buchung"
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
msgid "Post Depreciation Lines"
msgstr ""
msgstr "Verbuche Abschreibungen"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Confirm Asset"
msgstr ""
msgstr "Bestätige Anlage"
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree
@ -818,7 +856,7 @@ msgstr "Anlangenhierarchie"
#. module: account_asset
#: constraint:account.move.line:0
msgid "You can not create move line on view account."
msgstr ""
msgstr "Sie können keine Buchungen auf Konten des Typs Ansicht erstellen."
#~ msgid "Child assets"
#~ msgstr "untergeordnete Anlagengüter"

View File

@ -0,0 +1,821 @@
# Dutch translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:43+0000\n"
"PO-Revision-Date: 2012-01-15 12:39+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Dutch <nl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-16 05:19+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Assets in draft and open states"
msgstr ""
#. module: account_asset
#: field:account.asset.category,method_end:0
#: field:account.asset.history,method_end:0
#: field:asset.modify,method_end:0
msgid "Ending date"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,value_residual:0
msgid "Residual Value"
msgstr ""
#. module: account_asset
#: field:account.asset.category,account_expense_depreciation_id:0
msgid "Depr. Expense Account"
msgstr ""
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
msgid "Compute Asset"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Group By..."
msgstr ""
#. module: account_asset
#: field:asset.asset.report,gross_value:0
msgid "Gross Amount"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: field:account.asset.asset,name:0
#: field:account.asset.depreciation.line,asset_id:0
#: field:account.asset.history,asset_id:0
#: field:account.move.line,asset_id:0
#: view:asset.asset.report:0
#: field:asset.asset.report,asset_id:0
#: model:ir.model,name:account_asset.model_account_asset_asset
msgid "Asset"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,prorata:0
#: help:account.asset.category,prorata:0
msgid ""
"Indicates that the first depreciation entry for this asset have to be done "
"from the purchase date instead of the first January"
msgstr ""
#. module: account_asset
#: field:account.asset.history,name:0
msgid "History name"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,company_id:0
#: field:account.asset.category,company_id:0
#: view:asset.asset.report:0
#: field:asset.asset.report,company_id:0
msgid "Company"
msgstr ""
#. module: account_asset
#: view:asset.modify:0
msgid "Modify"
msgstr ""
#. module: account_asset
#: selection:account.asset.asset,state:0
#: view:asset.asset.report:0
#: selection:asset.asset.report,state:0
msgid "Running"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,amount:0
msgid "Depreciation Amount"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
#: model:ir.actions.act_window,name:account_asset.action_asset_asset_report
#: model:ir.model,name:account_asset.model_asset_asset_report
#: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report
msgid "Assets Analysis"
msgstr ""
#. module: account_asset
#: field:asset.modify,name:0
msgid "Reason"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,method_progress_factor:0
#: field:account.asset.category,method_progress_factor:0
msgid "Degressive Factor"
msgstr ""
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal
#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal
msgid "Asset Categories"
msgstr ""
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
msgid ""
"This wizard will post the depreciation lines of running assets that belong "
"to the selected period."
msgstr ""
#. module: account_asset
#: field:account.asset.asset,account_move_line_ids:0
#: field:account.move.line,entry_ids:0
#: model:ir.actions.act_window,name:account_asset.act_entries_open
msgid "Entries"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: field:account.asset.asset,depreciation_line_ids:0
msgid "Depreciation Lines"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,salvage_value:0
msgid "It is the amount you plan to have that you cannot depreciate."
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,depreciation_date:0
#: view:asset.asset.report:0
#: field:asset.asset.report,depreciation_date:0
msgid "Depreciation Date"
msgstr ""
#. module: account_asset
#: field:account.asset.category,account_asset_id:0
msgid "Asset Account"
msgstr ""
#. module: account_asset
#: field:asset.asset.report,posted_value:0
msgid "Posted Amount"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: view:asset.asset.report:0
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_form
#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_form
#: model:ir.ui.menu,name:account_asset.menu_finance_assets
#: model:ir.ui.menu,name:account_asset.menu_finance_config_assets
msgid "Assets"
msgstr ""
#. module: account_asset
#: field:account.asset.category,account_depreciation_id:0
msgid "Depreciation Account"
msgstr ""
#. module: account_asset
#: constraint:account.move.line:0
msgid "You can not create move line on closed account."
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: view:account.asset.category:0
#: view:account.asset.history:0
#: view:asset.modify:0
#: field:asset.modify,note:0
msgid "Notes"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,move_id:0
msgid "Depreciation Entry"
msgstr ""
#. module: account_asset
#: sql_constraint:account.move.line:0
msgid "Wrong credit or debit value in accounting entry !"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
#: field:asset.asset.report,nbr:0
msgid "# of Depreciation Lines"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets in draft state"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,method_end:0
#: selection:account.asset.asset,method_time:0
#: selection:account.asset.category,method_time:0
#: selection:account.asset.history,method_time:0
msgid "Ending Date"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,code:0
msgid "Reference"
msgstr ""
#. module: account_asset
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Account Asset"
msgstr ""
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard
#: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard
msgid "Compute Assets"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,sequence:0
msgid "Sequence of the depreciation"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,method_period:0
#: field:account.asset.category,method_period:0
#: field:account.asset.history,method_period:0
#: field:asset.modify,method_period:0
msgid "Period Length"
msgstr ""
#. module: account_asset
#: selection:account.asset.asset,state:0
#: view:asset.asset.report:0
#: selection:asset.asset.report,state:0
msgid "Draft"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Date of asset purchase"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,method_number:0
msgid "Calculates Depreciation within specified interval"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Change Duration"
msgstr ""
#. module: account_asset
#: field:account.asset.category,account_analytic_id:0
msgid "Analytic account"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,method:0
#: field:account.asset.category,method:0
msgid "Computation Method"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,method_period:0
msgid "State here the time during 2 depreciations, in months"
msgstr ""
#. module: account_asset
#: constraint:account.asset.asset:0
msgid ""
"Prorata temporis can be applied only for time method \"number of "
"depreciations\"."
msgstr ""
#. module: account_asset
#: help:account.asset.history,method_time:0
msgid ""
"The method to use to compute the dates and number of depreciation lines.\n"
"Number of Depreciations: Fix the number of depreciation lines and the time "
"between 2 depreciations.\n"
"Ending Date: Choose the time between 2 depreciations and the date the "
"depreciations won't go beyond."
msgstr ""
#. module: account_asset
#: field:account.asset.asset,purchase_value:0
msgid "Gross value "
msgstr ""
#. module: account_asset
#: constraint:account.asset.asset:0
msgid "Error ! You can not create recursive assets."
msgstr ""
#. module: account_asset
#: help:account.asset.history,method_period:0
msgid "Time in month between two depreciations"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
#: field:asset.asset.report,name:0
msgid "Year"
msgstr ""
#. module: account_asset
#: view:asset.modify:0
#: model:ir.actions.act_window,name:account_asset.action_asset_modify
#: model:ir.model,name:account_asset.model_asset_modify
msgid "Modify Asset"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Other Information"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,salvage_value:0
msgid "Salvage Value"
msgstr ""
#. module: account_asset
#: field:account.invoice.line,asset_category_id:0
#: view:asset.asset.report:0
msgid "Asset Category"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Set to Close"
msgstr ""
#. module: account_asset
#: model:ir.actions.wizard,name:account_asset.wizard_asset_compute
msgid "Compute assets"
msgstr ""
#. module: account_asset
#: model:ir.actions.wizard,name:account_asset.wizard_asset_modify
msgid "Modify asset"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Assets in closed state"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,parent_id:0
msgid "Parent Asset"
msgstr ""
#. module: account_asset
#: view:account.asset.history:0
#: model:ir.model,name:account_asset.model_account_asset_history
msgid "Asset history"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets purchased in current year"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,state:0
#: field:asset.asset.report,state:0
msgid "State"
msgstr ""
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_invoice_line
msgid "Invoice Line"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Month"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Depreciation Board"
msgstr ""
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_move_line
msgid "Journal Items"
msgstr ""
#. module: account_asset
#: field:asset.asset.report,unposted_value:0
msgid "Unposted Amount"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,method_time:0
#: field:account.asset.category,method_time:0
#: field:account.asset.history,method_time:0
msgid "Time Method"
msgstr ""
#. module: account_asset
#: constraint:account.move.line:0
msgid ""
"The selected account of your Journal Entry must receive a value in its "
"secondary currency"
msgstr ""
#. module: account_asset
#: view:account.asset.category:0
msgid "Analytic information"
msgstr ""
#. module: account_asset
#: view:asset.modify:0
msgid "Asset durations to modify"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,note:0
#: field:account.asset.category,note:0
#: field:account.asset.history,note:0
msgid "Note"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,method:0
#: help:account.asset.category,method:0
msgid ""
"Choose the method to use to compute the amount of depreciation lines.\n"
" * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n"
" * Degressive: Calculated on basis of: Remaining Value * Degressive Factor"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,method_time:0
#: help:account.asset.category,method_time:0
msgid ""
"Choose the method to use to compute the dates and number of depreciation "
"lines.\n"
" * Number of Depreciations: Fix the number of depreciation lines and the "
"time between 2 depreciations.\n"
" * Ending Date: Choose the time between 2 depreciations and the date the "
"depreciations won't go beyond."
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets in running state"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Closed"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,partner_id:0
#: field:asset.asset.report,partner_id:0
msgid "Partner"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
#: field:asset.asset.report,depreciation_value:0
msgid "Amount of Depreciation Lines"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Posted depreciation lines"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,child_ids:0
msgid "Children Assets"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Date of depreciation"
msgstr ""
#. module: account_asset
#: field:account.asset.history,user_id:0
msgid "User"
msgstr ""
#. module: account_asset
#: field:account.asset.history,date:0
msgid "Date"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets purchased in current month"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Extended Filters..."
msgstr ""
#. module: account_asset
#: constraint:account.move.line:0
msgid "Company must be same for its related account and period."
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: view:asset.depreciation.confirmation.wizard:0
msgid "Compute"
msgstr ""
#. module: account_asset
#: view:account.asset.category:0
msgid "Search Asset Category"
msgstr ""
#. module: account_asset
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
#. module: account_asset
#: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard
msgid "asset.depreciation.confirmation.wizard"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,active:0
msgid "Active"
msgstr ""
#. module: account_asset
#: model:ir.actions.wizard,name:account_asset.wizard_asset_close
msgid "Close asset"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,parent_state:0
msgid "State of Asset"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,name:0
msgid "Depreciation Name"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: field:account.asset.asset,history_ids:0
msgid "History"
msgstr ""
#. module: account_asset
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
#. module: account_asset
#: field:asset.depreciation.confirmation.wizard,period_id:0
msgid "Period"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "General"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,prorata:0
#: field:account.asset.category,prorata:0
msgid "Prorata Temporis"
msgstr ""
#. module: account_asset
#: view:account.asset.category:0
msgid "Accounting information"
msgstr ""
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_invoice
msgid "Invoice"
msgstr ""
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_form_normal
msgid "Review Asset Categories"
msgstr ""
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
#: view:asset.modify:0
msgid "Cancel"
msgstr ""
#. module: account_asset
#: selection:account.asset.asset,state:0
#: selection:asset.asset.report,state:0
msgid "Close"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: view:account.asset.category:0
msgid "Depreciation Method"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,purchase_date:0
#: view:asset.asset.report:0
#: field:asset.asset.report,purchase_date:0
msgid "Purchase Date"
msgstr ""
#. module: account_asset
#: selection:account.asset.asset,method:0
#: selection:account.asset.category,method:0
msgid "Degressive"
msgstr ""
#. module: account_asset
#: help:asset.depreciation.confirmation.wizard,period_id:0
msgid ""
"Choose the period for which you want to automatically post the depreciation "
"lines of running assets"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Current"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,remaining_value:0
msgid "Amount to Depreciate"
msgstr ""
#. module: account_asset
#: field:account.asset.category,open_asset:0
msgid "Skip Draft State"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: view:account.asset.category:0
#: view:account.asset.history:0
msgid "Depreciation Dates"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,currency_id:0
msgid "Currency"
msgstr ""
#. module: account_asset
#: field:account.asset.category,journal_id:0
msgid "Journal"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,depreciated_value:0
msgid "Amount Already Depreciated"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,move_check:0
#: view:asset.asset.report:0
#: field:asset.asset.report,move_check:0
msgid "Posted"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,state:0
msgid ""
"When an asset is created, the state is 'Draft'.\n"
"If the asset is confirmed, the state goes in 'Running' and the depreciation "
"lines can be posted in the accounting.\n"
"You can manually close an asset when the depreciation is over. If the last "
"line of depreciation is posted, the asset automatically goes in that state."
msgstr ""
#. module: account_asset
#: field:account.asset.category,name:0
msgid "Name"
msgstr ""
#. module: account_asset
#: help:account.asset.category,open_asset:0
msgid ""
"Check this if you want to automatically confirm the assets of this category "
"when created by invoices."
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Set to Draft"
msgstr ""
#. module: account_asset
#: selection:account.asset.asset,method:0
#: selection:account.asset.category,method:0
msgid "Linear"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Month-1"
msgstr ""
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_asset_depreciation_line
msgid "Asset depreciation line"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,category_id:0
#: view:account.asset.category:0
#: field:asset.asset.report,asset_category_id:0
#: model:ir.model,name:account_asset.model_account_asset_category
msgid "Asset category"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets purchased in last month"
msgstr ""
#. module: account_asset
#: code:addons/account_asset/wizard/wizard_asset_compute.py:49
#, python-format
msgid "Created Asset Moves"
msgstr ""
#. module: account_asset
#: model:ir.actions.act_window,help:account_asset.action_asset_asset_report
msgid ""
"From this report, you can have an overview on all depreciation. The tool "
"search can also be used to personalise your Assets reports and so, match "
"this analysis to your needs;"
msgstr ""
#. module: account_asset
#: help:account.asset.category,method_period:0
msgid "State here the time between 2 depreciations, in months"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,method_number:0
#: selection:account.asset.asset,method_time:0
#: field:account.asset.category,method_number:0
#: selection:account.asset.category,method_time:0
#: field:account.asset.history,method_number:0
#: selection:account.asset.history,method_time:0
#: field:asset.modify,method_number:0
msgid "Number of Depreciations"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Create Move"
msgstr ""
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
msgid "Post Depreciation Lines"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Confirm Asset"
msgstr ""
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree
#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree
msgid "Asset Hierarchy"
msgstr ""
#. module: account_asset
#: constraint:account.move.line:0
msgid "You can not create move line on view account."
msgstr ""

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:43+0000\n"
"PO-Revision-Date: 2011-09-30 14:07+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-18 02:46+0000\n"
"Last-Translator: Rafael Sales <Unknown>\n"
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:36+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-19 04:51+0000\n"
"X-Generator: Launchpad (build 14692)\n"
#. module: account_asset
#: view:account.asset.asset:0
@ -27,7 +27,7 @@ msgstr ""
#: field:account.asset.history,method_end:0
#: field:asset.modify,method_end:0
msgid "Ending date"
msgstr ""
msgstr "Data de término"
#. module: account_asset
#: field:account.asset.asset,value_residual:0
@ -47,12 +47,12 @@ msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Group By..."
msgstr ""
msgstr "Agrupado Por..."
#. module: account_asset
#: field:asset.asset.report,gross_value:0
msgid "Gross Amount"
msgstr ""
msgstr "Valor Bruto"
#. module: account_asset
#: view:account.asset.asset:0
@ -64,7 +64,7 @@ msgstr ""
#: field:asset.asset.report,asset_id:0
#: model:ir.model,name:account_asset.model_account_asset_asset
msgid "Asset"
msgstr ""
msgstr "Ativo"
#. module: account_asset
#: help:account.asset.asset,prorata:0
@ -85,19 +85,19 @@ msgstr ""
#: view:asset.asset.report:0
#: field:asset.asset.report,company_id:0
msgid "Company"
msgstr ""
msgstr "Empresa"
#. module: account_asset
#: view:asset.modify:0
msgid "Modify"
msgstr ""
msgstr "Modificar"
#. module: account_asset
#: selection:account.asset.asset,state:0
#: view:asset.asset.report:0
#: selection:asset.asset.report,state:0
msgid "Running"
msgstr ""
msgstr "Executando"
#. module: account_asset
#: field:account.asset.depreciation.line,amount:0
@ -115,7 +115,7 @@ msgstr ""
#. module: account_asset
#: field:asset.modify,name:0
msgid "Reason"
msgstr ""
msgstr "Motivo"
#. module: account_asset
#: field:account.asset.asset,method_progress_factor:0
@ -141,7 +141,7 @@ msgstr ""
#: field:account.move.line,entry_ids:0
#: model:ir.actions.act_window,name:account_asset.act_entries_open
msgid "Entries"
msgstr ""
msgstr "Entradas"
#. module: account_asset
#: view:account.asset.asset:0
@ -179,7 +179,7 @@ msgstr ""
#: model:ir.ui.menu,name:account_asset.menu_finance_assets
#: model:ir.ui.menu,name:account_asset.menu_finance_config_assets
msgid "Assets"
msgstr ""
msgstr "Ativos"
#. module: account_asset
#: field:account.asset.category,account_depreciation_id:0
@ -189,7 +189,7 @@ msgstr ""
#. module: account_asset
#: constraint:account.move.line:0
msgid "You can not create move line on closed account."
msgstr ""
msgstr "Você não pode criar linhas de movimento em uma conta fechada."
#. module: account_asset
#: view:account.asset.asset:0
@ -198,17 +198,17 @@ msgstr ""
#: view:asset.modify:0
#: field:asset.modify,note:0
msgid "Notes"
msgstr ""
msgstr "Notas"
#. module: account_asset
#: field:account.asset.depreciation.line,move_id:0
msgid "Depreciation Entry"
msgstr ""
msgstr "Registro de Depreciação"
#. module: account_asset
#: sql_constraint:account.move.line:0
msgid "Wrong credit or debit value in accounting entry !"
msgstr ""
msgstr "Valor de Crédito ou Débito incorreto no lançamento contábil!"
#. module: account_asset
#: view:asset.asset.report:0
@ -227,12 +227,12 @@ msgstr ""
#: selection:account.asset.category,method_time:0
#: selection:account.asset.history,method_time:0
msgid "Ending Date"
msgstr ""
msgstr "Data Final"
#. module: account_asset
#: field:account.asset.asset,code:0
msgid "Reference"
msgstr ""
msgstr "Referência"
#. module: account_asset
#: constraint:account.invoice:0
@ -268,7 +268,7 @@ msgstr ""
#: view:asset.asset.report:0
#: selection:asset.asset.report,state:0
msgid "Draft"
msgstr ""
msgstr "Rascunho"
#. module: account_asset
#: view:asset.asset.report:0
@ -288,7 +288,7 @@ msgstr ""
#. module: account_asset
#: field:account.asset.category,account_analytic_id:0
msgid "Analytic account"
msgstr ""
msgstr "Conta analítica"
#. module: account_asset
#: field:account.asset.asset,method:0
@ -370,12 +370,12 @@ msgstr ""
#. module: account_asset
#: model:ir.actions.wizard,name:account_asset.wizard_asset_compute
msgid "Compute assets"
msgstr ""
msgstr "Calcular ativos"
#. module: account_asset
#: model:ir.actions.wizard,name:account_asset.wizard_asset_modify
msgid "Modify asset"
msgstr ""
msgstr "Modificar ativo"
#. module: account_asset
#: view:account.asset.asset:0
@ -391,7 +391,7 @@ msgstr ""
#: view:account.asset.history:0
#: model:ir.model,name:account_asset.model_account_asset_history
msgid "Asset history"
msgstr ""
msgstr "Histórico do ativo"
#. module: account_asset
#: view:asset.asset.report:0
@ -402,7 +402,7 @@ msgstr ""
#: field:account.asset.asset,state:0
#: field:asset.asset.report,state:0
msgid "State"
msgstr ""
msgstr "Estado"
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_invoice_line
@ -458,7 +458,7 @@ msgstr ""
#: field:account.asset.category,note:0
#: field:account.asset.history,note:0
msgid "Note"
msgstr ""
msgstr "Nota"
#. module: account_asset
#: help:account.asset.asset,method:0
@ -495,7 +495,7 @@ msgstr ""
#: field:account.asset.asset,partner_id:0
#: field:asset.asset.report,partner_id:0
msgid "Partner"
msgstr ""
msgstr "Parceiro"
#. module: account_asset
#: view:asset.asset.report:0
@ -739,7 +739,7 @@ msgstr ""
#: selection:account.asset.asset,method:0
#: selection:account.asset.category,method:0
msgid "Linear"
msgstr ""
msgstr "Linear"
#. module: account_asset
#: view:asset.asset.report:0
@ -813,7 +813,7 @@ msgstr ""
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree
#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree
msgid "Asset Hierarchy"
msgstr ""
msgstr "Hierarquia do ativo"
#. module: account_asset
#: constraint:account.move.line:0

View File

@ -0,0 +1,821 @@
# Turkish translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:43+0000\n"
"PO-Revision-Date: 2012-01-25 17:20+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-26 05:28+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_asset
#: view:account.asset.asset:0
msgid "Assets in draft and open states"
msgstr ""
#. module: account_asset
#: field:account.asset.category,method_end:0
#: field:account.asset.history,method_end:0
#: field:asset.modify,method_end:0
msgid "Ending date"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,value_residual:0
msgid "Residual Value"
msgstr ""
#. module: account_asset
#: field:account.asset.category,account_expense_depreciation_id:0
msgid "Depr. Expense Account"
msgstr ""
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
msgid "Compute Asset"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Group By..."
msgstr "Grupla..."
#. module: account_asset
#: field:asset.asset.report,gross_value:0
msgid "Gross Amount"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: field:account.asset.asset,name:0
#: field:account.asset.depreciation.line,asset_id:0
#: field:account.asset.history,asset_id:0
#: field:account.move.line,asset_id:0
#: view:asset.asset.report:0
#: field:asset.asset.report,asset_id:0
#: model:ir.model,name:account_asset.model_account_asset_asset
msgid "Asset"
msgstr "Varlık"
#. module: account_asset
#: help:account.asset.asset,prorata:0
#: help:account.asset.category,prorata:0
msgid ""
"Indicates that the first depreciation entry for this asset have to be done "
"from the purchase date instead of the first January"
msgstr ""
#. module: account_asset
#: field:account.asset.history,name:0
msgid "History name"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,company_id:0
#: field:account.asset.category,company_id:0
#: view:asset.asset.report:0
#: field:asset.asset.report,company_id:0
msgid "Company"
msgstr ""
#. module: account_asset
#: view:asset.modify:0
msgid "Modify"
msgstr ""
#. module: account_asset
#: selection:account.asset.asset,state:0
#: view:asset.asset.report:0
#: selection:asset.asset.report,state:0
msgid "Running"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,amount:0
msgid "Depreciation Amount"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
#: model:ir.actions.act_window,name:account_asset.action_asset_asset_report
#: model:ir.model,name:account_asset.model_asset_asset_report
#: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report
msgid "Assets Analysis"
msgstr ""
#. module: account_asset
#: field:asset.modify,name:0
msgid "Reason"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,method_progress_factor:0
#: field:account.asset.category,method_progress_factor:0
msgid "Degressive Factor"
msgstr ""
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal
#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal
msgid "Asset Categories"
msgstr ""
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
msgid ""
"This wizard will post the depreciation lines of running assets that belong "
"to the selected period."
msgstr ""
#. module: account_asset
#: field:account.asset.asset,account_move_line_ids:0
#: field:account.move.line,entry_ids:0
#: model:ir.actions.act_window,name:account_asset.act_entries_open
msgid "Entries"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: field:account.asset.asset,depreciation_line_ids:0
msgid "Depreciation Lines"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,salvage_value:0
msgid "It is the amount you plan to have that you cannot depreciate."
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,depreciation_date:0
#: view:asset.asset.report:0
#: field:asset.asset.report,depreciation_date:0
msgid "Depreciation Date"
msgstr ""
#. module: account_asset
#: field:account.asset.category,account_asset_id:0
msgid "Asset Account"
msgstr ""
#. module: account_asset
#: field:asset.asset.report,posted_value:0
msgid "Posted Amount"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: view:asset.asset.report:0
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_form
#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_form
#: model:ir.ui.menu,name:account_asset.menu_finance_assets
#: model:ir.ui.menu,name:account_asset.menu_finance_config_assets
msgid "Assets"
msgstr ""
#. module: account_asset
#: field:account.asset.category,account_depreciation_id:0
msgid "Depreciation Account"
msgstr ""
#. module: account_asset
#: constraint:account.move.line:0
msgid "You can not create move line on closed account."
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: view:account.asset.category:0
#: view:account.asset.history:0
#: view:asset.modify:0
#: field:asset.modify,note:0
msgid "Notes"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,move_id:0
msgid "Depreciation Entry"
msgstr ""
#. module: account_asset
#: sql_constraint:account.move.line:0
msgid "Wrong credit or debit value in accounting entry !"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
#: field:asset.asset.report,nbr:0
msgid "# of Depreciation Lines"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets in draft state"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,method_end:0
#: selection:account.asset.asset,method_time:0
#: selection:account.asset.category,method_time:0
#: selection:account.asset.history,method_time:0
msgid "Ending Date"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,code:0
msgid "Reference"
msgstr ""
#. module: account_asset
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Account Asset"
msgstr ""
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard
#: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard
msgid "Compute Assets"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,sequence:0
msgid "Sequence of the depreciation"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,method_period:0
#: field:account.asset.category,method_period:0
#: field:account.asset.history,method_period:0
#: field:asset.modify,method_period:0
msgid "Period Length"
msgstr ""
#. module: account_asset
#: selection:account.asset.asset,state:0
#: view:asset.asset.report:0
#: selection:asset.asset.report,state:0
msgid "Draft"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Date of asset purchase"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,method_number:0
msgid "Calculates Depreciation within specified interval"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Change Duration"
msgstr ""
#. module: account_asset
#: field:account.asset.category,account_analytic_id:0
msgid "Analytic account"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,method:0
#: field:account.asset.category,method:0
msgid "Computation Method"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,method_period:0
msgid "State here the time during 2 depreciations, in months"
msgstr ""
#. module: account_asset
#: constraint:account.asset.asset:0
msgid ""
"Prorata temporis can be applied only for time method \"number of "
"depreciations\"."
msgstr ""
#. module: account_asset
#: help:account.asset.history,method_time:0
msgid ""
"The method to use to compute the dates and number of depreciation lines.\n"
"Number of Depreciations: Fix the number of depreciation lines and the time "
"between 2 depreciations.\n"
"Ending Date: Choose the time between 2 depreciations and the date the "
"depreciations won't go beyond."
msgstr ""
#. module: account_asset
#: field:account.asset.asset,purchase_value:0
msgid "Gross value "
msgstr ""
#. module: account_asset
#: constraint:account.asset.asset:0
msgid "Error ! You can not create recursive assets."
msgstr ""
#. module: account_asset
#: help:account.asset.history,method_period:0
msgid "Time in month between two depreciations"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
#: field:asset.asset.report,name:0
msgid "Year"
msgstr ""
#. module: account_asset
#: view:asset.modify:0
#: model:ir.actions.act_window,name:account_asset.action_asset_modify
#: model:ir.model,name:account_asset.model_asset_modify
msgid "Modify Asset"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Other Information"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,salvage_value:0
msgid "Salvage Value"
msgstr ""
#. module: account_asset
#: field:account.invoice.line,asset_category_id:0
#: view:asset.asset.report:0
msgid "Asset Category"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Set to Close"
msgstr ""
#. module: account_asset
#: model:ir.actions.wizard,name:account_asset.wizard_asset_compute
msgid "Compute assets"
msgstr ""
#. module: account_asset
#: model:ir.actions.wizard,name:account_asset.wizard_asset_modify
msgid "Modify asset"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Assets in closed state"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,parent_id:0
msgid "Parent Asset"
msgstr ""
#. module: account_asset
#: view:account.asset.history:0
#: model:ir.model,name:account_asset.model_account_asset_history
msgid "Asset history"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets purchased in current year"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,state:0
#: field:asset.asset.report,state:0
msgid "State"
msgstr ""
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_invoice_line
msgid "Invoice Line"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Month"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Depreciation Board"
msgstr ""
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_move_line
msgid "Journal Items"
msgstr ""
#. module: account_asset
#: field:asset.asset.report,unposted_value:0
msgid "Unposted Amount"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,method_time:0
#: field:account.asset.category,method_time:0
#: field:account.asset.history,method_time:0
msgid "Time Method"
msgstr ""
#. module: account_asset
#: constraint:account.move.line:0
msgid ""
"The selected account of your Journal Entry must receive a value in its "
"secondary currency"
msgstr ""
#. module: account_asset
#: view:account.asset.category:0
msgid "Analytic information"
msgstr ""
#. module: account_asset
#: view:asset.modify:0
msgid "Asset durations to modify"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,note:0
#: field:account.asset.category,note:0
#: field:account.asset.history,note:0
msgid "Note"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,method:0
#: help:account.asset.category,method:0
msgid ""
"Choose the method to use to compute the amount of depreciation lines.\n"
" * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n"
" * Degressive: Calculated on basis of: Remaining Value * Degressive Factor"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,method_time:0
#: help:account.asset.category,method_time:0
msgid ""
"Choose the method to use to compute the dates and number of depreciation "
"lines.\n"
" * Number of Depreciations: Fix the number of depreciation lines and the "
"time between 2 depreciations.\n"
" * Ending Date: Choose the time between 2 depreciations and the date the "
"depreciations won't go beyond."
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets in running state"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Closed"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,partner_id:0
#: field:asset.asset.report,partner_id:0
msgid "Partner"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
#: field:asset.asset.report,depreciation_value:0
msgid "Amount of Depreciation Lines"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Posted depreciation lines"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,child_ids:0
msgid "Children Assets"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Date of depreciation"
msgstr ""
#. module: account_asset
#: field:account.asset.history,user_id:0
msgid "User"
msgstr ""
#. module: account_asset
#: field:account.asset.history,date:0
msgid "Date"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets purchased in current month"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Extended Filters..."
msgstr ""
#. module: account_asset
#: constraint:account.move.line:0
msgid "Company must be same for its related account and period."
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: view:asset.depreciation.confirmation.wizard:0
msgid "Compute"
msgstr ""
#. module: account_asset
#: view:account.asset.category:0
msgid "Search Asset Category"
msgstr ""
#. module: account_asset
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
#. module: account_asset
#: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard
msgid "asset.depreciation.confirmation.wizard"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,active:0
msgid "Active"
msgstr ""
#. module: account_asset
#: model:ir.actions.wizard,name:account_asset.wizard_asset_close
msgid "Close asset"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,parent_state:0
msgid "State of Asset"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,name:0
msgid "Depreciation Name"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: field:account.asset.asset,history_ids:0
msgid "History"
msgstr ""
#. module: account_asset
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
#. module: account_asset
#: field:asset.depreciation.confirmation.wizard,period_id:0
msgid "Period"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "General"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,prorata:0
#: field:account.asset.category,prorata:0
msgid "Prorata Temporis"
msgstr ""
#. module: account_asset
#: view:account.asset.category:0
msgid "Accounting information"
msgstr ""
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_invoice
msgid "Invoice"
msgstr ""
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_form_normal
msgid "Review Asset Categories"
msgstr ""
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
#: view:asset.modify:0
msgid "Cancel"
msgstr ""
#. module: account_asset
#: selection:account.asset.asset,state:0
#: selection:asset.asset.report,state:0
msgid "Close"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: view:account.asset.category:0
msgid "Depreciation Method"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,purchase_date:0
#: view:asset.asset.report:0
#: field:asset.asset.report,purchase_date:0
msgid "Purchase Date"
msgstr ""
#. module: account_asset
#: selection:account.asset.asset,method:0
#: selection:account.asset.category,method:0
msgid "Degressive"
msgstr ""
#. module: account_asset
#: help:asset.depreciation.confirmation.wizard,period_id:0
msgid ""
"Choose the period for which you want to automatically post the depreciation "
"lines of running assets"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Current"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,remaining_value:0
msgid "Amount to Depreciate"
msgstr ""
#. module: account_asset
#: field:account.asset.category,open_asset:0
msgid "Skip Draft State"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
#: view:account.asset.category:0
#: view:account.asset.history:0
msgid "Depreciation Dates"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,currency_id:0
msgid "Currency"
msgstr ""
#. module: account_asset
#: field:account.asset.category,journal_id:0
msgid "Journal"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,depreciated_value:0
msgid "Amount Already Depreciated"
msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,move_check:0
#: view:asset.asset.report:0
#: field:asset.asset.report,move_check:0
msgid "Posted"
msgstr ""
#. module: account_asset
#: help:account.asset.asset,state:0
msgid ""
"When an asset is created, the state is 'Draft'.\n"
"If the asset is confirmed, the state goes in 'Running' and the depreciation "
"lines can be posted in the accounting.\n"
"You can manually close an asset when the depreciation is over. If the last "
"line of depreciation is posted, the asset automatically goes in that state."
msgstr ""
#. module: account_asset
#: field:account.asset.category,name:0
msgid "Name"
msgstr ""
#. module: account_asset
#: help:account.asset.category,open_asset:0
msgid ""
"Check this if you want to automatically confirm the assets of this category "
"when created by invoices."
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Set to Draft"
msgstr ""
#. module: account_asset
#: selection:account.asset.asset,method:0
#: selection:account.asset.category,method:0
msgid "Linear"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Month-1"
msgstr ""
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_asset_depreciation_line
msgid "Asset depreciation line"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,category_id:0
#: view:account.asset.category:0
#: field:asset.asset.report,asset_category_id:0
#: model:ir.model,name:account_asset.model_account_asset_category
msgid "Asset category"
msgstr ""
#. module: account_asset
#: view:asset.asset.report:0
msgid "Assets purchased in last month"
msgstr ""
#. module: account_asset
#: code:addons/account_asset/wizard/wizard_asset_compute.py:49
#, python-format
msgid "Created Asset Moves"
msgstr ""
#. module: account_asset
#: model:ir.actions.act_window,help:account_asset.action_asset_asset_report
msgid ""
"From this report, you can have an overview on all depreciation. The tool "
"search can also be used to personalise your Assets reports and so, match "
"this analysis to your needs;"
msgstr ""
#. module: account_asset
#: help:account.asset.category,method_period:0
msgid "State here the time between 2 depreciations, in months"
msgstr ""
#. module: account_asset
#: field:account.asset.asset,method_number:0
#: selection:account.asset.asset,method_time:0
#: field:account.asset.category,method_number:0
#: selection:account.asset.category,method_time:0
#: field:account.asset.history,method_number:0
#: selection:account.asset.history,method_time:0
#: field:asset.modify,method_number:0
msgid "Number of Depreciations"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Create Move"
msgstr ""
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:0
msgid "Post Depreciation Lines"
msgstr ""
#. module: account_asset
#: view:account.asset.asset:0
msgid "Confirm Asset"
msgstr ""
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree
#: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree
msgid "Asset Hierarchy"
msgstr ""
#. module: account_asset
#: constraint:account.move.line:0
msgid "You can not create move line on view account."
msgstr ""

View File

@ -47,12 +47,14 @@
</xpath>
<xpath expr="/form/notebook/page[@name='statement_line_ids']/field[@name='line_ids']/tree/field[@name='amount']" position="after">
<field name="globalisation_id" string="Glob. Id"/>
<field name="state" invisible="1"/>
</xpath>
<xpath expr="/form/notebook/page[@name='statement_line_ids']/field[@name='line_ids']/form/field[@name='date']" position="after">
<field name="val_date"/>
</xpath>
<xpath expr="/form/notebook/page[@name='statement_line_ids']/field[@name='line_ids']/form/field[@name='amount']" position="after">
<field name="globalisation_id"/>
<field name="state" invisible="1"/>
</xpath>
</data>
</field>

View File

@ -7,15 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-12 14:54+0000\n"
"Last-Translator: Thorsten Vocks (OpenBig.org) <thorsten.vocks@big-"
"consulting.net>\n"
"PO-Revision-Date: 2012-01-13 19:21+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\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: 2011-12-23 07:10+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_budget
#: field:crossovered.budget,creating_user_id:0
@ -263,7 +262,7 @@ msgstr "Budget"
#. module: account_budget
#: view:crossovered.budget:0
msgid "To Approve Budgets"
msgstr ""
msgstr "Budgets genehmigen"
#. module: account_budget
#: code:addons/account_budget/account_budget.py:119
@ -427,7 +426,7 @@ msgstr "Analyse vom"
#. module: account_budget
#: view:crossovered.budget:0
msgid "Draft Budgets"
msgstr ""
msgstr "Budget Entwürfe"
#~ msgid "% performance"
#~ msgstr "% Leistungsfähigkeit"

View File

@ -0,0 +1,488 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-23 15:32+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: account_budget
#: field:crossovered.budget,creating_user_id:0
msgid "Responsible User"
msgstr "Responsible User"
#. module: account_budget
#: selection:crossovered.budget,state:0
msgid "Confirmed"
msgstr "Confirmed"
#. module: account_budget
#: model:ir.actions.act_window,name:account_budget.open_budget_post_form
#: model:ir.ui.menu,name:account_budget.menu_budget_post_form
msgid "Budgetary Positions"
msgstr "Budgetary Positions"
#. module: account_budget
#: code:addons/account_budget/account_budget.py:119
#, python-format
msgid "The General Budget '%s' has no Accounts!"
msgstr "The General Budget '%s' has no Accounts!"
#. module: account_budget
#: report:account.budget:0
msgid "Printed at:"
msgstr "Printed at:"
#. module: account_budget
#: view:crossovered.budget:0
msgid "Confirm"
msgstr "Confirm"
#. module: account_budget
#: field:crossovered.budget,validating_user_id:0
msgid "Validate User"
msgstr "Validate User"
#. module: account_budget
#: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report
msgid "Print Summary"
msgstr "Print Summary"
#. module: account_budget
#: field:crossovered.budget.lines,paid_date:0
msgid "Paid Date"
msgstr "Paid Date"
#. module: account_budget
#: field:account.budget.analytic,date_to:0
#: field:account.budget.crossvered.report,date_to:0
#: field:account.budget.crossvered.summary.report,date_to:0
#: field:account.budget.report,date_to:0
msgid "End of period"
msgstr "End of period"
#. module: account_budget
#: view:crossovered.budget:0
#: selection:crossovered.budget,state:0
msgid "Draft"
msgstr "Draft"
#. module: account_budget
#: report:account.budget:0
msgid "at"
msgstr "at"
#. module: account_budget
#: view:account.budget.report:0
#: model:ir.actions.act_window,name:account_budget.action_account_budget_analytic
#: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_report
msgid "Print Budgets"
msgstr "Print Budgets"
#. module: account_budget
#: report:account.budget:0
msgid "Currency:"
msgstr "Currency:"
#. module: account_budget
#: model:ir.model,name:account_budget.model_account_budget_crossvered_report
msgid "Account Budget crossvered report"
msgstr "Account Budget crossvered report"
#. module: account_budget
#: selection:crossovered.budget,state:0
msgid "Validated"
msgstr "Validated"
#. module: account_budget
#: field:crossovered.budget.lines,percentage:0
msgid "Percentage"
msgstr "Percentage"
#. module: account_budget
#: report:crossovered.budget.report:0
msgid "to"
msgstr "to"
#. module: account_budget
#: field:crossovered.budget,state:0
msgid "Status"
msgstr "Status"
#. module: account_budget
#: model:ir.actions.act_window,help:account_budget.act_crossovered_budget_view
msgid ""
"A budget is a forecast of your company's income and expenses expected for a "
"period in the future. With a budget, a company is able to carefully look at "
"how much money they are taking in during a given period, and figure out the "
"best way to divide it among various categories. By keeping track of where "
"your money goes, you may be less likely to overspend, and more likely to "
"meet your financial goals. Forecast a budget by detailing the expected "
"revenue per analytic account and monitor its evolution based on the actuals "
"realised during that period."
msgstr ""
"A budget is a forecast of your company's income and expenses expected for a "
"period in the future. With a budget, a company is able to carefully look at "
"how much money they are taking in during a given period, and figure out the "
"best way to divide it among various categories. By keeping track of where "
"your money goes, you may be less likely to overspend, and more likely to "
"meet your financial goals. Forecast a budget by detailing the expected "
"revenue per analytic account and monitor its evolution based on the actuals "
"realised during that period."
#. module: account_budget
#: view:account.budget.crossvered.summary.report:0
msgid "This wizard is used to print summary of budgets"
msgstr "This wizard is used to print summary of budgets"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "%"
msgstr "%"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Description"
msgstr "Description"
#. module: account_budget
#: report:crossovered.budget.report:0
msgid "Currency"
msgstr "Currency"
#. module: account_budget
#: report:crossovered.budget.report:0
msgid "Total :"
msgstr "Total :"
#. module: account_budget
#: field:account.budget.post,company_id:0
#: field:crossovered.budget,company_id:0
#: field:crossovered.budget.lines,company_id:0
msgid "Company"
msgstr "Company"
#. module: account_budget
#: view:crossovered.budget:0
msgid "To Approve"
msgstr "To Approve"
#. module: account_budget
#: view:crossovered.budget:0
msgid "Reset to Draft"
msgstr "Reset to Draft"
#. module: account_budget
#: view:account.budget.post:0
#: view:crossovered.budget:0
#: field:crossovered.budget.lines,planned_amount:0
msgid "Planned Amount"
msgstr "Planned Amount"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Perc(%)"
msgstr "Perc(%)"
#. module: account_budget
#: view:crossovered.budget:0
#: selection:crossovered.budget,state:0
msgid "Done"
msgstr "Done"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Practical Amt"
msgstr "Practical Amt"
#. module: account_budget
#: view:account.analytic.account:0
#: view:account.budget.post:0
#: view:crossovered.budget:0
#: field:crossovered.budget.lines,practical_amount:0
msgid "Practical Amount"
msgstr "Practical Amount"
#. module: account_budget
#: field:crossovered.budget,date_to:0
#: field:crossovered.budget.lines,date_to:0
msgid "End Date"
msgstr "End Date"
#. module: account_budget
#: model:ir.model,name:account_budget.model_account_budget_analytic
#: model:ir.model,name:account_budget.model_account_budget_report
msgid "Account Budget report for analytic account"
msgstr "Account Budget report for analytic account"
#. module: account_budget
#: view:account.analytic.account:0
msgid "Theoritical Amount"
msgstr "Theoretical Amount"
#. module: account_budget
#: field:account.budget.post,name:0
#: field:crossovered.budget,name:0
msgid "Name"
msgstr "Name"
#. module: account_budget
#: model:ir.model,name:account_budget.model_crossovered_budget_lines
msgid "Budget Line"
msgstr "Budget Line"
#. module: account_budget
#: view:account.analytic.account:0
#: view:account.budget.post:0
msgid "Lines"
msgstr "Lines"
#. module: account_budget
#: report:account.budget:0
#: view:crossovered.budget:0
#: field:crossovered.budget.lines,crossovered_budget_id:0
#: report:crossovered.budget.report:0
#: model:ir.actions.report.xml,name:account_budget.account_budget
#: model:ir.model,name:account_budget.model_crossovered_budget
msgid "Budget"
msgstr "Budget"
#. module: account_budget
#: view:crossovered.budget:0
msgid "To Approve Budgets"
msgstr "To Approve Budgets"
#. module: account_budget
#: code:addons/account_budget/account_budget.py:119
#, python-format
msgid "Error!"
msgstr "Error!"
#. module: account_budget
#: field:account.budget.post,code:0
#: field:crossovered.budget,code:0
msgid "Code"
msgstr "Code"
#. module: account_budget
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
msgid "This wizard is used to print budget"
msgstr "This wizard is used to print budget"
#. module: account_budget
#: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_view
#: model:ir.actions.act_window,name:account_budget.action_account_budget_post_tree
#: model:ir.actions.act_window,name:account_budget.action_account_budget_report
#: model:ir.actions.report.xml,name:account_budget.report_crossovered_budget
#: model:ir.ui.menu,name:account_budget.menu_act_crossovered_budget_view
#: model:ir.ui.menu,name:account_budget.menu_action_account_budget_post_tree
#: model:ir.ui.menu,name:account_budget.next_id_31
#: model:ir.ui.menu,name:account_budget.next_id_pos
msgid "Budgets"
msgstr "Budgets"
#. module: account_budget
#: constraint:account.analytic.account:0
msgid ""
"Error! The currency has to be the same as the currency of the selected "
"company"
msgstr ""
"Error! The currency has to be the same as the currency of the selected "
"company"
#. module: account_budget
#: selection:crossovered.budget,state:0
msgid "Cancelled"
msgstr "Cancelled"
#. module: account_budget
#: view:crossovered.budget:0
msgid "Approve"
msgstr "Approve"
#. module: account_budget
#: field:crossovered.budget,date_from:0
#: field:crossovered.budget.lines,date_from:0
msgid "Start Date"
msgstr "Start Date"
#. module: account_budget
#: view:account.budget.post:0
#: field:crossovered.budget.lines,general_budget_id:0
#: model:ir.model,name:account_budget.model_account_budget_post
msgid "Budgetary Position"
msgstr "Budgetary Position"
#. module: account_budget
#: field:account.budget.analytic,date_from:0
#: field:account.budget.crossvered.report,date_from:0
#: field:account.budget.crossvered.summary.report,date_from:0
#: field:account.budget.report,date_from:0
msgid "Start of period"
msgstr "Start of period"
#. module: account_budget
#: model:ir.model,name:account_budget.model_account_budget_crossvered_summary_report
msgid "Account Budget crossvered summary report"
msgstr "Account Budget crossvered summary report"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Theoretical Amt"
msgstr "Theoretical Amt"
#. module: account_budget
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
#: view:account.budget.crossvered.summary.report:0
#: view:account.budget.report:0
msgid "Select Dates Period"
msgstr "Select Dates Period"
#. module: account_budget
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
#: view:account.budget.crossvered.summary.report:0
#: view:account.budget.report:0
msgid "Print"
msgstr "Print"
#. module: account_budget
#: view:account.budget.post:0
#: view:crossovered.budget:0
#: field:crossovered.budget.lines,theoritical_amount:0
msgid "Theoretical Amount"
msgstr "Theoretical Amount"
#. module: account_budget
#: field:crossovered.budget.lines,analytic_account_id:0
#: model:ir.model,name:account_budget.model_account_analytic_account
msgid "Analytic Account"
msgstr "Analytic Account"
#. module: account_budget
#: report:account.budget:0
msgid "Budget :"
msgstr "Budget :"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Planned Amt"
msgstr "Planned Amt"
#. module: account_budget
#: view:account.budget.post:0
#: field:account.budget.post,account_ids:0
msgid "Accounts"
msgstr "Accounts"
#. module: account_budget
#: view:account.analytic.account:0
#: field:account.analytic.account,crossovered_budget_line:0
#: view:account.budget.post:0
#: field:account.budget.post,crossovered_budget_line:0
#: view:crossovered.budget:0
#: field:crossovered.budget,crossovered_budget_line:0
#: view:crossovered.budget.lines:0
#: model:ir.actions.act_window,name:account_budget.act_account_analytic_account_cb_lines
#: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_lines_view
#: model:ir.ui.menu,name:account_budget.menu_act_crossovered_budget_lines_view
msgid "Budget Lines"
msgstr "Budget Lines"
#. module: account_budget
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
#: view:account.budget.crossvered.summary.report:0
#: view:account.budget.report:0
#: view:crossovered.budget:0
msgid "Cancel"
msgstr "Cancel"
#. module: account_budget
#: constraint:account.analytic.account:0
msgid "Error! You can not create recursive analytic accounts."
msgstr "Error! You can not create recursive analytic accounts."
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Analysis from"
msgstr "Analysis from"
#. module: account_budget
#: view:crossovered.budget:0
msgid "Draft Budgets"
msgstr "Draft Budgets"
#~ msgid ""
#~ "This module allows accountants to manage analytic and crossovered budgets.\n"
#~ "\n"
#~ "Once the Master Budgets and the Budgets are defined (in "
#~ "Accounting/Budgets/),\n"
#~ "the Project Managers can set the planned amount on each Analytic Account.\n"
#~ "\n"
#~ "The accountant has the possibility to see the total of amount planned for "
#~ "each\n"
#~ "Budget and Master Budget in order to ensure the total planned is not\n"
#~ "greater/lower than what he planned for this Budget/Master Budget. Each list "
#~ "of\n"
#~ "record can also be switched to a graphical view of it.\n"
#~ "\n"
#~ "Three reports are available:\n"
#~ " 1. The first is available from a list of Budgets. It gives the "
#~ "spreading, for these Budgets, of the Analytic Accounts per Master Budgets.\n"
#~ "\n"
#~ " 2. The second is a summary of the previous one, it only gives the "
#~ "spreading, for the selected Budgets, of the Analytic Accounts.\n"
#~ "\n"
#~ " 3. The last one is available from the Analytic Chart of Accounts. It "
#~ "gives the spreading, for the selected Analytic Accounts, of the Master "
#~ "Budgets per Budgets.\n"
#~ "\n"
#~ msgstr ""
#~ "This module allows accountants to manage analytic and crossovered budgets.\n"
#~ "\n"
#~ "Once the Master Budgets and the Budgets are defined (in "
#~ "Accounting/Budgets/),\n"
#~ "the Project Managers can set the planned amount on each Analytic Account.\n"
#~ "\n"
#~ "The accountant has the possibility to see the total of amount planned for "
#~ "each\n"
#~ "Budget and Master Budget in order to ensure the total planned is not\n"
#~ "greater/lower than what he planned for this Budget/Master Budget. Each list "
#~ "of\n"
#~ "record can also be switched to a graphical view of it.\n"
#~ "\n"
#~ "Three reports are available:\n"
#~ " 1. The first is available from a list of Budgets. It gives the "
#~ "spreading, for these Budgets, of the Analytic Accounts per Master Budgets.\n"
#~ "\n"
#~ " 2. The second is a summary of the previous one, it only gives the "
#~ "spreading, for the selected Budgets, of the Analytic Accounts.\n"
#~ "\n"
#~ " 3. The last one is available from the Analytic Chart of Accounts. It "
#~ "gives the spreading, for the selected Analytic Accounts, of the Master "
#~ "Budgets per Budgets.\n"
#~ "\n"
#~ msgid "Budget Management"
#~ msgstr "Budget Management"

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-22 16:37+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-10 23:08+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\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: 2011-12-23 07:10+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-12 05:40+0000\n"
"X-Generator: Launchpad (build 14640)\n"
#. module: account_budget
#: field:crossovered.budget,creating_user_id:0
@ -263,7 +263,7 @@ msgstr "Bütçe"
#. module: account_budget
#: view:crossovered.budget:0
msgid "To Approve Budgets"
msgstr ""
msgstr "Bütçeleri Onaylama"
#. module: account_budget
#: code:addons/account_budget/account_budget.py:119
@ -427,7 +427,7 @@ msgstr "den Analiz"
#. module: account_budget
#: view:crossovered.budget:0
msgid "Draft Budgets"
msgstr ""
msgstr "Taslak Bütçeler"
#~ msgid "Invalid XML for View Architecture!"
#~ msgstr "Görüntüleme mimarisi için Geçersiz XML"

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-19 10:49+0000\n"
"Last-Translator: bamuhrez <bamuhrez@gmail.com>\n"
"PO-Revision-Date: 2012-01-05 17:03+0000\n"
"Last-Translator: kifcaliph <kifcaliph@hotmail.com>\n"
"Language-Team: Arabic <ar@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:18+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-06 04:50+0000\n"
"X-Generator: Launchpad (build 14637)\n"
#. module: account_cancel
#: view:account.invoice:0
msgid "Cancel"
msgstr ""
msgstr "إلغاء"
#~ msgid "Account Cancel"
#~ msgstr "إلغاء الحساب"

View File

@ -8,20 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2010-11-30 17:50+0000\n"
"Last-Translator: Thorsten Vocks (OpenBig.org) <thorsten.vocks@big-"
"consulting.net>\n"
"PO-Revision-Date: 2012-01-13 19:21+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:18+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_cancel
#: view:account.invoice:0
msgid "Cancel"
msgstr ""
msgstr "Abbrechen"
#~ msgid "Account Cancel"
#~ msgstr "Konto Storno"

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-08-25 11:46+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 13:21+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:19+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: account_cancel
#: view:account.invoice:0
msgid "Cancel"
msgstr ""
msgstr "Cancel"
#~ msgid "Account Cancel"
#~ msgstr "Account Cancel"

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2010-12-03 07:45+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"PO-Revision-Date: 2012-01-13 08:35+0000\n"
"Last-Translator: Stefan Rijnhart (Therp) <Unknown>\n"
"Language-Team: Dutch <nl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:18+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_cancel
#: view:account.invoice:0
msgid "Cancel"
msgstr ""
msgstr "Annuleren"
#~ msgid ""
#~ "\n"

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-13 03:21+0000\n"
"Last-Translator: Vinicius Dittgen - Proge.com.br <vinicius@proge.com.br>\n"
"PO-Revision-Date: 2012-01-16 13:22+0000\n"
"Last-Translator: Rafael Sales <Unknown>\n"
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:19+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-17 04:45+0000\n"
"X-Generator: Launchpad (build 14676)\n"
#. module: account_cancel
#: view:account.invoice:0
msgid "Cancel"
msgstr ""
msgstr "Cancelar"
#~ msgid "Account Cancel"
#~ msgstr "Cancelar Conta"

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-13 01:34+0000\n"
"Last-Translator: Arif Aydogmus <arifaydogmus@gmail.com>\n"
"PO-Revision-Date: 2012-01-10 22:55+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:19+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-12 05:40+0000\n"
"X-Generator: Launchpad (build 14640)\n"
#. module: account_cancel
#: view:account.invoice:0
msgid "Cancel"
msgstr ""
msgstr "İptal Et"
#~ msgid "Account Cancel"
#~ msgstr "Hesabı iptal et"

View File

@ -243,7 +243,7 @@
<group colspan="4" col="6">
<field name="coda_creation_date"/>
<field name="name"/>
<field name="coda_data" fieldname="name"/>
<field name="coda_data" filename="name"/>
<field name="date"/>
<field name="user_id"/>
<field name="company_id" widget="selection" groups="base.group_multi_company"/>

View File

@ -0,0 +1,265 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-23 15:23+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: account_coda
#: help:account.coda,journal_id:0
#: field:account.coda.import,journal_id:0
msgid "Bank Journal"
msgstr "Bank Journal"
#. module: account_coda
#: view:account.coda:0
#: field:account.coda.import,note:0
msgid "Log"
msgstr "Log"
#. module: account_coda
#: model:ir.model,name:account_coda.model_account_coda_import
msgid "Account Coda Import"
msgstr "Account Coda Import"
#. module: account_coda
#: field:account.coda,name:0
msgid "Coda file"
msgstr "Coda file"
#. module: account_coda
#: view:account.coda:0
msgid "Group By..."
msgstr "Group By..."
#. module: account_coda
#: field:account.coda.import,awaiting_account:0
msgid "Default Account for Unrecognized Movement"
msgstr "Default Account for Unrecognized Movement"
#. module: account_coda
#: help:account.coda,date:0
msgid "Import Date"
msgstr "Import Date"
#. module: account_coda
#: field:account.coda,note:0
msgid "Import log"
msgstr "Import log"
#. module: account_coda
#: view:account.coda.import:0
msgid "Import"
msgstr "Import"
#. module: account_coda
#: view:account.coda:0
msgid "Coda import"
msgstr "Coda import"
#. module: account_coda
#: code:addons/account_coda/account_coda.py:51
#, python-format
msgid "Coda file not found for bank statement !!"
msgstr "Coda file not found for bank statement !!"
#. module: account_coda
#: help:account.coda.import,awaiting_account:0
msgid ""
"Set here the default account that will be used, if the partner is found but "
"does not have the bank account, or if he is domiciled"
msgstr ""
"Set here the default account that will be used, if the partner is found but "
"does not have the bank account, or if he is domiciled"
#. module: account_coda
#: view:account.coda:0
#: field:account.coda,company_id:0
msgid "Company"
msgstr "Company"
#. module: account_coda
#: help:account.coda.import,def_payable:0
msgid ""
"Set here the payable account that will be used, by default, if the partner "
"is not found"
msgstr ""
"Set here the payable account that will be used, by default, if the partner "
"is not found"
#. module: account_coda
#: view:account.coda:0
msgid "Search Coda"
msgstr "Search Coda"
#. module: account_coda
#: view:account.coda:0
#: field:account.coda,user_id:0
msgid "User"
msgstr "User"
#. module: account_coda
#: view:account.coda:0
#: field:account.coda,date:0
msgid "Date"
msgstr "Date"
#. module: account_coda
#: model:ir.ui.menu,name:account_coda.menu_account_coda_statement
msgid "Coda Import Logs"
msgstr "Coda Import Logs"
#. module: account_coda
#: model:ir.model,name:account_coda.model_account_coda
msgid "coda for an Account"
msgstr "coda for an Account"
#. module: account_coda
#: field:account.coda.import,def_payable:0
msgid "Default Payable Account"
msgstr "Default Payable Account"
#. module: account_coda
#: help:account.coda,name:0
msgid "Store the detail of bank statements"
msgstr "Store the detail of bank statements"
#. module: account_coda
#: view:account.coda.import:0
msgid "Cancel"
msgstr "Cancel"
#. module: account_coda
#: view:account.coda.import:0
msgid "Open Statements"
msgstr "Open Statements"
#. module: account_coda
#: code:addons/account_coda/wizard/account_coda_import.py:167
#, python-format
msgid "The bank account %s is not defined for the partner %s.\n"
msgstr "The bank account %s is not defined for the partner %s.\n"
#. module: account_coda
#: model:ir.ui.menu,name:account_coda.menu_account_coda_import
msgid "Import Coda Statements"
msgstr "Import Coda Statements"
#. module: account_coda
#: view:account.coda.import:0
#: model:ir.actions.act_window,name:account_coda.action_account_coda_import
msgid "Import Coda Statement"
msgstr "Import Coda Statement"
#. module: account_coda
#: view:account.coda:0
msgid "Statements"
msgstr "Statements"
#. module: account_coda
#: field:account.bank.statement,coda_id:0
msgid "Coda"
msgstr "Coda"
#. module: account_coda
#: view:account.coda.import:0
msgid "Results :"
msgstr "Results :"
#. module: account_coda
#: view:account.coda.import:0
msgid "Result of Imported Coda Statements"
msgstr "Result of Imported Coda Statements"
#. module: account_coda
#: help:account.coda.import,def_receivable:0
msgid ""
"Set here the receivable account that will be used, by default, if the "
"partner is not found"
msgstr ""
"Set here the receivable account that will be used, by default, if the "
"partner is not found"
#. module: account_coda
#: field:account.coda.import,coda:0
#: model:ir.actions.act_window,name:account_coda.act_account_payment_account_bank_statement
msgid "Coda File"
msgstr "Coda File"
#. module: account_coda
#: model:ir.model,name:account_coda.model_account_bank_statement
msgid "Bank Statement"
msgstr "Bank Statement"
#. module: account_coda
#: model:ir.actions.act_window,name:account_coda.action_account_coda
msgid "Coda Logs"
msgstr "Coda Logs"
#. module: account_coda
#: code:addons/account_coda/wizard/account_coda_import.py:311
#, python-format
msgid "Result"
msgstr "Result"
#. module: account_coda
#: view:account.coda.import:0
msgid "Click on 'New' to select your file :"
msgstr "Click on 'New' to select your file :"
#. module: account_coda
#: field:account.coda.import,def_receivable:0
msgid "Default Receivable Account"
msgstr "Default Receivable Account"
#. module: account_coda
#: view:account.coda.import:0
msgid "Close"
msgstr "Close"
#. module: account_coda
#: field:account.coda,statement_ids:0
msgid "Generated Bank Statements"
msgstr "Generated Bank Statements"
#. module: account_coda
#: view:account.coda.import:0
msgid "Configure Your Journal and Account :"
msgstr "Configure Your Journal and Account :"
#. module: account_coda
#: view:account.coda:0
msgid "Coda Import"
msgstr "Coda Import"
#. module: account_coda
#: view:account.coda:0
#: field:account.coda,journal_id:0
msgid "Journal"
msgstr "Journal"
#~ msgid "Account CODA - import bank statements from coda file"
#~ msgstr "Account CODA - import bank statements from coda file"
#~ msgid ""
#~ "\n"
#~ " Module provides functionality to import\n"
#~ " bank statements from coda files.\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ " Module provides functionality to import\n"
#~ " bank statements from coda files.\n"
#~ " "

View File

@ -151,8 +151,8 @@
<field name="type">form</field>
<field name="arch" type="xml">
<field name="overdue_msg" nolabel="1" colspan="4" position="after">
<field name="follow_up_msg" nolabel="1" colspan="4"/>
<separator string="Follow-up Message" colspan="4"/>
<field name="follow_up_msg" nolabel="1" colspan="4"/>
</field>
</field>
</record>

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-11-11 15:21+0000\n"
"Last-Translator: Ferdinand-camptocamp <Unknown>\n"
"PO-Revision-Date: 2012-01-13 20:51+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\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: 2011-12-23 06:06+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:11+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_followup
#: view:account_followup.followup:0
@ -43,6 +43,7 @@ msgstr "Zahlungserinnerung"
msgid ""
"Check if you want to print followups without changing followups level."
msgstr ""
"Anhaken, wenn sie Mahnungen drucken wollen, ohne die Mahnstufe zu erhöhen"
#. module: account_followup
#: model:account_followup.followup.line,description:account_followup.demo_followup_line2
@ -67,6 +68,21 @@ msgid ""
"\n"
"Best Regards,\n"
msgstr ""
"\n"
"Geehrte(r) %(partner_name)s,\n"
"\n"
"Wir bedauern, dass Ihr Konto trotz Übersendung einer Mahnung überfällig ist\n"
"\n"
"Wenn Sie die unmittelbare Bezahlung verabsäumen, müssen wir Ihr Konto still "
"legen, d.h. dass wir Sie zukünftig nicht mehr beliefern können.\n"
"Bitte fürhen Sie die Zahlung innerhalb der nächsten 8 Tage durch.\n"
"\n"
"Wenn es mit der Rechnung ein uns unbekanntes Problem gibt, wenden Sie sich "
"bitte unmittelbar an unsere Buchhaltung.\n"
"\n"
"Details der überfälligen Zahlungen finden Sie weiter unten.\n"
"\n"
"Beste Grüße,\n"
#. module: account_followup
#: field:account_followup.followup,company_id:0
@ -101,7 +117,7 @@ msgstr "Legende"
#. module: account_followup
#: view:account_followup.stat:0
msgid "Follow up Entries with period in current year"
msgstr ""
msgstr "Mahnungen mit Buchungen im laufenden Jahr"
#. module: account_followup
#: view:account.followup.print.all:0
@ -117,7 +133,7 @@ msgstr ""
#. module: account_followup
#: report:account_followup.followup.print:0
msgid "Amount"
msgstr ""
msgstr "Betrag"
#. module: account_followup
#: sql_constraint:account.move.line:0
@ -322,6 +338,8 @@ msgid ""
"Your description is invalid, use the right legend or %% if you want to use "
"the percent character."
msgstr ""
"Ihre Beschreibung ist ungültig. verwenden Sie %% wenn Sie ein Prozentzeichen "
"eingeben wollen"
#. module: account_followup
#: view:account.followup.print.all:0
@ -336,14 +354,14 @@ msgstr "Statistik Zahlungserinnerungen"
#. module: account_followup
#: view:account_followup.followup.line:0
msgid "Message"
msgstr ""
msgstr "Nachricht"
#. module: account_followup
#: constraint:account.move.line:0
msgid ""
"The selected account of your Journal Entry must receive a value in its "
"secondary currency"
msgstr ""
msgstr "Das ausgewählte Konto muss auch in der 2.Währung bebucht werden."
#. module: account_followup
#: field:account_followup.stat,blocked:0
@ -429,12 +447,14 @@ msgstr "Sende EMail Bestätigung"
#. module: account_followup
#: report:account_followup.followup.print:0
msgid "Total:"
msgstr ""
msgstr "Gesamt:"
#. module: account_followup
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
"Das Datum Ihrer Journalbuchung befindet sich nicht in der definierten "
"Periode!"
#. module: account_followup
#: constraint:res.company:0
@ -514,7 +534,7 @@ msgstr "Bericht Zahlungserinnerungen"
#. module: account_followup
#: view:account_followup.followup.line:0
msgid "Follow-Up Steps"
msgstr ""
msgstr "Mahnstufen"
#. module: account_followup
#: field:account_followup.stat,period_id:0
@ -546,7 +566,7 @@ msgstr "Max. Mahnstufe"
#. module: account_followup
#: model:ir.actions.act_window,name:account_followup.action_view_account_followup_followup_form
msgid "Review Invoicing Follow-Ups"
msgstr ""
msgstr "Überarbeiten Mahnungen"
#. module: account_followup
#: model:ir.actions.act_window,help:account_followup.action_account_followup_definition_form
@ -556,6 +576,9 @@ msgid ""
"code to adapt the email content to the good context (good name, good date) "
"and you can manage the multi language of messages."
msgstr ""
"Definieren Sie die Mahnstufen und die dazugehörigen Nachrichten und Fristen. "
"Verwenden Sie die Variablen lt. Legende, dann können Sie die Mahnungen "
"mehrsprachig verwalten."
#. module: account_followup
#: model:ir.actions.act_window,name:account_followup.act_account_partner_account_move_payable_all
@ -570,6 +593,9 @@ msgid ""
"\n"
"%s"
msgstr ""
"E-Mail wurde wegen fehlender E-Mail-Adresse an folgende Partner NICHT "
"versandt!\n"
"%s"
#. module: account_followup
#: view:account.followup.print.all:0
@ -585,7 +611,7 @@ msgstr "%(date)s: aktuelles Datum"
#. module: account_followup
#: view:account_followup.stat:0
msgid "Including journal entries marked as a litigation"
msgstr ""
msgstr "Beinhaltet Buchungen im Verfahren"
#. module: account_followup
#: view:account_followup.stat:0
@ -601,7 +627,7 @@ msgstr "Beschreibung"
#. module: account_followup
#: constraint:account_followup.followup:0
msgid "Only One Followup by Company."
msgstr ""
msgstr "Nur eine Mahnung je Unternehmen"
#. module: account_followup
#: view:account_followup.stat:0
@ -637,7 +663,7 @@ msgstr "Versendete Erinnerungen"
#. module: account_followup
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "Der Name der Firma darf nur einmal vorkommen!"
#. module: account_followup
#: field:account_followup.followup,name:0
@ -719,7 +745,7 @@ msgstr "Kunden Referenz:"
#. module: account_followup
#: field:account.followup.print.all,test_print:0
msgid "Test Print"
msgstr ""
msgstr "Test Druck"
#. module: account_followup
#: view:account.followup.print.all:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-11-11 15:22+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"PO-Revision-Date: 2012-01-24 20:05+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\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: 2011-12-23 06:07+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_followup
#: view:account_followup.followup:0
@ -117,7 +117,7 @@ msgstr "Kapanmış bir hesap için hareket yaratamazsınız."
#. module: account_followup
#: report:account_followup.followup.print:0
msgid "Amount"
msgstr ""
msgstr "Tutar"
#. module: account_followup
#: sql_constraint:account.move.line:0
@ -335,7 +335,7 @@ msgstr "Paydaşa göre İzleme İstatistikleri"
#. module: account_followup
#: view:account_followup.followup.line:0
msgid "Message"
msgstr ""
msgstr "Mesaj"
#. module: account_followup
#: constraint:account.move.line:0
@ -425,12 +425,12 @@ msgstr "Email Onayı gönder"
#. module: account_followup
#: report:account_followup.followup.print:0
msgid "Total:"
msgstr ""
msgstr "Toplam:"
#. module: account_followup
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
msgstr "Yevmiye Girişinizin tarihi tanımlanan dönemle uyuşmuyor!"
#. module: account_followup
#: constraint:res.company:0
@ -566,6 +566,9 @@ msgid ""
"\n"
"%s"
msgstr ""
"Aşağıdaki carilere e-posta gönderilmedi, E-posta bulunmuyor!\n"
"\n"
"%s"
#. module: account_followup
#: view:account.followup.print.all:0
@ -633,7 +636,7 @@ msgstr "Gönderilen İzlemeler"
#. module: account_followup
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "Şirket adı tekil olmalı !"
#. module: account_followup
#: field:account_followup.followup,name:0
@ -715,7 +718,7 @@ msgstr "Müşteri Ref :"
#. module: account_followup
#: field:account.followup.print.all,test_print:0
msgid "Test Print"
msgstr ""
msgstr "Test Baskısı"
#. module: account_followup
#: view:account.followup.print.all:0

View File

@ -2,5 +2,6 @@ id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_account_followup_followup_line,account_followup.followup.line,model_account_followup_followup_line,account.group_account_user,1,0,0,0
access_account_followup_followup_line_manager,account_followup.followup.line.manager,model_account_followup_followup_line,account.group_account_manager,1,1,1,1
access_account_followup_followup_accountant,account_followup.followup user,model_account_followup_followup,account.group_account_user,1,0,0,0
access_account_followup_followup_manager,account_followup.followup.manager,model_account_followup_followup,account.group_account_manager,1,1,1,1
access_account_followup_stat_invoice,account_followup.stat.invoice,model_account_followup_stat,account.group_account_invoice,1,1,1,1
access_account_followup_stat_by_partner_manager,account_followup.stat.by.partner,model_account_followup_stat_by_partner,account.group_account_manager,1,1,1,1

1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_account_followup_followup_line account_followup.followup.line model_account_followup_followup_line account.group_account_user 1 0 0 0
3 access_account_followup_followup_line_manager account_followup.followup.line.manager model_account_followup_followup_line account.group_account_manager 1 1 1 1
4 access_account_followup_followup_accountant account_followup.followup user model_account_followup_followup account.group_account_user 1 0 0 0
5 access_account_followup_followup_manager account_followup.followup.manager model_account_followup_followup account.group_account_manager 1 1 1 1
6 access_account_followup_stat_invoice account_followup.stat.invoice model_account_followup_stat account.group_account_invoice 1 1 1 1
7 access_account_followup_stat_by_partner_manager account_followup.stat.by.partner model_account_followup_stat_by_partner account.group_account_manager 1 1 1 1

View File

@ -118,7 +118,8 @@
<field name="arch" type="xml">
<form string="Summary">
<group col="4" colspan="6">
<field name="summary" height="300" width="800"/>
<separator string="Summary" colspan="4"/>
<field name="summary" height="300" width="800" nolabel="1"/>
</group>
<separator colspan="4"/>
<group>

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-04-02 21:15+0000\n"
"PO-Revision-Date: 2012-01-13 19:20+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\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: 2011-12-23 06:52+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
@ -108,7 +108,7 @@ msgstr "Sende Nachricht"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
msgid "Customer Code"
msgstr ""
msgstr "Kundennummer"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
@ -256,7 +256,7 @@ msgstr "Referenz"
#. module: account_invoice_layout
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Die Rechnungsnummer muss je Firma eindeutig sein"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
@ -277,12 +277,12 @@ msgstr "Lieferantenrechnung"
#. module: account_invoice_layout
#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_1
msgid "Invoices"
msgstr ""
msgstr "Rechnungen"
#. module: account_invoice_layout
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "ungültige BBA Kommunikations Stuktur"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
@ -304,7 +304,7 @@ msgstr "Netto:"
#: model:ir.actions.act_window,name:account_invoice_layout.action_account_invoice_special_msg
#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_layout_message
msgid "Invoices and Message"
msgstr ""
msgstr "Rechnungen und Mitteilungen"
#. module: account_invoice_layout
#: field:account.invoice.line,state:0

View File

@ -0,0 +1,396 @@
# English (United Kingdom) translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-23 15:53+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-24 05:29+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
msgid "Sub Total"
msgstr "Sub Total"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Note:"
msgstr "Note:"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Cancelled Invoice"
msgstr "Cancelled Invoice"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
#: field:notify.message,name:0
msgid "Title"
msgstr "Title"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Disc. (%)"
msgstr "Disc. (%)"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
msgid "Note"
msgstr "Note"
#. module: account_invoice_layout
#: view:account.invoice.special.msg:0
msgid "Print"
msgstr "Print"
#. module: account_invoice_layout
#: help:notify.message,msg:0
msgid ""
"This notification will appear at the bottom of the Invoices when printed."
msgstr ""
"This notification will appear at the bottom of the Invoices when printed."
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Unit Price"
msgstr "Unit Price"
#. module: account_invoice_layout
#: model:ir.model,name:account_invoice_layout.model_notify_message
msgid "Notify By Messages"
msgstr "Notify By Messages"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "VAT :"
msgstr "VAT :"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Tel. :"
msgstr "Tel. :"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "PRO-FORMA"
msgstr "PRO-FORMA"
#. module: account_invoice_layout
#: field:account.invoice,abstract_line_ids:0
msgid "Invoice Lines"
msgstr "Invoice Lines"
#. module: account_invoice_layout
#: view:account.invoice.line:0
msgid "Seq."
msgstr "Seq."
#. module: account_invoice_layout
#: model:ir.ui.menu,name:account_invoice_layout.menu_finan_config_notify_message
msgid "Notification Message"
msgstr "Notification Message"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
msgid "Customer Code"
msgstr "Customer Code"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Description"
msgstr "Description"
#. module: account_invoice_layout
#: help:account.invoice.line,sequence:0
msgid "Gives the sequence order when displaying a list of invoice lines."
msgstr "Gives the sequence order when displaying a list of invoice lines."
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Price"
msgstr "Price"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Invoice Date"
msgstr "Invoice Date"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
msgid "Taxes:"
msgstr "Taxes:"
#. module: account_invoice_layout
#: field:account.invoice.line,functional_field:0
msgid "Source Account"
msgstr "Source Account"
#. module: account_invoice_layout
#: model:ir.actions.act_window,name:account_invoice_layout.notify_mesage_tree_form
msgid "Write Messages"
msgstr "Write Messages"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Base"
msgstr "Base"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
msgid "Page Break"
msgstr "Page Break"
#. module: account_invoice_layout
#: view:notify.message:0
#: field:notify.message,msg:0
msgid "Special Message"
msgstr "Special Message"
#. module: account_invoice_layout
#: help:account.invoice.special.msg,message:0
msgid "Message to Print at the bottom of report"
msgstr "Message to Print at the bottom of report"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Quantity"
msgstr "Quantity"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Refund"
msgstr "Refund"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Fax :"
msgstr "Fax :"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
msgid "Total:"
msgstr "Total:"
#. module: account_invoice_layout
#: view:account.invoice.special.msg:0
msgid "Select Message"
msgstr "Select Message"
#. module: account_invoice_layout
#: view:notify.message:0
msgid "Messages"
msgstr "Messages"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
msgid "Product"
msgstr "Product"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Description / Taxes"
msgstr "Description / Taxes"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Amount"
msgstr "Amount"
#. module: account_invoice_layout
#: report:notify_account.invoice:0
msgid "Net Total :"
msgstr "Net Total :"
#. module: account_invoice_layout
#: report:notify_account.invoice:0
msgid "Total :"
msgstr "Total :"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Draft Invoice"
msgstr "Draft Invoice"
#. module: account_invoice_layout
#: field:account.invoice.line,sequence:0
msgid "Sequence Number"
msgstr "Sequence Number"
#. module: account_invoice_layout
#: model:ir.model,name:account_invoice_layout.model_account_invoice_special_msg
msgid "Account Invoice Special Message"
msgstr "Account Invoice Special Message"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Origin"
msgstr "Origin"
#. module: account_invoice_layout
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr "Invoice Number must be unique per Company!"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
msgid "Separator Line"
msgstr "Separator Line"
#. module: account_invoice_layout
#: report:notify_account.invoice:0
msgid "Your Reference"
msgstr "Your Reference"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Supplier Invoice"
msgstr "Supplier Invoice"
#. module: account_invoice_layout
#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_1
msgid "Invoices"
msgstr "Invoices"
#. module: account_invoice_layout
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr "Invalid BBA Structured Communication !"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Tax"
msgstr "Tax"
#. module: account_invoice_layout
#: model:ir.model,name:account_invoice_layout.model_account_invoice_line
msgid "Invoice Line"
msgstr "Invoice Line"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
msgid "Net Total:"
msgstr "Net Total:"
#. module: account_invoice_layout
#: model:ir.actions.act_window,name:account_invoice_layout.action_account_invoice_special_msg
#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_layout_message
msgid "Invoices and Message"
msgstr "Invoices and Message"
#. module: account_invoice_layout
#: field:account.invoice.line,state:0
msgid "Type"
msgstr "Type"
#. module: account_invoice_layout
#: view:notify.message:0
msgid "Write a notification or a wishful message."
msgstr "Write a notification or a wishful message."
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: model:ir.model,name:account_invoice_layout.model_account_invoice
#: report:notify_account.invoice:0
msgid "Invoice"
msgstr "Invoice"
#. module: account_invoice_layout
#: view:account.invoice.special.msg:0
msgid "Cancel"
msgstr "Cancel"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
#: report:notify_account.invoice:0
msgid "Supplier Refund"
msgstr "Supplier Refund"
#. module: account_invoice_layout
#: field:account.invoice.special.msg,message:0
msgid "Message"
msgstr "Message"
#. module: account_invoice_layout
#: report:notify_account.invoice:0
msgid "Taxes :"
msgstr "Taxes :"
#. module: account_invoice_layout
#: model:ir.ui.menu,name:account_invoice_layout.menu_notify_mesage_tree_form
msgid "All Notification Messages"
msgstr "All Notification Messages"
#~ msgid "Invoices Layout Improvement"
#~ msgstr "Invoices Layout Improvement"
#~ msgid "ERP & CRM Solutions..."
#~ msgstr "ERP & CRM Solutions..."
#~ msgid "Invoices with Layout and Message"
#~ msgstr "Invoices with Layout and Message"
#~ msgid "Invoices with Layout"
#~ msgstr "Invoices with Layout"
#~ msgid ""
#~ "\n"
#~ " This module provides some features to improve the layout of the "
#~ "invoices.\n"
#~ "\n"
#~ " It gives you the possibility to\n"
#~ " * order all the lines of an invoice\n"
#~ " * add titles, comment lines, sub total lines\n"
#~ " * draw horizontal lines and put page breaks\n"
#~ "\n"
#~ " Moreover, there is one option which allows you to print all the selected "
#~ "invoices with a given special message at the bottom of it. This feature can "
#~ "be very useful for printing your invoices with end-of-year wishes, special "
#~ "punctual conditions...\n"
#~ "\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ " This module provides some features to improve the layout of the "
#~ "invoices.\n"
#~ "\n"
#~ " It gives you the possibility to\n"
#~ " * order all the lines of an invoice\n"
#~ " * add titles, comment lines, sub total lines\n"
#~ " * draw horizontal lines and put page breaks\n"
#~ "\n"
#~ " Moreover, there is one option which allows you to print all the selected "
#~ "invoices with a given special message at the bottom of it. This feature can "
#~ "be very useful for printing your invoices with end-of-year wishes, special "
#~ "punctual conditions...\n"
#~ "\n"
#~ " "

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-23 19:35+0000\n"
"PO-Revision-Date: 2012-01-23 23:34+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\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: 2011-12-23 06:52+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
@ -108,7 +108,7 @@ msgstr "Bilgilendirme Mesajı"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
msgid "Customer Code"
msgstr ""
msgstr "Müşteri Kodu"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
@ -255,7 +255,7 @@ msgstr "Menşei"
#. module: account_invoice_layout
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Fatura Numarası Her Şirkette Tekil Olmalı!"
#. module: account_invoice_layout
#: selection:account.invoice.line,state:0
@ -276,12 +276,12 @@ msgstr "Tedarikçi Faturası"
#. module: account_invoice_layout
#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_1
msgid "Invoices"
msgstr ""
msgstr "Faturalar"
#. module: account_invoice_layout
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Geçersiz BBA Yapılı İletişim !"
#. module: account_invoice_layout
#: report:account.invoice.layout:0
@ -303,7 +303,7 @@ msgstr "Net Toplam:"
#: model:ir.actions.act_window,name:account_invoice_layout.action_account_invoice_special_msg
#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_layout_message
msgid "Invoices and Message"
msgstr ""
msgstr "Faturalar ve Mesajlar"
#. module: account_invoice_layout
#: field:account.invoice.line,state:0

View File

@ -51,8 +51,10 @@ This module provides :
],
'demo_xml': ['account_payment_demo.xml'],
'test': [
'test/account_payment.yml',
'test/account_payment_report.yml'
'test/account_payment_demo.yml',
'test/cancel_payment_order.yml',
'test/payment_order_process.yml',
'test/account_payment_report.yml',
],
'installable': True,
'active': False,

View File

@ -68,6 +68,7 @@ class payment_order(osv.osv):
_rec_name = 'reference'
_order = 'id desc'
#dead code
def get_wizard(self, type):
logger = netsvc.Logger()
logger.notifyChannel("warning", netsvc.LOG_WARNING,
@ -235,6 +236,7 @@ class payment_line(osv.osv):
break
return result
#dead code
def select_by_name(self, cr, uid, ids, name, args, context=None):
if not ids: return {}
partner_obj = self.pool.get('res.partner')

View File

@ -110,7 +110,7 @@
<button colspan="2" name="%(action_create_payment_order)d" string="Select Invoices to Pay" type="action" attrs="{'invisible':[('state','=','done')]}" icon="gtk-find"/>
<field name="company_id" widget='selection' groups="base.group_multi_company"/>
</group>
<field name="line_ids" colspan="4" widget="one2many_list" nolabel="1" default_get="{'order_id': active_id or False}" >
<field name="line_ids" colspan="4" widget="one2many_list" nolabel="1" context="{'order_id': active_id or False}" >
<form string="Payment Line">
<notebook>
<page string="Payment">

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-13 17:14+0000\n"
"Last-Translator: silas <Unknown>\n"
"PO-Revision-Date: 2012-01-13 19:20+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\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: 2011-12-23 06:51+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_payment
#: field:payment.order,date_scheduled:0
@ -90,7 +90,7 @@ msgstr "bevorzugtes Datum"
#. module: account_payment
#: model:res.groups,name:account_payment.group_account_payment
msgid "Accounting / Payments"
msgstr ""
msgstr "Rechnungswesen / Zahlungen"
#. module: account_payment
#: selection:payment.line,state:0
@ -175,7 +175,7 @@ msgstr "Die Zahlungsposition sollte eindeutig sein"
#. module: account_payment
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "ungültige BBA Kommunikations Stuktur"
#. module: account_payment
#: model:ir.actions.act_window,name:account_payment.action_payment_order_tree
@ -532,7 +532,7 @@ msgstr "Rechungsref."
#. module: account_payment
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Die Rechnungsnummer muss je Firma eindeutig sein"
#. module: account_payment
#: field:payment.line,name:0
@ -577,7 +577,7 @@ msgstr "Abbrechen"
#. module: account_payment
#: field:payment.line,bank_id:0
msgid "Destination Bank Account"
msgstr ""
msgstr "Bankkonto des Empfängers"
#. module: account_payment
#: view:payment.line:0
@ -643,6 +643,8 @@ msgstr "Bestätige Zahlungsvorschlag"
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
"Das Datum Ihrer Journalbuchung befindet sich nicht in der definierten "
"Periode!"
#. module: account_payment
#: field:payment.line,company_currency:0
@ -718,7 +720,7 @@ msgstr "Bezahlung"
msgid ""
"The selected account of your Journal Entry must receive a value in its "
"secondary currency"
msgstr ""
msgstr "Das ausgewählte Konto muss auch in der 2.Währung bebucht werden."
#. module: account_payment
#: field:payment.order,mode:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-29 17:44+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-24 22:37+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\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: 2011-12-23 06:51+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-25 05:25+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_payment
#: field:payment.order,date_scheduled:0
@ -87,7 +87,7 @@ msgstr "İstenen Tarih"
#. module: account_payment
#: model:res.groups,name:account_payment.group_account_payment
msgid "Accounting / Payments"
msgstr ""
msgstr "Muhasebe / Ödemeler"
#. module: account_payment
#: selection:payment.line,state:0
@ -171,7 +171,7 @@ msgstr "Ödeme satırı adı eşsiz olmalı!"
#. module: account_payment
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Geçersiz BBA Yapılı İletişim !"
#. module: account_payment
#: model:ir.actions.act_window,name:account_payment.action_payment_order_tree
@ -527,7 +527,7 @@ msgstr "Fatura Ref."
#. module: account_payment
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Fatura Numarası Her Şirkette Tekil Olmalı!"
#. module: account_payment
#: field:payment.line,name:0
@ -572,7 +572,7 @@ msgstr "İptal"
#. module: account_payment
#: field:payment.line,bank_id:0
msgid "Destination Bank Account"
msgstr ""
msgstr "Hedef Banka Hesabı"
#. module: account_payment
#: view:payment.line:0
@ -637,7 +637,7 @@ msgstr "Ödemeleri Onayla"
#. module: account_payment
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
msgstr "Yevmiye Girişinizin tarihi tanımlanan dönemle uyuşmuyor!"
#. module: account_payment
#: field:payment.line,company_currency:0

View File

@ -1,118 +0,0 @@
-
In order to test account_payment in OpenERP I created a new Bank Record
-
Creating a res.partner.bank record
-
!record {model: res.partner.bank, id: res_partner_bank_0}:
acc_number: '126-2013269-08'
partner_id: base.res_partner_9
sequence: 0.0
state: bank
bank: base.res_bank_1
-
I created a new Payment Mode
-
Creating a payment.mode record
-
!record {model: payment.mode, id: payment_mode_m0}:
bank_id: res_partner_bank_0
journal: account.bank_journal
name: TestMode
-
I created a Supplier Invoice
-
Creating a account.invoice record
-
!record {model: account.invoice, id: account_invoice_payment}:
account_id: account.a_pay
address_contact_id: base.res_partner_address_tang
address_invoice_id: base.res_partner_address_tang
check_total: 300.0
company_id: base.main_company
currency_id: base.EUR
invoice_line:
- account_id: account.a_expense
name: '[PC1] Basic PC'
price_unit: 300.0
product_id: product.product_product_pc1
quantity: 1.0
uos_id: product.product_uom_unit
journal_id: account.expenses_journal
partner_id: base.res_partner_asus
reference_type: none
type: in_invoice
-
I make the supplier invoice in Open state
-
Performing a workflow action invoice_open on module account.invoice
-
!workflow {model: account.invoice, action: invoice_open, ref: account_invoice_payment}
-
I create a new payment order
-
Creating a payment.order record
-
!record {model: payment.order, id: payment_order_0}:
date_prefered: due
mode: payment_mode_m0
reference: !eval "'%s/006' %(datetime.now().year)"
user_id: base.user_root
-
Creating a payment.order.create record
-
!record {model: payment.order.create, id: payment_order_create_0}:
duedate: !eval time.strftime('%Y-%m-%d')
-
I searched the entries using "Payment Create Order" wizard
-
Performing an osv_memory action search_entries on module payment.order.create
-
!python {model: payment.order.create}: |
self.search_entries(cr, uid, [ref("payment_order_create_0")], {"lang": "en_US",
"active_model": "payment.order", "active_ids": [ref("payment_order_0")],
"tz": False, "active_id": ref("payment_order_0"), })
-
I check that Initially Payment order is in "draft" state
-
!assert {model: payment.order, id: payment_order_0}:
- state == 'draft'
-
I pressed the confirm payment button to confirm the payment
-
Performing a workflow action open on module payment.order
-
!workflow {model: payment.order, action: open, ref: payment_order_0}
-
I check that Payment order is in "Confirmed" state
-
!assert {model: payment.order, id: payment_order_0}:
- state == 'open'
-
I paid the payment using "Make Payments" Button
-
Creating a account.payment.make.payment record
-
!record {model: account.payment.make.payment, id: account_payment_make_payment_0}:
{}
-
Performing an osv_memory action launch_wizard on module account.payment.make.payment
-
!python {model: account.payment.make.payment}: |
self.launch_wizard(cr, uid, [ref("account_payment_make_payment_0")], {"lang":
"en_US", "active_model": "payment.order", "active_ids": [ref("payment_order_0")], "tz":
False, "active_id": ref("payment_order_0"), })
-
I check that Payment order is in "Done" state
-
!assert {model: payment.order, id: payment_order_0}:
- state == 'done'

View File

@ -0,0 +1,13 @@
-
!record {model: payment.mode, id: payment_mode_1}:
company_id: base.main_company
-
!record {model: payment.order, id: payment_order_2}:
mode: payment_mode_1
-
!record {model: payment.line, id: payment_line_0}:
name: Test
communication: Test
partner_id: base.res_partner_agrolait
order_id: payment_order_2
amount_currency: 100.00

View File

@ -1,8 +1,8 @@
-
In order to test the PDF reports defined on Account Payment, Print a Payment Order
-
In order to test the PDF reports defined on Account Payment, I print a Payment Order report.
-
!python {model: payment.order}: |
import netsvc, tools, os
(data, format) = netsvc.LocalService('report.payment.order').create(cr, uid, [ref('account_payment.payment_order_1')], {}, {})
(data, format) = netsvc.LocalService('report.payment.order').create(cr, uid, [ref('payment_order_1')], {}, {})
if tools.config['test_report_directory']:
file(os.path.join(tools.config['test_report_directory'], 'account_payment-payment_order_report.'+format), 'wb+').write(data)
file(os.path.join(tools.config['test_report_directory'], 'account_payment-payment_order_report.'+format), 'wb+').write(data)

View File

@ -0,0 +1,30 @@
-
In order to test the process of cancelling the payment order,
-
I confirm payment order.
-
!workflow {model: payment.order, action: open, ref: payment_order_1}
-
I check that payment order is now "Confirmed".
-
!assert {model: payment.order, id: payment_order_1, severity: error, string: Payment Order should be 'Confirmed'.}:
- state == 'open'
-
Now, I cancel the payment order.
-
!workflow {model: payment.order, action: cancel, ref: payment_order_1}
-
I check that payment order is now "Cancelled".
-
!assert {model: payment.order, id: payment_order_1, severity: error, string: Payment Order should be 'Cancelled'.}:
- state == 'cancel'
-
I again set the payment order to draft.
-
!python {model: payment.order}: |
self.set_to_draft(cr, uid, [ref("payment_order_1")])
-
I check that payment order is now "Draft".
-
!assert {model: payment.order, id: payment_order_1, severity: error, string: Payment Order should be in 'Draft' state.}:
- state == 'draft'

View File

@ -0,0 +1,107 @@
-
In order to test the process of payment order, I start with the supplier invoice.
-
!python {model: account.invoice}: |
self.write(cr, uid, [ref('account.demo_invoice_0')], {'check_total': 14})
-
In order to test account move line of journal, I check that there is no move attached to the invoice.
-
!python {model: account.invoice}: |
invoice = self.browse(cr, uid, ref("account.demo_invoice_0"))
assert (not invoice.move_id), "Moves are wrongly created for invoice."
-
I open the invoice.
-
!workflow {model: account.invoice, action: invoice_open, ref: account.demo_invoice_0}
-
I check that the invoice state is now "Open".
-
!assert {model: account.invoice, id: account.demo_invoice_0, severity: error, string: Invoice should be in 'Open' state}:
- state == 'open'
-
I confirm the payment order.
-
!workflow {model: payment.order, action: open, ref: payment_order_1}
-
I check that payment order is now "Confirmed".
-
!assert {model: payment.order, id: payment_order_1, severity: error, string: Payment Order should be 'Confirmed'.}:
- state == 'open'
-
!record {model: payment.order.create, id: payment_order_create_0}:
duedate: !eval time.strftime('%Y-%m-%d')
-
I search for the invoice entries to make the payment.
-
!python {model: payment.order.create}: |
self.search_entries(cr, uid, [ref("payment_order_create_0")], {
"active_model": "payment.order", "active_ids": [ref("payment_order_1")],
"active_id": ref("payment_order_1"), })
-
I create payment lines entries.
-
!python {model: payment.order.create}: |
invoice = self.pool.get('account.invoice').browse(cr, uid, ref("account.demo_invoice_0"))
move_line = invoice.move_id.line_id[0]
self.write(cr, uid, [ref("payment_order_create_0")], {'entries': [(6,0,[move_line.id])]})
self.create_payment(cr, uid, [ref("payment_order_create_0")], {
"active_model": "payment.order", "active_ids": [ref("payment_order_1")],
"active_id": ref("payment_order_1")})
-
I check that payment line is created with proper data.
-
!python {model: payment.order}: |
invoice = self.pool.get('account.invoice').browse(cr, uid, ref("account.demo_invoice_0"))
payment = self.browse(cr, uid, ref("payment_order_1"))
payment_line = payment.line_ids[0]
assert payment_line.move_line_id, "move line is not created in payment line."
assert invoice.move_id.name == payment_line.ml_inv_ref.number, "invoice reference number is not same created."
assert invoice.partner_id == payment_line.partner_id, "Partner is not correct."
assert invoice.date_due == payment_line.ml_maturity_date, "Due date is not correct."
assert invoice.amount_total == payment_line.amount, "Payment amount is not correct."
-
After making all payments, I finish the payment order.
-
!python {model: payment.order}: |
self.set_done(cr, uid, [ref("payment_order_1")])
-
I check that payment order is now "Done".
-
!assert {model: payment.order, id: payment_order_1, severity: error, string: Payment Order should be in 'Done' state}:
- state == 'done'
-
I check that payment order is done with proper data.
-
!python {model: payment.order}: |
payment = self.browse(cr, uid, ref("payment_order_1"))
assert payment.date_done, "Date is not created."
-
I create a bank statement.
-
!record {model: account.bank.statement, id: account_bank_statement_1}:
balance_end_real: 0.0
balance_start: 0.0
date: !eval time.strftime('%Y-%m-%d')
journal_id: account.bank_journal
name: /
period_id: account.period_10
-
I import payment order lines for the bank statement.
-
!python {model: account.payment.populate.statement}: |
payment = self.pool.get('payment.order').browse(cr, uid, ref("payment_order_1"))
payment_line = payment.line_ids[0]
import_payment_id = self.create(cr, uid, {'lines': [(6,0,[payment_line.id])]})
self.populate_statement(cr, uid, [import_payment_id], {"statement_id": ref("account_bank_statement_1"),
"active_model": "account.bank.statement", "journal_type": "cash",
"active_id": ref("account_bank_statement_1")})
-
I am checking whether the calculations of Owner Account and Destination Account are done correctly or not in payment line.
-
!python {model: payment.line}: |
payment = self.pool.get('payment.order').browse(cr, uid, ref("payment_order_1"))
line_id = self.browse(cr, uid,payment.line_ids[0].id,context)
assert line_id.info_owner, "Owner Account not proper."
assert line_id.info_partner, "Destination Account not proper."
assert line_id.ml_inv_ref, "Invoice reference is not proper."

View File

@ -27,7 +27,8 @@
<field name="arch" type="xml">
<form string="Search Payment lines">
<group col="4" colspan="6">
<field name="entries"/>
<separator colspan="4" string="Entries"/>
<field name="entries" nolabel="1"/>
</group>
<separator colspan="4"/>
<group col="2" colspan="4">

View File

@ -21,6 +21,7 @@
from osv import osv
#TODO:REMOVE this wizard is not used
class account_payment_make_payment(osv.osv_memory):
_name = "account.payment.make.payment"
_description = "Account make payment"

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!-- TODO:REMOVE this wizard is not used -->
<record id="account_payment_make_payment_view" model="ir.ui.view">
<field name="name">account.payment.make.payment.form</field>
<field name="model">account.payment.make.payment</field>

View File

@ -0,0 +1,213 @@
# Arabic translation for openobject-addons
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2012-01-05 14:58+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Arabic <ar@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2012-01-06 04:50+0000\n"
"X-Generator: Launchpad (build 14637)\n"
#. module: account_sequence
#: view:account.sequence.installer:0
#: model:ir.actions.act_window,name:account_sequence.action_account_seq_installer
msgid "Account Sequence Application Configuration"
msgstr ""
#. module: account_sequence
#: constraint:account.move:0
msgid ""
"You can not create more than one move per period on centralized journal"
msgstr ""
#. module: account_sequence
#: help:account.move,internal_sequence_number:0
#: help:account.move.line,internal_sequence_number:0
msgid "Internal Sequence Number"
msgstr ""
#. module: account_sequence
#: help:account.sequence.installer,number_next:0
msgid "Next number of this sequence"
msgstr ""
#. module: account_sequence
#: field:account.sequence.installer,number_next:0
msgid "Next Number"
msgstr "العدد التالي"
#. module: account_sequence
#: field:account.sequence.installer,number_increment:0
msgid "Increment Number"
msgstr "مقدار الزيادة"
#. module: account_sequence
#: help:account.sequence.installer,number_increment:0
msgid "The next number of the sequence will be incremented by this number"
msgstr ""
#. module: account_sequence
#: view:account.sequence.installer:0
msgid "Configure Your Account Sequence Application"
msgstr ""
#. module: account_sequence
#: view:account.sequence.installer:0
msgid "Configure"
msgstr "تهيئة"
#. module: account_sequence
#: help:account.sequence.installer,suffix:0
msgid "Suffix value of the record for the sequence"
msgstr ""
#. module: account_sequence
#: field:account.sequence.installer,company_id:0
msgid "Company"
msgstr "شركة"
#. module: account_sequence
#: constraint:account.move.line:0
msgid "You can not create move line on closed account."
msgstr "لا يمكنك إنشاء حركة سطر علي حساب مغلق."
#. module: account_sequence
#: help:account.journal,internal_sequence_id:0
msgid ""
"This sequence will be used to maintain the internal number for the journal "
"entries related to this journal."
msgstr ""
#. module: account_sequence
#: field:account.sequence.installer,padding:0
msgid "Number padding"
msgstr ""
#. module: account_sequence
#: model:ir.model,name:account_sequence.model_account_move_line
msgid "Journal Items"
msgstr "عناصر اليومية"
#. module: account_sequence
#: field:account.move,internal_sequence_number:0
#: field:account.move.line,internal_sequence_number:0
msgid "Internal Number"
msgstr ""
#. module: account_sequence
#: constraint:account.move.line:0
msgid "Company must be same for its related account and period."
msgstr ""
#. module: account_sequence
#: help:account.sequence.installer,padding:0
msgid ""
"OpenERP will automatically adds some '0' on the left of the 'Next Number' to "
"get the required padding size."
msgstr ""
#. module: account_sequence
#: field:account.sequence.installer,name:0
msgid "Name"
msgstr "الاسم"
#. module: account_sequence
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
#. module: account_sequence
#: constraint:account.journal:0
msgid ""
"Configuration error! The currency chosen should be shared by the default "
"accounts too."
msgstr ""
#. module: account_sequence
#: sql_constraint:account.move.line:0
msgid "Wrong credit or debit value in accounting entry !"
msgstr "قيمة دائنة أو مدينة خاطئة في القيد المحاسبي !"
#. module: account_sequence
#: field:account.journal,internal_sequence_id:0
msgid "Internal Sequence"
msgstr ""
#. module: account_sequence
#: help:account.sequence.installer,prefix:0
msgid "Prefix value of the record for the sequence"
msgstr ""
#. module: account_sequence
#: model:ir.model,name:account_sequence.model_account_move
msgid "Account Entry"
msgstr "قيد الحساب"
#. module: account_sequence
#: field:account.sequence.installer,suffix:0
msgid "Suffix"
msgstr "اللاحقة"
#. module: account_sequence
#: field:account.sequence.installer,config_logo:0
msgid "Image"
msgstr "صورة"
#. module: account_sequence
#: view:account.sequence.installer:0
msgid "title"
msgstr "الاسم"
#. module: account_sequence
#: sql_constraint:account.journal:0
msgid "The name of the journal must be unique per company !"
msgstr ""
#. module: account_sequence
#: constraint:account.move.line:0
msgid ""
"The selected account of your Journal Entry must receive a value in its "
"secondary currency"
msgstr ""
#. module: account_sequence
#: field:account.sequence.installer,prefix:0
msgid "Prefix"
msgstr "بادئة"
#. module: account_sequence
#: sql_constraint:account.journal:0
msgid "The code of the journal must be unique per company !"
msgstr ""
#. module: account_sequence
#: model:ir.model,name:account_sequence.model_account_sequence_installer
msgid "account.sequence.installer"
msgstr ""
#. module: account_sequence
#: model:ir.model,name:account_sequence.model_account_journal
msgid "Journal"
msgstr "يومية"
#. module: account_sequence
#: view:account.sequence.installer:0
msgid "You can enhance the Account Sequence Application by installing ."
msgstr ""
#. module: account_sequence
#: constraint:account.move.line:0
msgid "You can not create move line on view account."
msgstr ""
#~ msgid "Configuration Progress"
#~ msgstr "سير الإعدادات"

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-04-03 09:26+0000\n"
"PO-Revision-Date: 2012-01-13 19:19+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:31+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:13+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_sequence
#: view:account.sequence.installer:0
@ -28,6 +28,7 @@ msgstr "Konfiguration Konto Sequenz Anwendung"
msgid ""
"You can not create more than one move per period on centralized journal"
msgstr ""
"Sie können nur eine Buchung je Periode für zentralisierte Journale erzeugen"
#. module: account_sequence
#: help:account.move,internal_sequence_number:0
@ -128,6 +129,8 @@ msgstr "Bezeichnung"
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
"Das Datum Ihrer Journalbuchung befindet sich nicht in der definierten "
"Periode!"
#. module: account_sequence
#: constraint:account.journal:0
@ -135,6 +138,8 @@ msgid ""
"Configuration error! The currency chosen should be shared by the default "
"accounts too."
msgstr ""
"Konfigurationsfehler! Die gewählte Währung muss auch bei den Standardkonten "
"verwendet werden"
#. module: account_sequence
#: sql_constraint:account.move.line:0
@ -181,7 +186,7 @@ msgstr "Die Journalbezeichnung sollte pro Unternehmen eindeutig sein."
msgid ""
"The selected account of your Journal Entry must receive a value in its "
"secondary currency"
msgstr ""
msgstr "Das ausgewählte Konto muss auch in der 2.Währung bebucht werden."
#. module: account_sequence
#: field:account.sequence.installer,prefix:0

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-05-29 17:45+0000\n"
"Last-Translator: Ayhan KIZILTAN <Unknown>\n"
"PO-Revision-Date: 2012-01-25 00:14+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:32+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-26 05:28+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: account_sequence
#: view:account.sequence.installer:0
@ -126,7 +126,7 @@ msgstr "Ad"
#. module: account_sequence
#: constraint:account.move.line:0
msgid "The date of your Journal Entry is not in the defined period!"
msgstr ""
msgstr "Yevmiye Girişinizin tarihi tanımlanan dönemle uyuşmuyor!"
#. module: account_sequence
#: constraint:account.journal:0

View File

@ -33,6 +33,7 @@ Account Voucher module includes all the basic requirements of Voucher Entries fo
* Cheque Register
""",
"category": 'Accounting & Finance',
"sequence": 4,
"website" : "http://tinyerp.com",
"images" : ["images/customer_payment.jpeg","images/journal_voucher.jpeg","images/sales_receipt.jpeg","images/supplier_voucher.jpeg"],
"depends" : ["account"],

View File

@ -53,7 +53,7 @@
</group>
<notebook colspan="4">
<page string="Voucher Entry">
<field name="line_ids" on_change="onchange_price(line_ids, tax_id, partner_id)" default_get="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="180">
<field name="line_ids" on_change="onchange_price(line_ids, tax_id, partner_id)" context="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="180">
<tree string="Voucher Items" editable="bottom">
<field name="account_id"/>
<field name="name"/>

View File

@ -7,19 +7,19 @@ msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:43+0000\n"
"PO-Revision-Date: 2009-02-03 06:24+0000\n"
"Last-Translator: <>\n"
"PO-Revision-Date: 2012-01-08 18:09+0000\n"
"Last-Translator: kifcaliph <Unknown>\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: 2011-12-23 07:06+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-09 04:50+0000\n"
"X-Generator: Launchpad (build 14640)\n"
#. module: account_voucher
#: view:sale.receipt.report:0
msgid "last month"
msgstr ""
msgstr "الشهر الماضي"
#. module: account_voucher
#: view:account.voucher.unreconcile:0
@ -45,7 +45,7 @@ msgstr "إجمالي المبلغ"
#. module: account_voucher
#: view:account.voucher:0
msgid "Open Customer Journal Entries"
msgstr ""
msgstr "tj"
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1045
@ -191,7 +191,7 @@ msgstr ""
#: view:sale.receipt.report:0
#: field:sale.receipt.report,date_due:0
msgid "Due Date"
msgstr ""
msgstr "تاريخ الإستحقاق"
#. module: account_voucher
#: field:account.voucher,narration:0
@ -887,7 +887,7 @@ msgstr "إلغاء"
#: view:sale.receipt.report:0
#: selection:sale.receipt.report,state:0
msgid "Pro-forma"
msgstr ""
msgstr "كمسألة شكلية"
#. module: account_voucher
#: view:account.voucher:0
@ -918,7 +918,7 @@ msgstr "شراء"
#. module: account_voucher
#: view:account.voucher:0
msgid "Pay"
msgstr ""
msgstr "ادفع"
#. module: account_voucher
#: view:sale.receipt.report:0
@ -1120,6 +1120,8 @@ msgid ""
"If you unreconciliate transactions, you must also verify all the actions "
"that are linked to those transactions because they will not be disable"
msgstr ""
"إذا قمت إلغاء تسوية العمليات، عليك أيضاً التحقق من كل الإجراءات المتعلقة لكل "
"هذه المعاملات لأنهم لن يتم إيقافها"
#. module: account_voucher
#: field:account.voucher.line,untax_amount:0

View File

@ -7,19 +7,19 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:43+0000\n"
"PO-Revision-Date: 2011-01-13 06:53+0000\n"
"Last-Translator: silas <Unknown>\n"
"PO-Revision-Date: 2012-01-13 21:06+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\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: 2011-12-23 07:07+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: account_voucher
#: view:sale.receipt.report:0
msgid "last month"
msgstr ""
msgstr "letzten Monat"
#. module: account_voucher
#: view:account.voucher.unreconcile:0
@ -139,7 +139,7 @@ msgstr "Transaktion Referenz"
#. module: account_voucher
#: view:sale.receipt.report:0
msgid "Group by year of Invoice Date"
msgstr ""
msgstr "Gruppiere je Jahr der Rechnung"
#. module: account_voucher
#: model:ir.actions.act_window,name:account_voucher.action_view_account_voucher_unreconcile
@ -170,7 +170,7 @@ msgstr "Suche Zahlungsbelege"
#. module: account_voucher
#: field:account.voucher,writeoff_acc_id:0
msgid "Counterpart Account"
msgstr ""
msgstr "Gegenkonto"
#. module: account_voucher
#: field:account.voucher,account_id:0
@ -192,7 +192,7 @@ msgstr "OK"
#. module: account_voucher
#: field:account.voucher.line,reconcile:0
msgid "Full Reconcile"
msgstr ""
msgstr "Voll Ausgleich"
#. module: account_voucher
#: field:account.voucher,date_due:0
@ -236,7 +236,7 @@ msgstr "Journal Buchung"
#. module: account_voucher
#: field:account.voucher,is_multi_currency:0
msgid "Multi Currency Voucher"
msgstr ""
msgstr "Beleg mit mehreren Währungen"
#. module: account_voucher
#: view:account.voucher:0
@ -273,7 +273,7 @@ msgstr "Storno Ausgleich"
#. module: account_voucher
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "ungültige BBA Kommunikations Stuktur"
#. module: account_voucher
#: field:account.voucher,tax_id:0
@ -283,7 +283,7 @@ msgstr "Steuer"
#. module: account_voucher
#: field:account.voucher,comment:0
msgid "Counterpart Comment"
msgstr ""
msgstr "Gegenkonto Kommentar"
#. module: account_voucher
#: field:account.voucher.line,account_analytic_id:0
@ -295,7 +295,7 @@ msgstr "Analytisches Konto"
#: code:addons/account_voucher/account_voucher.py:913
#, python-format
msgid "Warning"
msgstr ""
msgstr "Warnung"
#. module: account_voucher
#: view:account.voucher:0
@ -328,7 +328,7 @@ msgstr "Buche Einzahlung später"
msgid ""
"Computed as the difference between the amount stated in the voucher and the "
"sum of allocation on the voucher lines."
msgstr ""
msgstr "Berechnet als Differenz zwischen Belege und Belegzeilen"
#. module: account_voucher
#: selection:account.voucher,type:0
@ -344,12 +344,12 @@ msgstr "Umsatzpositionen"
#. module: account_voucher
#: constraint:res.company:0
msgid "Error! You can not create recursive companies."
msgstr ""
msgstr "Fehler! Sie können keine rekursiven Unternehmen erzeugen."
#. module: account_voucher
#: view:sale.receipt.report:0
msgid "current month"
msgstr ""
msgstr "laufender Monat"
#. module: account_voucher
#: view:account.voucher:0
@ -394,7 +394,7 @@ msgstr "Möchsten Sie die Finanzbuchungen automatisch entfernen?"
#. module: account_voucher
#: view:sale.receipt.report:0
msgid "Pro-forma Vouchers"
msgstr ""
msgstr "Pro-Forma Belege"
#. module: account_voucher
#: view:account.voucher:0
@ -435,6 +435,8 @@ msgstr "Zahle Rechnung"
#: view:account.voucher:0
msgid "Are you sure to unreconcile and cancel this record ?"
msgstr ""
"Wollen Sie den Ausgleich wirklich rückgängig machen und den Datensatz "
"stornieren / löschen"
#. module: account_voucher
#: view:account.voucher:0
@ -467,7 +469,7 @@ msgstr "Ausgleich OP zurücksetzen"
#. module: account_voucher
#: field:account.voucher,writeoff_amount:0
msgid "Difference Amount"
msgstr ""
msgstr "Differenzbetrag"
#. module: account_voucher
#: view:sale.receipt.report:0
@ -478,7 +480,7 @@ msgstr "Durch. Zahlungsverzug"
#. module: account_voucher
#: field:res.company,income_currency_exchange_account_id:0
msgid "Income Currency Rate"
msgstr ""
msgstr "Einkommen Wechselkurs"
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1045
@ -494,7 +496,7 @@ msgstr "Steuerbetrag"
#. module: account_voucher
#: view:sale.receipt.report:0
msgid "Validated Vouchers"
msgstr ""
msgstr "Bestätigte Belege"
#. module: account_voucher
#: field:account.voucher,line_ids:0
@ -543,7 +545,7 @@ msgstr "Zu Prüfen"
#: code:addons/account_voucher/account_voucher.py:1085
#, python-format
msgid "change"
msgstr ""
msgstr "Ändern"
#. module: account_voucher
#: view:account.voucher:0
@ -571,7 +573,7 @@ msgstr "Dezember"
#. module: account_voucher
#: view:sale.receipt.report:0
msgid "Group by month of Invoice Date"
msgstr ""
msgstr "Gruppiere je Monat des Rechnungsdatums"
#. module: account_voucher
#: view:sale.receipt.report:0
@ -620,17 +622,17 @@ msgstr "Durch. Zahlungsdauer"
#. module: account_voucher
#: help:account.voucher,paid:0
msgid "The Voucher has been totally paid."
msgstr ""
msgstr "Der Beleg wurde vollständig bezahlt"
#. module: account_voucher
#: selection:account.voucher,payment_option:0
msgid "Reconcile Payment Balance"
msgstr ""
msgstr "OP-Ausgleich Saldo"
#. module: account_voucher
#: sql_constraint:res.company:0
msgid "The company name must be unique !"
msgstr ""
msgstr "Der Name der Firma darf nur einmal vorkommen!"
#. module: account_voucher
#: view:account.voucher:0
@ -647,12 +649,14 @@ msgid ""
"Unable to create accounting entry for currency rate difference. You have to "
"configure the field 'Income Currency Rate' on the company! "
msgstr ""
"Kann keine Buchung für Währungsdifferenzen erzeugen. Sie müssen das "
"entsprechende Feld im Unternehmensstammsatz ausfüllen "
#. module: account_voucher
#: view:account.voucher:0
#: view:sale.receipt.report:0
msgid "Draft Vouchers"
msgstr ""
msgstr "Entwurf Belege"
#. module: account_voucher
#: view:sale.receipt.report:0
@ -663,7 +667,7 @@ msgstr "Bruttobetrag"
#. module: account_voucher
#: field:account.voucher.line,amount:0
msgid "Allocation"
msgstr ""
msgstr "Zuordnung"
#. module: account_voucher
#: selection:sale.receipt.report,month:0
@ -676,6 +680,8 @@ msgid ""
"Check this box if you are unsure of that journal entry and if you want to "
"note it as 'to be reviewed' by an accounting expert."
msgstr ""
"Aktiviere diese Option, wenn Sie bezüglich der Buchung nicht sicher sind und "
"demnach als 'zu überprüfen' durch einen Buchhalter markieren möchten."
#. module: account_voucher
#: selection:sale.receipt.report,month:0
@ -690,12 +696,12 @@ msgstr "Juni"
#. module: account_voucher
#: field:account.voucher,payment_rate_currency_id:0
msgid "Payment Rate Currency"
msgstr ""
msgstr "Wechselkurs der Zahlung"
#. module: account_voucher
#: field:account.voucher,paid:0
msgid "Paid"
msgstr ""
msgstr "Bezahlt"
#. module: account_voucher
#: view:account.voucher:0
@ -727,7 +733,7 @@ msgstr "Erweiterter Filter..."
#. module: account_voucher
#: field:account.voucher,paid_amount_in_company_currency:0
msgid "Paid Amount in Company Currency"
msgstr ""
msgstr "Bezahlter Betrag in Unternehmenswährung"
#. module: account_voucher
#: field:account.bank.statement.line,amount_reconciled:0
@ -774,7 +780,7 @@ msgstr "Berechne Steuer"
#. module: account_voucher
#: model:ir.model,name:account_voucher.model_res_company
msgid "Companies"
msgstr ""
msgstr "Unternehmen"
#. module: account_voucher
#: selection:account.voucher.line,type:0
@ -795,12 +801,12 @@ msgstr "Öffne Lieferantenbuchungen"
#. module: account_voucher
#: view:account.voucher:0
msgid "Total Allocation"
msgstr ""
msgstr "Gesamte Zuordnung"
#. module: account_voucher
#: view:sale.receipt.report:0
msgid "Group by Invoice Date"
msgstr ""
msgstr "Gruppiert je Rechnungsdatum"
#. module: account_voucher
#: view:account.voucher:0
@ -815,12 +821,12 @@ msgstr "Rechnungen und andere offene Posten"
#. module: account_voucher
#: field:res.company,expense_currency_exchange_account_id:0
msgid "Expense Currency Rate"
msgstr ""
msgstr "Aufwand Wechselkurs"
#. module: account_voucher
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Die Rechnungsnummer muss je Firma eindeutig sein"
#. module: account_voucher
#: view:sale.receipt.report:0
@ -952,12 +958,12 @@ msgstr "Zahlen"
#. module: account_voucher
#: view:sale.receipt.report:0
msgid "year"
msgstr ""
msgstr "Jahr"
#. module: account_voucher
#: view:account.voucher:0
msgid "Currency Options"
msgstr ""
msgstr "Währungsoptionen"
#. module: account_voucher
#: help:account.voucher,payment_option:0
@ -967,6 +973,9 @@ msgid ""
"either choose to keep open this difference on the partner's account, or "
"reconcile it with the payment(s)"
msgstr ""
"In diesem Feld können Sie auswählen was mit allfälligen Differenzen zwischen "
"Zahlung und zugeordneten Beträgen geschehen soll. Sie können diese entweder "
"offen lassen oder ausgleichen."
#. module: account_voucher
#: view:account.voucher:0
@ -988,12 +997,12 @@ msgstr ""
#. module: account_voucher
#: view:account.voucher:0
msgid "Posted Vouchers"
msgstr ""
msgstr "Verbuchte Belege"
#. module: account_voucher
#: field:account.voucher,payment_rate:0
msgid "Exchange Rate"
msgstr ""
msgstr "Wechselkurs"
#. module: account_voucher
#: view:account.voucher:0
@ -1045,14 +1054,14 @@ msgstr "Ursprünglicher Betrag"
#: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt
#: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt
msgid "Purchase Receipt"
msgstr ""
msgstr "Einkauf Bestätigung"
#. module: account_voucher
#: help:account.voucher,payment_rate:0
msgid ""
"The specific rate that will be used, in this voucher, between the selected "
"currency (in 'Payment Rate Currency' field) and the voucher currency."
msgstr ""
msgstr "Ein spezieller Wechselkurs für diesen Beleg."
#. module: account_voucher
#: field:account.bank.statement.line,voucher_id:0
@ -1086,12 +1095,12 @@ msgstr "Februar"
#: code:addons/account_voucher/account_voucher.py:444
#, python-format
msgid "Please define default credit/debit account on the %s !"
msgstr ""
msgstr "Bitte definieren Sie Standard Soll/Haben Konten für %s!"
#. module: account_voucher
#: view:sale.receipt.report:0
msgid "Month-1"
msgstr ""
msgstr "Monat-1"
#. module: account_voucher
#: selection:sale.receipt.report,month:0
@ -1110,6 +1119,8 @@ msgid ""
"Unable to create accounting entry for currency rate difference. You have to "
"configure the field 'Expense Currency Rate' on the company! "
msgstr ""
"Kann keine Buchung für Währungsdifferenezen erzeugen. Sie müssen das "
"entsprechende Konto im Unternehmensstamm definieren "
#. module: account_voucher
#: field:account.voucher,type:0

View File

@ -92,7 +92,7 @@
</group>
<notebook colspan="4">
<page string="Payment Information">
<field name="line_dr_ids" attrs="{'invisible': [('type', '=', 'receipt')]}" default_get="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="140" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount, currency_id, context)">
<field name="line_dr_ids" attrs="{'invisible': [('type', '=', 'receipt')]}" context="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="140" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount, currency_id, context)">
<tree string="Open Supplier Journal Entries" editable="bottom" colors="gray:amount==0">
<field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
on_change="onchange_move_line_id(move_line_id)"
@ -106,7 +106,7 @@
<field name="amount" sum="Total Allocation"/>
</tree>
</field>
<field name="line_cr_ids" colspan="4" nolabel="1" attrs="{'invisible': [('type', '=', 'payment')]}" default_get="{'journal_id':journal_id, 'partner_id':partner_id}" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount, currency_id, context)">
<field name="line_cr_ids" colspan="4" nolabel="1" attrs="{'invisible': [('type', '=', 'payment')]}" context="{'journal_id':journal_id, 'partner_id':partner_id}" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount, currency_id, context)">
<tree string="Open Customer Journal Entries" editable="bottom" colors="gray:amount==0">
<field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
on_change="onchange_move_line_id(move_line_id)"
@ -166,7 +166,7 @@
</group>
<notebook colspan="4">
<page string="Payment Information">
<field name="line_dr_ids" default_get="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="140">
<field name="line_dr_ids" context="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="140">
<tree string="Supplier Invoices and Outstanding transactions" editable="bottom" colors="gray:amount==0">
<field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
on_change="onchange_move_line_id(move_line_id)"
@ -182,7 +182,7 @@
<field name="amount" sum="Total Allocation" on_change="onchange_amount(amount, amount_unreconciled, context)"/>
</tree>
</field>
<field name="line_cr_ids" colspan="4" nolabel="1" attrs="{'invisible': [('pre_line','=',False)]}" default_get="{'journal_id':journal_id, 'partner_id':partner_id}">
<field name="line_cr_ids" colspan="4" nolabel="1" attrs="{'invisible': [('pre_line','=',False)]}" context="{'journal_id':journal_id, 'partner_id':partner_id}">
<tree string="Credits" editable="bottom" colors="gray:amount==0">
<field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
on_change="onchange_move_line_id(move_line_id)"
@ -318,7 +318,7 @@
</group>
<notebook colspan="4">
<page string="Payment Information">
<field name="line_cr_ids" default_get="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="140" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount, currency_id, context)">
<field name="line_cr_ids" context="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="140" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount, currency_id, context)">
<tree string="Invoices and outstanding transactions" editable="bottom" colors="gray:amount==0">
<field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
on_change="onchange_move_line_id(move_line_id)"
@ -334,7 +334,7 @@
<field name="amount" sum="Total Allocation" on_change="onchange_amount(amount, amount_unreconciled, context)" string="Allocation"/>
</tree>
</field>
<field name="line_dr_ids" colspan="4" nolabel="1" attrs="{'invisible': [('pre_line','=',False)]}" default_get="{'journal_id':journal_id, 'partner_id':partner_id}" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount, currency_id, context)">
<field name="line_dr_ids" colspan="4" nolabel="1" attrs="{'invisible': [('pre_line','=',False)]}" context="{'journal_id':journal_id, 'partner_id':partner_id}" on_change="onchange_line_ids(line_dr_ids, line_cr_ids, amount, currency_id, context)">
<tree string="Credits" editable="bottom" colors="gray:amount==0">
<field name="move_line_id" context="{'journal_id':parent.journal_id, 'partner_id':parent.partner_id}"
on_change="onchange_move_line_id(move_line_id)"

View File

@ -93,7 +93,7 @@
</group>
<notebook colspan="4">
<page string="Sales Information">
<field name="line_cr_ids" on_change="onchange_price(line_cr_ids, tax_id, partner_id)" default_get="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="180">
<field name="line_cr_ids" on_change="onchange_price(line_cr_ids, tax_id, partner_id)" context="{'journal_id':journal_id, 'type':type, 'partner_id':partner_id}" colspan="4" nolabel="1" height="180">
<tree string="Sales Lines" editable="bottom">
<field name="account_id" domain="[('user_type.report_type','=','income'),('type','!=','view')]" widget="selection"/>
<field name="name"/>
@ -222,7 +222,7 @@
</group>
<notebook colspan="4">
<page string="Bill Information">
<field name="line_dr_ids" on_change="onchange_price(line_dr_ids, tax_id, partner_id)" default_get="{'journal_id':journal_id,'partner_id':partner_id}" colspan="4" nolabel="1" height="180">
<field name="line_dr_ids" on_change="onchange_price(line_dr_ids, tax_id, partner_id)" context="{'journal_id':journal_id,'partner_id':partner_id}" colspan="4" nolabel="1" height="180">
<tree string="Expense Lines" editable="bottom">
<field name="account_id" widget="selection" domain="[('user_type.report_type','=','expense'), ('type','!=','view')]"/>
<field name="name"/>

View File

@ -89,11 +89,10 @@ class account_statement_from_invoice_lines(osv.osv_memory):
voucher_id = voucher_obj.create(cr, uid, voucher_res, context=context)
voucher_line_dict = {}
if result['value']['line_ids']:
for line_dict in result['value']['line_ids']:
move_line = line_obj.browse(cr, uid, line_dict['move_line_id'], context)
if line.move_id.id == move_line.move_id.id:
voucher_line_dict = line_dict
for line_dict in result['value']['line_cr_ids'] + result['value']['line_dr_ids']:
move_line = line_obj.browse(cr, uid, line_dict['move_line_id'], context)
if line.move_id.id == move_line.move_id.id:
voucher_line_dict = line_dict
if voucher_line_dict:
voucher_line_dict.update({'voucher_id': voucher_id})
@ -190,4 +189,4 @@ class account_statement_from_invoice(osv.osv_memory):
}
account_statement_from_invoice()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-09-22 02:41+0000\n"
"Last-Translator: kifcaliph <kifcaliph@hotmail.com>\n"
"PO-Revision-Date: 2012-01-23 14:39+0000\n"
"Last-Translator: kifcaliph <Unknown>\n"
"Language-Team: Arabic <ar@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:16+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: analytic
#: field:account.analytic.account,child_ids:0
@ -128,7 +128,7 @@ msgstr "مستخدِم"
#. module: analytic
#: field:account.analytic.account,parent_id:0
msgid "Parent Analytic Account"
msgstr "حساب التحليل الأعلى"
msgstr "الحساب التحليلي الرئيسي"
#. module: analytic
#: field:account.analytic.line,date:0
@ -152,6 +152,8 @@ msgid ""
"Calculated by multiplying the quantity and the price given in the Product's "
"cost price. Always expressed in the company main currency."
msgstr ""
"محسوبة بواسطة ضرب الكمية و السعر المعطى في سعر تكلفة المنتج. و يعبر عنه "
"دائما بالعملة الرئيسية للشركة."
#. module: analytic
#: field:account.analytic.account,child_complete_ids:0
@ -223,7 +225,7 @@ msgstr ""
#. module: analytic
#: field:account.analytic.account,date:0
msgid "Date End"
msgstr "نهاية التاريخ"
msgstr "تاريخ الإنتهاء"
#. module: analytic
#: field:account.analytic.account,quantity_max:0

View File

@ -8,15 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-12 20:39+0000\n"
"Last-Translator: Thorsten Vocks (OpenBig.org) <thorsten.vocks@big-"
"consulting.net>\n"
"PO-Revision-Date: 2012-01-13 19:16+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\n"
"Language-Team: German <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:16+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: analytic
#: field:account.analytic.account,child_ids:0
@ -93,7 +92,7 @@ msgstr ""
#. module: analytic
#: selection:account.analytic.account,state:0
msgid "New"
msgstr ""
msgstr "Neu"
#. module: analytic
#: field:account.analytic.account,type:0
@ -210,7 +209,7 @@ msgstr "Fehler! Die Währung muss der Währung der gewählten Firma entsprechen"
#. module: analytic
#: field:account.analytic.account,code:0
msgid "Code/Reference"
msgstr ""
msgstr "Code/Referenz"
#. module: analytic
#: selection:account.analytic.account,state:0
@ -221,7 +220,7 @@ msgstr "Abgebrochen"
#: code:addons/analytic/analytic.py:138
#, python-format
msgid "Error !"
msgstr ""
msgstr "Fehler !"
#. module: analytic
#: field:account.analytic.account,balance:0
@ -250,12 +249,12 @@ msgstr "Ende Datum"
#. module: analytic
#: field:account.analytic.account,quantity_max:0
msgid "Maximum Time"
msgstr ""
msgstr "Maximale Zeit"
#. module: analytic
#: model:res.groups,name:analytic.group_analytic_accounting
msgid "Analytic Accounting"
msgstr ""
msgstr "Analytische Konten"
#. module: analytic
#: field:account.analytic.account,complete_name:0
@ -271,12 +270,12 @@ msgstr "Analytisches Konto"
#. module: analytic
#: field:account.analytic.account,currency_id:0
msgid "Currency"
msgstr ""
msgstr "Währung"
#. module: analytic
#: constraint:account.analytic.line:0
msgid "You can not create analytic line on view account."
msgstr ""
msgstr "Für Sichten dürfen keine Analysezeilen erzeugt werden"
#. module: analytic
#: selection:account.analytic.account,type:0

View File

@ -7,14 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 5.0.4\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2009-02-03 06:24+0000\n"
"Last-Translator: <>\n"
"PO-Revision-Date: 2012-01-05 20:55+0000\n"
"Last-Translator: kifcaliph <kifcaliph@hotmail.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: 2011-12-23 07:07+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-06 04:50+0000\n"
"X-Generator: Launchpad (build 14637)\n"
#. module: analytic_journal_billing_rate
#: sql_constraint:account.invoice:0
@ -24,12 +24,12 @@ msgstr ""
#. module: analytic_journal_billing_rate
#: field:analytic_journal_rate_grid,journal_id:0
msgid "Analytic Journal"
msgstr ""
msgstr "يومية تحليلية"
#. module: analytic_journal_billing_rate
#: model:ir.model,name:analytic_journal_billing_rate.model_account_invoice
msgid "Invoice"
msgstr ""
msgstr "فاتورة"
#. module: analytic_journal_billing_rate
#: constraint:account.invoice:0
@ -45,7 +45,7 @@ msgstr ""
#: field:analytic_journal_rate_grid,account_id:0
#: model:ir.model,name:analytic_journal_billing_rate.model_account_analytic_account
msgid "Analytic Account"
msgstr ""
msgstr "حساب تحليلي"
#. module: analytic_journal_billing_rate
#: model:ir.model,name:analytic_journal_billing_rate.model_analytic_journal_rate_grid
@ -62,7 +62,7 @@ msgstr ""
msgid ""
"Error! The currency has to be the same as the currency of the selected "
"company"
msgstr ""
msgstr "خطأ! العملة لابد و أن تكون مثل العملة للشركة المختارة"
#. module: analytic_journal_billing_rate
#: constraint:hr.analytic.timesheet:0
@ -77,7 +77,7 @@ msgstr ""
#. module: analytic_journal_billing_rate
#: constraint:account.analytic.account:0
msgid "Error! You can not create recursive analytic accounts."
msgstr ""
msgstr "خطأ! لا يمكنك إنشاء حسابات تحليلية متكررة."
#. module: analytic_journal_billing_rate
#: model:ir.model,name:analytic_journal_billing_rate.model_hr_analytic_timesheet

View File

@ -7,20 +7,19 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-13 20:55+0000\n"
"Last-Translator: Thorsten Vocks (OpenBig.org) <thorsten.vocks@big-"
"consulting.net>\n"
"PO-Revision-Date: 2012-01-13 19:15+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\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: 2011-12-23 07:07+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: analytic_journal_billing_rate
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Die Rechnungsnummer muss je Firma eindeutig sein"
#. module: analytic_journal_billing_rate
#: field:analytic_journal_rate_grid,journal_id:0
@ -35,7 +34,7 @@ msgstr "Rechnung"
#. module: analytic_journal_billing_rate
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "ungültige BBA Kommunikations Stuktur"
#. module: analytic_journal_billing_rate
#: view:analytic_journal_rate_grid:0
@ -69,6 +68,7 @@ msgstr "Fehler! Die Währung muss der Währung der gewählten Firma entsprechen"
#: constraint:hr.analytic.timesheet:0
msgid "You cannot modify an entry in a Confirmed/Done timesheet !."
msgstr ""
"Bestätigte und abgerechnete Zeitaufzeichungen können nicht geändert werden"
#. module: analytic_journal_billing_rate
#: field:analytic_journal_rate_grid,rate_id:0

View File

@ -8,19 +8,19 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-08-25 11:50+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 13:36+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:07+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: analytic_journal_billing_rate
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Invoice Number must be unique per Company!"
#. module: analytic_journal_billing_rate
#: field:analytic_journal_rate_grid,journal_id:0
@ -35,7 +35,7 @@ msgstr "Invoice"
#. module: analytic_journal_billing_rate
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Invalid BBA Structured Communication !"
#. module: analytic_journal_billing_rate
#: view:analytic_journal_rate_grid:0
@ -69,7 +69,7 @@ msgstr ""
#. module: analytic_journal_billing_rate
#: constraint:hr.analytic.timesheet:0
msgid "You cannot modify an entry in a Confirmed/Done timesheet !."
msgstr ""
msgstr "You cannot modify an entry in a Confirmed/Done timesheet !."
#. module: analytic_journal_billing_rate
#: field:analytic_journal_rate_grid,rate_id:0

View File

@ -7,19 +7,19 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2010-09-09 07:16+0000\n"
"Last-Translator: Fabien (Open ERP) <fp@tinyerp.com>\n"
"PO-Revision-Date: 2012-01-25 00:10+0000\n"
"Last-Translator: Ahmet Altınışık <Unknown>\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: 2011-12-23 07:07+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-26 05:27+0000\n"
"X-Generator: Launchpad (build 14719)\n"
#. module: analytic_journal_billing_rate
#: sql_constraint:account.invoice:0
msgid "Invoice Number must be unique per Company!"
msgstr ""
msgstr "Fatura Numarası Her Şirkette Tekil Olmalı!"
#. module: analytic_journal_billing_rate
#: field:analytic_journal_rate_grid,journal_id:0
@ -34,7 +34,7 @@ msgstr "Fatura"
#. module: analytic_journal_billing_rate
#: constraint:account.invoice:0
msgid "Invalid BBA Structured Communication !"
msgstr ""
msgstr "Geçersiz BBA Yapılı İletişim !"
#. module: analytic_journal_billing_rate
#: view:analytic_journal_rate_grid:0
@ -68,6 +68,7 @@ msgstr "Hata! Para birimi seçilen firmanın para birimiyle aynı olmalı"
#: constraint:hr.analytic.timesheet:0
msgid "You cannot modify an entry in a Confirmed/Done timesheet !."
msgstr ""
"Onaylandı/Tamanlandı durumundaki zaman çizelgesini değiştiremezsiniz !."
#. module: analytic_journal_billing_rate
#: field:analytic_journal_rate_grid,rate_id:0

View File

@ -7,15 +7,14 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-01-12 16:14+0000\n"
"Last-Translator: Thorsten Vocks (OpenBig.org) <thorsten.vocks@big-"
"consulting.net>\n"
"PO-Revision-Date: 2012-01-13 19:15+0000\n"
"Last-Translator: Ferdinand @ Camptocamp <Unknown>\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: 2011-12-23 07:09+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-14 05:12+0000\n"
"X-Generator: Launchpad (build 14664)\n"
#. module: analytic_user_function
#: field:analytic.user.funct.grid,product_id:0
@ -31,6 +30,7 @@ msgstr "Relation zwischen Benutzern und Produkten"
#: constraint:hr.analytic.timesheet:0
msgid "You cannot modify an entry in a Confirmed/Done timesheet !."
msgstr ""
"Bestätigte und abgerechnete Zeitaufzeichungen können nicht geändert werden"
#. module: analytic_user_function
#: field:analytic.user.funct.grid,account_id:0

View File

@ -8,14 +8,14 @@ msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-12-22 18:44+0000\n"
"PO-Revision-Date: 2011-08-25 17:43+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2012-01-23 13:22+0000\n"
"Last-Translator: mrx5682 <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-12-23 07:09+0000\n"
"X-Generator: Launchpad (build 14560)\n"
"X-Launchpad-Export-Date: 2012-01-24 05:30+0000\n"
"X-Generator: Launchpad (build 14713)\n"
#. module: analytic_user_function
#: field:analytic.user.funct.grid,product_id:0
@ -30,7 +30,7 @@ msgstr "Relation table between users and products on a analytic account"
#. module: analytic_user_function
#: constraint:hr.analytic.timesheet:0
msgid "You cannot modify an entry in a Confirmed/Done timesheet !."
msgstr ""
msgstr "You cannot modify an entry in a Confirmed/Done timesheet !."
#. module: analytic_user_function
#: field:analytic.user.funct.grid,account_id:0

Some files were not shown because too many files have changed in this diff Show More