[Merge]: Merge from trunk.

bzr revid: rch@tinyerp.com-20101119134029-g7s9fotsw59mx9ww
This commit is contained in:
rch-openerp 2010-11-19 19:10:29 +05:30
commit 8db844d712
293 changed files with 50383 additions and 22768 deletions

View File

@ -344,7 +344,7 @@ class account_account(osv.osv):
_columns = {
'name': fields.char('Name', size=128, required=True, select=True),
'currency_id': fields.many2one('res.currency', 'Secondary Currency', help="Forces all moves for this account to have this secondary currency."),
'code': fields.char('Code', size=64, required=True),
'code': fields.char('Code', size=64, required=True, select=1),
'type': fields.selection([
('view', 'View'),
('other', 'Regular'),
@ -1726,7 +1726,12 @@ class account_tax(osv.osv):
if not context:
context = {}
ids = []
ids = self.search(cr, user, args, limit=limit, context=context)
if name:
ids = self.search(cr, user, [('description', '=', name)] + args, limit=limit, context=context)
if not ids:
ids = self.search(cr, user, [('name', operator, name)] + args, limit=limit, context=context)
else:
ids = self.search(cr, user, args, limit=limit, context=context or {})
return self.name_get(cr, user, ids, context=context)
def write(self, cr, uid, ids, vals, context=None):
@ -2254,7 +2259,7 @@ class account_account_template(osv.osv):
_columns = {
'name': fields.char('Name', size=128, required=True, select=True),
'currency_id': fields.many2one('res.currency', 'Secondary Currency', help="Forces all moves for this account to have this secondary currency."),
'code': fields.char('Code', size=64),
'code': fields.char('Code', size=64, select=1),
'type': fields.selection([
('receivable','Receivable'),
('payable','Payable'),
@ -2454,7 +2459,8 @@ class account_tax_template(osv.osv):
'ref_tax_sign': fields.float('Tax Code Sign', help="Usually 1 or -1."),
'include_base_amount': fields.boolean('Include in Base Amount', help="Set if the amount of tax must be included in the base amount before computing the next taxes."),
'description': fields.char('Internal Name', size=32),
'type_tax_use': fields.selection([('sale','Sale'),('purchase','Purchase'),('all','All')], 'Tax Use In', required=True,)
'type_tax_use': fields.selection([('sale','Sale'),('purchase','Purchase'),('all','All')], 'Tax Use In', required=True,),
'price_include': fields.boolean('Tax Included in Price', help="Check this if the price you use on the product and invoices includes this tax."),
}
def name_get(self, cr, uid, ids, context={}):
@ -2485,6 +2491,7 @@ class account_tax_template(osv.osv):
'base_sign': 1,
'include_base_amount': False,
'type_tax_use': 'all',
'price_include': 0,
}
_order = 'sequence'
@ -2658,7 +2665,8 @@ class wizard_multi_charts_accounts(osv.osv_memory):
'include_base_amount': tax.include_base_amount,
'description':tax.description,
'company_id': company_id,
'type_tax_use': tax.type_tax_use
'type_tax_use': tax.type_tax_use,
'price_include': tax.price_include
}
new_tax = obj_acc_tax.create(cr, uid, vals_tax)
tax_template_to_tax[tax.id] = new_tax

View File

@ -454,4 +454,4 @@ class account_bank_statement_line(osv.osv):
account_bank_statement_line()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -95,7 +95,7 @@ class account_cash_statement(osv.osv):
@param arg: User defined arguments
@return: Dictionary of values.
"""
res ={}
res = {}
for statement in self.browse(cr, uid, ids):
amount_total = 0.0
for line in statement.ending_details_ids:
@ -110,7 +110,7 @@ class account_cash_statement(osv.osv):
@param arg: User defined arguments
@return: Dictionary of values.
"""
res2={}
res2 = {}
for statement in self.browse(cr, uid, ids):
encoding_total=0.0
for line in statement.line_ids:
@ -297,7 +297,6 @@ class account_cash_statement(osv.osv):
"""
res = {}
balance_start = 0.0
if not journal_id:
res.update({
'balance_start': balance_start
@ -311,8 +310,7 @@ class account_cash_statement(osv.osv):
statement.balance_end_real = statement.balance_end
if statement.balance_end != statement.balance_end_cash:
return False
else:
return True
return True
def _user_allow(self, cr, uid, statement_id, context=None):
return True

View File

@ -23,7 +23,7 @@
<menuitem id="menu_finance_accounting" name="Financial Accounting" parent="menu_finance_configuration"/>
<menuitem id="menu_analytic_accounting" name="Analytic Accounting" parent="menu_finance_configuration" groups="analytic.group_analytic_accounting"/>
<menuitem id="menu_analytic" parent="menu_analytic_accounting" name="Accounts" groups="analytic.group_analytic_accounting"/>
<menuitem id="menu_low_level" name="Low Level" parent="menu_finance_accounting" groups="base.group_extended,group_account_manager"/>
<menuitem id="menu_journals" sequence="9" name="Journals" parent="menu_finance_accounting" groups="base.group_extended,group_account_manager"/>
<menuitem id="menu_configuration_misc" name="Miscellaneous" parent="menu_finance_configuration" sequence="30" groups="group_account_manager"/>
<menuitem id="base.menu_action_currency_form" parent="menu_configuration_misc" sequence="20"/>
<menuitem id="menu_finance_generic_reporting" name="Generic Reporting" parent="menu_finance_reporting" sequence="100"/>

View File

@ -433,7 +433,7 @@ class account_move_line(osv.osv):
'period_id': fields.many2one('account.period', 'Period', required=True, select=2),
'journal_id': fields.many2one('account.journal', 'Journal', required=True, select=1),
'blocked': fields.boolean('Litigation', help="You can check this box to mark this journal item as a litigation with the associated partner"),
'partner_id': fields.many2one('res.partner', 'Partner'),
'partner_id': fields.many2one('res.partner', 'Partner', select=1),
'date_maturity': fields.date('Due date', help="This field is used for payable and receivable journal entries. You can put the limit date for the payment of this line."),
'date': fields.related('move_id','date', string='Effective date', type='date', required=True,
store = {
@ -489,6 +489,7 @@ class account_move_line(osv.osv):
'state': 'draft',
'currency_id': _get_currency,
'journal_id': lambda self, cr, uid, c: c.get('journal_id', False),
'account_id': lambda self, cr, uid, c: c.get('account_id', False),
'period_id': lambda self, cr, uid, c: c.get('period_id', False),
'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'account.move.line', context=c)
}
@ -1091,7 +1092,7 @@ class account_move_line(osv.osv):
def _update_check(self, cr, uid, ids, context={}):
done = {}
for line in self.browse(cr, uid, ids, context):
if line.move_id.state <> 'draft':
if line.move_id.state <> 'draft' and (not line.journal_id.entry_posted):
raise osv.except_osv(_('Error !'), _('You can not do this modification on a confirmed entry ! Please note that you can just change some non important fields !'))
if line.reconcile_id:
raise osv.except_osv(_('Error !'), _('You can not do this modification on a reconciled entry ! Please note that you can just change some non important fields !'))

View File

@ -79,7 +79,7 @@
<field name="view_mode">tree,form,search</field>
<field name="help">Define your company's fiscal year depending on the period you have chosen to follow. A fiscal year is a 1 year period over which a company budgets its spending. It may run over any period of 12 months. The fiscal year is referred to by the date in which it ends. For example, if a company's fiscal year ends November 30, 2011, then everything between December 1, 2010 and November 30, 2011 would be referred to as FY 2011. Not using the actual calendar year gives many companies an advantage, allowing them to close their books at a time which is most convenient for them.</field>
</record>
<menuitem id="next_id_23" name="Periods" parent="account.menu_finance_accounting"/>
<menuitem id="next_id_23" name="Periods" parent="account.menu_finance_accounting" sequence="8" />
<menuitem action="action_account_fiscalyear_form" id="menu_action_account_fiscalyear_form" parent="next_id_23"/>
<!--
@ -357,7 +357,7 @@
<field name="help">Here you can personalize and create each view of your financial journals by selecting the fields you want to appear and the sequence they will appear.</field>
</record>
<menuitem action="action_account_journal_view" id="menu_action_account_journal_view" parent="account.menu_low_level"/>
<menuitem action="action_account_journal_view" id="menu_action_account_journal_view" parent="account.menu_journals"/>
<!--
# Account Journal
@ -469,7 +469,7 @@
<field name="view_mode">tree,form</field>
<field name="help">Create and manage your company's financial journals from this menu. A journal is a business diary in which all financial data related to the day to day business transactions of your company is recorded using double-entry book keeping system. Depending on the nature of its activities and number of daily transactions, a company may keep several types of specialized journals such as a cash journal, purchases journal, and sales journal.</field>
</record>
<menuitem action="action_account_journal_form" id="menu_action_account_journal_form" parent="account_account_menu"/>
<menuitem action="action_account_journal_form" id="menu_action_account_journal_form" parent="menu_journals"/>
<record id="view_account_bank_statement_filter" model="ir.ui.view">
<field name="name">account.cash.statement.select</field>
@ -749,7 +749,7 @@
<field name="search_view_id" ref="view_account_type_search"/>
<field name="help">An account type is a name or code given to an account that indicates its purpose. For example, the account type could be linked to an asset account, expense account or payable account. From this view, you can create and manage the account types you need to be used for your company management.</field>
</record>
<menuitem action="action_account_type_form" groups="base.group_extended,group_account_manager" id="menu_action_account_type_form" parent="menu_low_level"/>
<menuitem action="action_account_type_form" groups="base.group_extended,group_account_manager" sequence="6" id="menu_action_account_type_form" parent="account_account_menu"/>
<!--
Entries
-->
@ -863,7 +863,7 @@
<field name="help">A tax code is a reference of a tax that will be taken out of a gross income depending on the country and sometimes industry sector. OpenERP allows you to define and manage them from this menu.</field>
</record>
<menuitem id="next_id_27" name="Taxes" parent="account.menu_finance_accounting"/>
<menuitem action="action_tax_code_list" id="menu_action_tax_code_list" parent="menu_low_level" sequence="12"/>
<menuitem action="action_tax_code_list" id="menu_action_tax_code_list" parent="next_id_27" sequence="12"/>
<!--
@ -1236,6 +1236,7 @@
<field name="view_id" ref="view_move_line_tree"/>
<field name="search_view_id" ref="view_account_move_line_filter"/>
<field name="domain">[('account_id', 'child_of', active_id)]</field>
<field name="context">{'account_id':active_id}</field>
</record>
<record id="ir_account_move_line_select" model="ir.values">
@ -2257,6 +2258,7 @@
<field name="chart_template_id"/>
<field name="type"/>
<field name="type_tax_use"/>
<field name="price_include"/>
</group>
<notebook colspan="4">
<page string="Tax Definition">

View File

@ -220,7 +220,7 @@
<field name="code">1113</field>
<field name="name">Reserve and Profit/Loss Account</field>
<field ref="conf_cli" name="parent_id"/>
<field name="type">payable</field>
<field name="type">other</field>
<field eval="True" name="reconcile"/>
<field name="user_type" ref="conf_account_type_liability"/>
</record>

View File

@ -12,6 +12,7 @@
-->
<record id="account_payment_term" model="account.payment.term">
<field name="name">30 Days End of Month</field>
<field name="note">30 Days End of Month</field>
</record>
<record id="account_payment_term_line" model="account.payment.term.line">
<field name="name">30 Days End of Month</field>

View File

@ -201,7 +201,7 @@
<field name="code">X1113</field>
<field name="name">Reserve and Profit/Loss - (test)</field>
<field ref="cli" name="parent_id"/>
<field name="type">payable</field>
<field name="type">other</field>
<field name="user_type" ref="account_type_liability"/>
</record>

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-11-15 18:44:39+0000\n"
"PO-Revision-Date: 2010-11-15 18:44:39+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:13+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:13+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -620,6 +620,7 @@ msgstr ""
#. module: account
#: constraint:account.account:0
#: constraint:account.tax.code:0
msgid "Error ! You can not create recursive accounts."
msgstr ""
@ -838,11 +839,6 @@ msgstr ""
msgid "Consolidation"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_liability
msgid "Liability"
msgstr ""
#. module: account
#: view:account.analytic.line:0
#: view:account.entries.report:0
@ -939,6 +935,11 @@ msgstr ""
msgid "Landscape Mode"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_liability
msgid "Bilanzkonten - Passiva - Kapitalkonten"
msgstr ""
#. module: account
#: view:board.board:0
msgid "Customer Invoices to Approve"
@ -1336,9 +1337,14 @@ msgid "Anglo-Saxon Accounting"
msgstr ""
#. module: account
#: view:account.automatic.reconcile:0
#: view:account.move.line.reconcile.writeoff:0
msgid "Write-Off Move"
#: selection:account.account,type:0
#: selection:account.account.template,type:0
#: selection:account.bank.statement,state:0
#: selection:account.entries.report,type:0
#: view:account.fiscalyear:0
#: selection:account.fiscalyear,state:0
#: selection:account.period,state:0
msgid "Closed"
msgstr ""
#. module: account
@ -1351,6 +1357,11 @@ msgstr ""
msgid "Template for Fiscal Position"
msgstr ""
#. module: account
#: model:account.tax.code,name:account.account_tax_code_0
msgid "Tax Code Test"
msgstr ""
#. module: account
#: field:account.automatic.reconcile,reconciled:0
msgid "Reconciled transactions"
@ -1459,7 +1470,6 @@ msgid "The Object name must start with x_ and not contain any special character
msgstr ""
#. module: account
#: field:account.bank.statement,user_id:0
#: view:account.invoice:0
msgid "Responsible"
msgstr ""
@ -1847,6 +1857,11 @@ msgstr ""
msgid "Validations"
msgstr ""
#. module: account
#: model:account.journal,name:account.close_journal
msgid "End of Year"
msgstr ""
#. module: account
#: view:account.entries.report:0
msgid "This F.Year"
@ -2181,6 +2196,7 @@ msgid "The fiscal position will determine taxes and the accounts used for the pa
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_tax
#: report:account.invoice:0
#: field:account.invoice,amount_tax:0
#: field:account.move.line,account_tax_id:0
@ -2471,6 +2487,11 @@ msgstr ""
msgid "Base Code Amount"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_view
msgid "Ansicht"
msgstr ""
#. module: account
#: field:wizard.multi.charts.accounts,sale_tax:0
msgid "Default Sale Tax"
@ -3178,6 +3199,11 @@ msgstr ""
msgid "Account Payable"
msgstr ""
#. module: account
#: constraint:account.move:0
msgid "You cannot create entries on different periods/journals in the same move"
msgstr ""
#. module: account
#: model:process.node,name:account.process_node_supplierpaymentorder0
msgid "Payment Order"
@ -3311,6 +3337,11 @@ msgstr ""
msgid "Balance :"
msgstr ""
#. module: account
#: help:account.fiscalyear.close,journal_id:0
msgid "The best practice here is to use a journal dedicated to contain the opening entries of all fiscal years. Note that you should define it with default debit/credit accounts, of type 'situation' and with a centralized counterpart."
msgstr ""
#. module: account
#: view:account.installer:0
#: view:account.installer.modules:0
@ -4352,6 +4383,12 @@ msgstr ""
msgid "Amount"
msgstr ""
#. module: account
#: code:addons/account/wizard/account_fiscalyear_close.py:0
#, python-format
msgid "End of Fiscal Year Entry"
msgstr ""
#. module: account
#: model:process.transition,name:account.process_transition_customerinvoice0
#: model:process.transition,name:account.process_transition_paymentorderreconcilation0
@ -4790,11 +4827,6 @@ msgstr ""
msgid "account.analytic.line.extended"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_income
msgid "Income"
msgstr ""
#. module: account
#: selection:account.bank.statement.line,type:0
#: view:account.invoice:0
@ -4803,6 +4835,11 @@ msgstr ""
msgid "Supplier"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_asset
msgid "Bilanzkonten - Aktiva - Vermögenskonten"
msgstr ""
#. module: account
#: selection:account.entries.report,month:0
#: selection:account.invoice.report,month:0
@ -5999,6 +6036,11 @@ msgstr ""
msgid "Parent Account Template"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_income
msgid "Erfolgskonten - Erlöse"
msgstr ""
#. module: account
#: view:account.bank.statement:0
#: field:account.bank.statement.line,statement_id:0
@ -6268,6 +6310,7 @@ msgstr ""
#. module: account
#: view:account.analytic.line:0
#: field:account.bank.statement,user_id:0
#: view:account.journal:0
#: field:account.journal,user_id:0
#: view:analytic.entries.report:0
@ -6456,11 +6499,6 @@ msgstr ""
msgid " number of days: 14"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_asset
msgid "Asset"
msgstr ""
#. module: account
#: field:account.partner.reconcile.process,progress:0
msgid "Progress"
@ -6550,6 +6588,11 @@ msgstr ""
msgid "Amount (in words) :"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_other
msgid "Jahresabschlusskonten u. Statistik"
msgstr ""
#. module: account
#: field:account.bank.statement.line,partner_id:0
#: view:account.entries.report:0
@ -6782,6 +6825,11 @@ msgstr ""
msgid "Accounting and Financial Management"
msgstr ""
#. module: account
#: model:process.node,name:account.process_node_manually0
msgid "Manually"
msgstr ""
#. module: account
#: field:account.automatic.reconcile,period_id:0
#: view:account.bank.statement:0
@ -7054,6 +7102,11 @@ msgstr ""
msgid "Suppliers"
msgstr ""
#. module: account
#: constraint:account.move:0
msgid "You cannot create more than one move per period on centralized journal"
msgstr ""
#. module: account
#: view:account.journal:0
msgid "Accounts Type Allowed (empty for no control)"
@ -7162,11 +7215,6 @@ msgstr ""
msgid "Unique number of the invoice, computed automatically when the invoice is created."
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_expense
msgid "Expense"
msgstr ""
#. module: account
#: code:addons/account/account_move_line.py:0
#, python-format
@ -8316,11 +8364,6 @@ msgstr ""
msgid "If the active field is set to true, it will allow you to hide the account without removing it."
msgstr ""
#. module: account
#: help:account.fiscalyear.close,journal_id:0
msgid "The best practice here is to use a journal dedicated to contain the opening entries of all fiscal years. Note that you should define it with default debit/credit accounts and with a centralized counterpart."
msgstr ""
#. module: account
#: field:account.account,company_id:0
#: field:account.analytic.journal,company_id:0
@ -8442,14 +8485,9 @@ msgid "On Account of :"
msgstr ""
#. module: account
#: selection:account.account,type:0
#: selection:account.account.template,type:0
#: selection:account.bank.statement,state:0
#: selection:account.entries.report,type:0
#: view:account.fiscalyear:0
#: selection:account.fiscalyear,state:0
#: selection:account.period,state:0
msgid "Closed"
#: view:account.automatic.reconcile:0
#: view:account.move.line.reconcile.writeoff:0
msgid "Write-Off Move"
msgstr ""
#. module: account
@ -8565,8 +8603,8 @@ msgid "Account Tax Code Template"
msgstr ""
#. module: account
#: model:process.node,name:account.process_node_manually0
msgid "Manually"
#: model:account.account.type,name:account.account_type_expense
msgid "Erfolgskonten - Aufwendungen"
msgstr ""
#. module: account

File diff suppressed because it is too large Load Diff

View File

@ -6,15 +6,15 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-11-15 18:44+0000\n"
"PO-Revision-Date: 2010-11-16 14:25+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 15:57+0000\n"
"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) "
"<maxime.chambreuil@savoirfairelinux.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-11-17 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -85,6 +85,12 @@ msgstr ""
msgid "Some entries are already reconciled !"
msgstr "Des écritures semblent déjà réconciliées !"
#. module: account
#: code:addons/account/wizard/account_fiscalyear_close.py:0
#, python-format
msgid "End of Fiscal Year Entry"
msgstr "Ecriture de fin d'exercice fiscal"
#. module: account
#: field:account.aged.trial.balance,fiscalyear_id:0
#: field:account.balance.report,fiscalyear_id:0
@ -766,6 +772,7 @@ msgstr ""
#. module: account
#: constraint:account.account:0
#: constraint:account.tax.code:0
msgid "Error ! You can not create recursive accounts."
msgstr "Erreur ! Vous ne pouvez pas créer des compte récursifs"
@ -994,11 +1001,6 @@ msgstr "Montant Total"
msgid "Consolidation"
msgstr "Consolidation"
#. module: account
#: model:account.account.type,name:account.account_type_liability
msgid "Liability"
msgstr "Passif"
#. module: account
#: view:account.analytic.line:0
#: view:account.entries.report:0
@ -1098,6 +1100,11 @@ msgstr "Semaine de l'année"
msgid "Landscape Mode"
msgstr "Mode paysage"
#. module: account
#: model:account.account.type,name:account.account_type_liability
msgid "Bilanzkonten - Passiva - Kapitalkonten"
msgstr ""
#. module: account
#: view:board.board:0
msgid "Customer Invoices to Approve"
@ -1504,10 +1511,15 @@ msgid "Anglo-Saxon Accounting"
msgstr ""
#. module: account
#: view:account.automatic.reconcile:0
#: view:account.move.line.reconcile.writeoff:0
msgid "Write-Off Move"
msgstr "Traitement des écarts de règlement"
#: selection:account.account,type:0
#: selection:account.account.template,type:0
#: selection:account.bank.statement,state:0
#: selection:account.entries.report,type:0
#: view:account.fiscalyear:0
#: selection:account.fiscalyear,state:0
#: selection:account.period,state:0
msgid "Closed"
msgstr "Clôturé"
#. module: account
#: model:ir.ui.menu,name:account.menu_finance_recurrent_entries
@ -1519,6 +1531,11 @@ msgstr ""
msgid "Template for Fiscal Position"
msgstr "Modèle de régime fiscal"
#. module: account
#: model:account.tax.code,name:account.account_tax_code_0
msgid "Tax Code Test"
msgstr ""
#. module: account
#: field:account.automatic.reconcile,reconciled:0
msgid "Reconciled transactions"
@ -1630,7 +1647,6 @@ msgstr ""
"caractères spéciaux"
#. module: account
#: field:account.bank.statement,user_id:0
#: view:account.invoice:0
msgid "Responsible"
msgstr ""
@ -2039,6 +2055,11 @@ msgstr ""
msgid "Validations"
msgstr ""
#. module: account
#: model:account.journal,name:account.close_journal
msgid "End of Year"
msgstr ""
#. module: account
#: view:account.entries.report:0
msgid "This F.Year"
@ -2365,6 +2386,7 @@ msgid ""
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_tax
#: report:account.invoice:0
#: field:account.invoice,amount_tax:0
#: field:account.move.line,account_tax_id:0
@ -2668,6 +2690,11 @@ msgstr ""
msgid "Base Code Amount"
msgstr "Montant Hors Taxe"
#. module: account
#: model:account.account.type,name:account.account_type_view
msgid "Ansicht"
msgstr ""
#. module: account
#: field:wizard.multi.charts.accounts,sale_tax:0
msgid "Default Sale Tax"
@ -3411,6 +3438,12 @@ msgstr ""
msgid "Account Payable"
msgstr "Compte de fournisseur"
#. module: account
#: constraint:account.move:0
msgid ""
"You cannot create entries on different periods/journals in the same move"
msgstr ""
#. module: account
#: model:process.node,name:account.process_node_supplierpaymentorder0
msgid "Payment Order"
@ -3553,6 +3586,15 @@ msgstr ""
msgid "Balance :"
msgstr "Balance :"
#. module: account
#: help:account.fiscalyear.close,journal_id:0
msgid ""
"The best practice here is to use a journal dedicated to contain the opening "
"entries of all fiscal years. Note that you should define it with default "
"debit/credit accounts, of type 'situation' and with a centralized "
"counterpart."
msgstr ""
#. module: account
#: view:account.installer:0
#: view:account.installer.modules:0
@ -5115,11 +5157,6 @@ msgstr "Montant à payer"
msgid "account.analytic.line.extended"
msgstr "account.analytic.line.extended"
#. module: account
#: model:account.account.type,name:account.account_type_income
msgid "Income"
msgstr "Produits"
#. module: account
#: selection:account.bank.statement.line,type:0
#: view:account.invoice:0
@ -5128,6 +5165,11 @@ msgstr "Produits"
msgid "Supplier"
msgstr "Fournisseur"
#. module: account
#: model:account.account.type,name:account.account_type_asset
msgid "Bilanzkonten - Aktiva - Vermögenskonten"
msgstr ""
#. module: account
#: selection:account.entries.report,month:0
#: selection:account.invoice.report,month:0
@ -6393,6 +6435,11 @@ msgstr ""
msgid "Parent Account Template"
msgstr "Modèle de compte parent"
#. module: account
#: model:account.account.type,name:account.account_type_income
msgid "Erfolgskonten - Erlöse"
msgstr ""
#. module: account
#: view:account.bank.statement:0
#: field:account.bank.statement.line,statement_id:0
@ -6697,6 +6744,7 @@ msgstr "Information optionnelle"
#. module: account
#: view:account.analytic.line:0
#: field:account.bank.statement,user_id:0
#: view:account.journal:0
#: field:account.journal,user_id:0
#: view:analytic.entries.report:0
@ -6891,11 +6939,6 @@ msgstr ""
msgid " number of days: 14"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_asset
msgid "Asset"
msgstr "Actifs"
#. module: account
#: field:account.partner.reconcile.process,progress:0
msgid "Progress"
@ -6998,6 +7041,11 @@ msgstr "Calcul de la souscription"
msgid "Amount (in words) :"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_other
msgid "Jahresabschlusskonten u. Statistik"
msgstr ""
#. module: account
#: field:account.bank.statement.line,partner_id:0
#: view:account.entries.report:0
@ -7249,6 +7297,11 @@ msgstr ""
msgid "Accounting and Financial Management"
msgstr ""
#. module: account
#: model:process.node,name:account.process_node_manually0
msgid "Manually"
msgstr "Manuellement"
#. module: account
#: field:account.automatic.reconcile,period_id:0
#: view:account.bank.statement:0
@ -7537,6 +7590,12 @@ msgstr "Date d'échéance"
msgid "Suppliers"
msgstr ""
#. module: account
#: constraint:account.move:0
msgid ""
"You cannot create more than one move per period on centralized journal"
msgstr ""
#. module: account
#: view:account.journal:0
msgid "Accounts Type Allowed (empty for no control)"
@ -7655,11 +7714,6 @@ msgstr ""
"Numéro unique de la facture, calculé automatiquement lorsque la facture est "
"créée."
#. module: account
#: model:account.account.type,name:account.account_type_expense
msgid "Expense"
msgstr "Charges"
#. module: account
#: code:addons/account/account_move_line.py:0
#, python-format
@ -8887,14 +8941,6 @@ msgid ""
"without removing it."
msgstr ""
#. module: account
#: help:account.fiscalyear.close,journal_id:0
msgid ""
"The best practice here is to use a journal dedicated to contain the opening "
"entries of all fiscal years. Note that you should define it with default "
"debit/credit accounts and with a centralized counterpart."
msgstr ""
#. module: account
#: field:account.account,company_id:0
#: field:account.analytic.journal,company_id:0
@ -9020,15 +9066,10 @@ msgid "On Account of :"
msgstr ""
#. module: account
#: selection:account.account,type:0
#: selection:account.account.template,type:0
#: selection:account.bank.statement,state:0
#: selection:account.entries.report,type:0
#: view:account.fiscalyear:0
#: selection:account.fiscalyear,state:0
#: selection:account.period,state:0
msgid "Closed"
msgstr "Clôturé"
#: view:account.automatic.reconcile:0
#: view:account.move.line.reconcile.writeoff:0
msgid "Write-Off Move"
msgstr "Traitement des écarts de règlement"
#. module: account
#: model:process.node,note:account.process_node_paidinvoice0
@ -9151,9 +9192,9 @@ msgid "Account Tax Code Template"
msgstr "Modèle de code de taxe comptable"
#. module: account
#: model:process.node,name:account.process_node_manually0
msgid "Manually"
msgstr "Manuellement"
#: model:account.account.type,name:account.account_type_expense
msgid "Erfolgskonten - Aufwendungen"
msgstr ""
#. module: account
#: selection:account.entries.report,month:0
@ -9512,6 +9553,9 @@ msgstr ""
#~ msgid "Confirm statement from draft"
#~ msgstr "Confirmer l'état de brouillon"
#~ msgid "Asset"
#~ msgstr "Actifs"
#~ msgid "Select Message"
#~ msgstr "Sélectionnez le Message"
@ -9699,6 +9743,9 @@ msgstr ""
#~ msgid "Close states"
#~ msgstr "Clôturer l'état"
#~ msgid "Income"
#~ msgstr "Produits"
#~ msgid "Print General Journal"
#~ msgstr "Imprimer le journal général"
@ -9783,6 +9830,9 @@ msgstr ""
#~ msgid "Analytic Journal Report"
#~ msgstr "Rapport journal analytique"
#~ msgid "Expense"
#~ msgstr "Charges"
#~ msgid "Options"
#~ msgstr "Réglages"
@ -9819,6 +9869,9 @@ msgstr ""
#~ msgid "All periods if empty"
#~ msgstr "Toutes les périodes si vide"
#~ msgid "Liability"
#~ msgstr "Passif"
#~ msgid "Automatic reconciliation"
#~ msgstr "Lettrage automatique"

9410
addons/account/i18n/hi.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-11-15 18:44+0000\n"
"PO-Revision-Date: 2010-11-16 17:12+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 15:56+0000\n"
"Last-Translator: The Loeki <the.loeki@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: 2010-11-17 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -30,7 +30,7 @@ msgstr ""
#. module: account
#: view:account.journal:0
msgid "Other Configuration"
msgstr ""
msgstr "Andere configuratie"
#. module: account
#: code:addons/account/wizard/account_open_closed_fiscalyear.py:0
@ -46,11 +46,13 @@ msgid ""
"You cannot remove/deactivate an account which is set as a property to any "
"Partner."
msgstr ""
"Een rekening gekoppeld aan een partner als eigenschap kan niet verwijderd of "
"gedeactiveerd worden."
#. module: account
#: view:account.move.reconcile:0
msgid "Journal Entry Reconcile"
msgstr ""
msgstr "Journaalpost afpunten"
#. module: account
#: field:account.installer.modules,account_voucher:0
@ -63,7 +65,7 @@ msgstr ""
#: view:account.move:0
#: view:account.move.line:0
msgid "Account Statistics"
msgstr "Grootboekstatistiek"
msgstr "Rekeningstatistieken"
#. module: account
#: field:account.invoice,residual:0
@ -75,7 +77,7 @@ msgstr "Resterend"
#: code:addons/account/invoice.py:0
#, python-format
msgid "Please define sequence on invoice journal"
msgstr ""
msgstr "Gelieve een volgnummering te definieren in het factuurjournaal"
#. module: account
#: constraint:account.period:0
@ -85,12 +87,12 @@ msgstr "Fout ! De duur van de periode(s) is/zijn ongeldig. "
#. module: account
#: field:account.analytic.line,currency_id:0
msgid "Account currency"
msgstr ""
msgstr "Rekening valuta"
#. module: account
#: view:account.tax:0
msgid "Children Definition"
msgstr ""
msgstr "Definitie kinderen"
#. module: account
#: model:ir.model,name:account.model_report_aged_receivable
@ -105,7 +107,7 @@ msgstr "Afgeletterde boekingen meenemen"
#. module: account
#: model:process.transition,name:account.process_transition_invoiceimport0
msgid "Import from invoice or payment"
msgstr ""
msgstr "Importeer van factuur of betaling"
#. module: account
#: model:ir.model,name:account.model_wizard_multi_charts_accounts
@ -671,6 +673,7 @@ msgstr ""
#. module: account
#: constraint:account.account:0
#: constraint:account.tax.code:0
msgid "Error ! You can not create recursive accounts."
msgstr "Fout ! U kunt geen recursieve rekeningen aanmaken."
@ -901,11 +904,6 @@ msgstr "Totaalbedrag"
msgid "Consolidation"
msgstr "Consolidatie"
#. module: account
#: model:account.account.type,name:account.account_type_liability
msgid "Liability"
msgstr "Verantwoordelijkheid"
#. module: account
#: view:account.analytic.line:0
#: view:account.entries.report:0
@ -1005,6 +1003,11 @@ msgstr "Weeknummer"
msgid "Landscape Mode"
msgstr "Landschap modus"
#. module: account
#: model:account.account.type,name:account.account_type_liability
msgid "Bilanzkonten - Passiva - Kapitalkonten"
msgstr ""
#. module: account
#: view:board.board:0
msgid "Customer Invoices to Approve"
@ -1411,10 +1414,15 @@ msgid "Anglo-Saxon Accounting"
msgstr ""
#. module: account
#: view:account.automatic.reconcile:0
#: view:account.move.line.reconcile.writeoff:0
msgid "Write-Off Move"
msgstr "Afboekingen"
#: selection:account.account,type:0
#: selection:account.account.template,type:0
#: selection:account.bank.statement,state:0
#: selection:account.entries.report,type:0
#: view:account.fiscalyear:0
#: selection:account.fiscalyear,state:0
#: selection:account.period,state:0
msgid "Closed"
msgstr "Afgesloten"
#. module: account
#: model:ir.ui.menu,name:account.menu_finance_recurrent_entries
@ -1426,6 +1434,11 @@ msgstr ""
msgid "Template for Fiscal Position"
msgstr "Sjabloon voor fiscale situatie"
#. module: account
#: model:account.tax.code,name:account.account_tax_code_0
msgid "Tax Code Test"
msgstr ""
#. module: account
#: field:account.automatic.reconcile,reconciled:0
msgid "Reconciled transactions"
@ -1536,7 +1549,6 @@ msgstr ""
"De objectnaam moet beginnen met x_ en mag geen speciale tekens bevatten !"
#. module: account
#: field:account.bank.statement,user_id:0
#: view:account.invoice:0
msgid "Responsible"
msgstr ""
@ -1946,6 +1958,11 @@ msgstr ""
msgid "Validations"
msgstr ""
#. module: account
#: model:account.journal,name:account.close_journal
msgid "End of Year"
msgstr ""
#. module: account
#: view:account.entries.report:0
msgid "This F.Year"
@ -2311,6 +2328,7 @@ msgid ""
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_tax
#: report:account.invoice:0
#: field:account.invoice,amount_tax:0
#: field:account.move.line,account_tax_id:0
@ -2614,6 +2632,11 @@ msgstr ""
msgid "Base Code Amount"
msgstr "Basiscode bedrag"
#. module: account
#: model:account.account.type,name:account.account_type_view
msgid "Ansicht"
msgstr ""
#. module: account
#: field:wizard.multi.charts.accounts,sale_tax:0
msgid "Default Sale Tax"
@ -3375,6 +3398,12 @@ msgstr ""
msgid "Account Payable"
msgstr "Crediteuren"
#. module: account
#: constraint:account.move:0
msgid ""
"You cannot create entries on different periods/journals in the same move"
msgstr ""
#. module: account
#: model:process.node,name:account.process_node_supplierpaymentorder0
msgid "Payment Order"
@ -3516,6 +3545,15 @@ msgstr ""
msgid "Balance :"
msgstr "Saldo :"
#. module: account
#: help:account.fiscalyear.close,journal_id:0
msgid ""
"The best practice here is to use a journal dedicated to contain the opening "
"entries of all fiscal years. Note that you should define it with default "
"debit/credit accounts, of type 'situation' and with a centralized "
"counterpart."
msgstr ""
#. module: account
#: view:account.installer:0
#: view:account.installer.modules:0
@ -4600,6 +4638,12 @@ msgstr "Verkoop"
msgid "Amount"
msgstr "Bedrag"
#. module: account
#: code:addons/account/wizard/account_fiscalyear_close.py:0
#, python-format
msgid "End of Fiscal Year Entry"
msgstr "Einde van boekjaar"
#. module: account
#: model:process.transition,name:account.process_transition_customerinvoice0
#: model:process.transition,name:account.process_transition_paymentorderreconcilation0
@ -5071,11 +5115,6 @@ msgstr "Totaal te betalen"
msgid "account.analytic.line.extended"
msgstr "account.analytic.line.extended"
#. module: account
#: model:account.account.type,name:account.account_type_income
msgid "Income"
msgstr "Inkomen"
#. module: account
#: selection:account.bank.statement.line,type:0
#: view:account.invoice:0
@ -5084,6 +5123,11 @@ msgstr "Inkomen"
msgid "Supplier"
msgstr "Leverancier"
#. module: account
#: model:account.account.type,name:account.account_type_asset
msgid "Bilanzkonten - Aktiva - Vermögenskonten"
msgstr ""
#. module: account
#: selection:account.entries.report,month:0
#: selection:account.invoice.report,month:0
@ -6372,6 +6416,11 @@ msgstr ""
msgid "Parent Account Template"
msgstr "Bovenliggerde grootboekkaart template"
#. module: account
#: model:account.account.type,name:account.account_type_income
msgid "Erfolgskonten - Erlöse"
msgstr ""
#. module: account
#: view:account.bank.statement:0
#: field:account.bank.statement.line,statement_id:0
@ -6676,6 +6725,7 @@ msgstr "Optionele informatie"
#. module: account
#: view:account.analytic.line:0
#: field:account.bank.statement,user_id:0
#: view:account.journal:0
#: field:account.journal,user_id:0
#: view:analytic.entries.report:0
@ -6870,11 +6920,6 @@ msgstr ""
msgid " number of days: 14"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_asset
msgid "Asset"
msgstr "Activa"
#. module: account
#: field:account.partner.reconcile.process,progress:0
msgid "Progress"
@ -6977,6 +7022,11 @@ msgstr "Berekening verdeling"
msgid "Amount (in words) :"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_other
msgid "Jahresabschlusskonten u. Statistik"
msgstr ""
#. module: account
#: field:account.bank.statement.line,partner_id:0
#: view:account.entries.report:0
@ -7227,6 +7277,11 @@ msgstr ""
msgid "Accounting and Financial Management"
msgstr ""
#. module: account
#: model:process.node,name:account.process_node_manually0
msgid "Manually"
msgstr "Handmatig"
#. module: account
#: field:account.automatic.reconcile,period_id:0
#: view:account.bank.statement:0
@ -7514,6 +7569,12 @@ msgstr "Vervaldatum"
msgid "Suppliers"
msgstr ""
#. module: account
#: constraint:account.move:0
msgid ""
"You cannot create more than one move per period on centralized journal"
msgstr ""
#. module: account
#: view:account.journal:0
msgid "Accounts Type Allowed (empty for no control)"
@ -7632,11 +7693,6 @@ msgstr ""
"Uniek nummer van de factuur, wordt automatisch berekend bij het aanmaken van "
"de factuur."
#. module: account
#: model:account.account.type,name:account.account_type_expense
msgid "Expense"
msgstr "Uitgave"
#. module: account
#: code:addons/account/account_move_line.py:0
#, python-format
@ -8874,14 +8930,6 @@ msgid ""
"without removing it."
msgstr ""
#. module: account
#: help:account.fiscalyear.close,journal_id:0
msgid ""
"The best practice here is to use a journal dedicated to contain the opening "
"entries of all fiscal years. Note that you should define it with default "
"debit/credit accounts and with a centralized counterpart."
msgstr ""
#. module: account
#: field:account.account,company_id:0
#: field:account.analytic.journal,company_id:0
@ -9007,15 +9055,10 @@ msgid "On Account of :"
msgstr ""
#. module: account
#: selection:account.account,type:0
#: selection:account.account.template,type:0
#: selection:account.bank.statement,state:0
#: selection:account.entries.report,type:0
#: view:account.fiscalyear:0
#: selection:account.fiscalyear,state:0
#: selection:account.period,state:0
msgid "Closed"
msgstr "Afgesloten"
#: view:account.automatic.reconcile:0
#: view:account.move.line.reconcile.writeoff:0
msgid "Write-Off Move"
msgstr "Afboekingen"
#. module: account
#: model:process.node,note:account.process_node_paidinvoice0
@ -9138,9 +9181,9 @@ msgid "Account Tax Code Template"
msgstr "Belastingrekening code sjabloon"
#. module: account
#: model:process.node,name:account.process_node_manually0
msgid "Manually"
msgstr "Handmatig"
#: model:account.account.type,name:account.account_type_expense
msgid "Erfolgskonten - Aufwendungen"
msgstr ""
#. module: account
#: selection:account.entries.report,month:0
@ -9487,6 +9530,9 @@ msgstr "U kunt geen rekening met boekingen verwijderen! "
#~ msgid "Confirm statement from draft"
#~ msgstr "Bevestig afschrift vanuit concept"
#~ msgid "Asset"
#~ msgstr "Activa"
#~ msgid "Select Message"
#~ msgstr "Selecteer bericht"
@ -9710,6 +9756,9 @@ msgstr "U kunt geen rekening met boekingen verwijderen! "
#~ msgid "Close states"
#~ msgstr "Afsluit statuscodes"
#~ msgid "Income"
#~ msgstr "Inkomen"
#~ msgid "Invoice Movement"
#~ msgstr "Invoice Movement"
@ -9801,6 +9850,9 @@ msgstr "U kunt geen rekening met boekingen verwijderen! "
#~ msgid "Analytic Journal Report"
#~ msgstr "Analytisch dagboek rapport"
#~ msgid "Expense"
#~ msgstr "Uitgave"
#~ msgid "Options"
#~ msgstr "Optie's"
@ -9838,6 +9890,9 @@ msgstr "U kunt geen rekening met boekingen verwijderen! "
#~ msgid "All periods if empty"
#~ msgstr "Alle perioden indien leeg"
#~ msgid "Liability"
#~ msgstr "Verantwoordelijkheid"
#~ msgid "Statement Entries"
#~ msgstr "Afschrift mutaties"
@ -10106,10 +10161,6 @@ msgstr "U kunt geen rekening met boekingen verwijderen! "
#~ msgid "Invoice Ref"
#~ msgstr "Factuur Ref"
#, python-format
#~ msgid "End of Fiscal Year Entry"
#~ msgstr "Einde van boekjaar"
#~ msgid " Include Reconciled Entries"
#~ msgstr " Afgeletterde boekingen meenemen"

View File

@ -6,25 +6,25 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-11-15 18:44+0000\n"
"PO-Revision-Date: 2010-11-16 08:28+0000\n"
"Last-Translator: Adam Czabara <kolofaza@o2.pl>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 13:37+0000\n"
"Last-Translator: Grzegorz Grzelak (Cirrus.pl) <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: 2010-11-17 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
msgid "System payment"
msgstr ""
msgstr "Płatność systemowa"
#. module: account
#: view:account.journal:0
msgid "Other Configuration"
msgstr ""
msgstr "Inna konfiguracja"
#. module: account
#: code:addons/account/wizard/account_open_closed_fiscalyear.py:0
@ -44,7 +44,7 @@ msgstr ""
#. module: account
#: view:account.move.reconcile:0
msgid "Journal Entry Reconcile"
msgstr ""
msgstr "Uzgodnienie zapisu dziennika"
#. module: account
#: field:account.installer.modules,account_voucher:0
@ -79,12 +79,12 @@ msgstr "Błąd! Długość okresu jest niedozwolona. "
#. module: account
#: field:account.analytic.line,currency_id:0
msgid "Account currency"
msgstr ""
msgstr "Waluta konta"
#. module: account
#: view:account.tax:0
msgid "Children Definition"
msgstr ""
msgstr "Definicja podrzędnych"
#. module: account
#: model:ir.model,name:account.model_report_aged_receivable
@ -99,7 +99,7 @@ msgstr "Włączając uzgodnione zapisy"
#. module: account
#: model:process.transition,name:account.process_transition_invoiceimport0
msgid "Import from invoice or payment"
msgstr ""
msgstr "Importuj z faktur lub płatności"
#. module: account
#: model:ir.model,name:account.model_wizard_multi_charts_accounts
@ -117,6 +117,8 @@ msgid ""
"If you unreconciliate transactions, you must also verify all the actions "
"that are linked to those transactions because they will not be disabled"
msgstr ""
"Jeśli skasujesz uzgodnienie transakcji, to musisz również sprawdzić akcje "
"związane z tymi transakcjami, ponieważ one nie będą usunięte."
#. module: account
#: report:account.tax.code.entries:0
@ -666,6 +668,7 @@ msgstr ""
#. module: account
#: constraint:account.account:0
#: constraint:account.tax.code:0
msgid "Error ! You can not create recursive accounts."
msgstr "Błąd ! Nie możesz tworzyć kont rekurencyjnych."
@ -896,11 +899,6 @@ msgstr "Suma kwot"
msgid "Consolidation"
msgstr "Konsolidacja"
#. module: account
#: model:account.account.type,name:account.account_type_liability
msgid "Liability"
msgstr "Pasywa"
#. module: account
#: view:account.analytic.line:0
#: view:account.entries.report:0
@ -1000,6 +998,11 @@ msgstr "Tydzień roku"
msgid "Landscape Mode"
msgstr "Poziomo"
#. module: account
#: model:account.account.type,name:account.account_type_liability
msgid "Bilanzkonten - Passiva - Kapitalkonten"
msgstr ""
#. module: account
#: view:board.board:0
msgid "Customer Invoices to Approve"
@ -1405,10 +1408,15 @@ msgid "Anglo-Saxon Accounting"
msgstr ""
#. module: account
#: view:account.automatic.reconcile:0
#: view:account.move.line.reconcile.writeoff:0
msgid "Write-Off Move"
msgstr "Zapis odpisu"
#: selection:account.account,type:0
#: selection:account.account.template,type:0
#: selection:account.bank.statement,state:0
#: selection:account.entries.report,type:0
#: view:account.fiscalyear:0
#: selection:account.fiscalyear,state:0
#: selection:account.period,state:0
msgid "Closed"
msgstr "Zamknięte"
#. module: account
#: model:ir.ui.menu,name:account.menu_finance_recurrent_entries
@ -1420,6 +1428,11 @@ msgstr ""
msgid "Template for Fiscal Position"
msgstr "Szablon dla obszaru podatkowego"
#. module: account
#: model:account.tax.code,name:account.account_tax_code_0
msgid "Tax Code Test"
msgstr ""
#. module: account
#: field:account.automatic.reconcile,reconciled:0
msgid "Reconciled transactions"
@ -1531,7 +1544,6 @@ msgstr ""
"specjalnych !"
#. module: account
#: field:account.bank.statement,user_id:0
#: view:account.invoice:0
msgid "Responsible"
msgstr ""
@ -1940,6 +1952,11 @@ msgstr ""
msgid "Validations"
msgstr ""
#. module: account
#: model:account.journal,name:account.close_journal
msgid "End of Year"
msgstr ""
#. module: account
#: view:account.entries.report:0
msgid "This F.Year"
@ -2305,6 +2322,7 @@ msgid ""
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_tax
#: report:account.invoice:0
#: field:account.invoice,amount_tax:0
#: field:account.move.line,account_tax_id:0
@ -2606,6 +2624,11 @@ msgstr "Pozostaw puste, aby stosować okres z daty zatwierdzenia (faktury)."
msgid "Base Code Amount"
msgstr "Kwota do rejestru podstawy"
#. module: account
#: model:account.account.type,name:account.account_type_view
msgid "Ansicht"
msgstr ""
#. module: account
#: field:wizard.multi.charts.accounts,sale_tax:0
msgid "Default Sale Tax"
@ -3365,6 +3388,12 @@ msgstr ""
msgid "Account Payable"
msgstr "Konto zobowiązań"
#. module: account
#: constraint:account.move:0
msgid ""
"You cannot create entries on different periods/journals in the same move"
msgstr ""
#. module: account
#: model:process.node,name:account.process_node_supplierpaymentorder0
msgid "Payment Order"
@ -3507,6 +3536,15 @@ msgstr ""
msgid "Balance :"
msgstr "Saldo :"
#. module: account
#: help:account.fiscalyear.close,journal_id:0
msgid ""
"The best practice here is to use a journal dedicated to contain the opening "
"entries of all fiscal years. Note that you should define it with default "
"debit/credit accounts, of type 'situation' and with a centralized "
"counterpart."
msgstr ""
#. module: account
#: view:account.installer:0
#: view:account.installer.modules:0
@ -4595,6 +4633,12 @@ msgstr "Sprzedaż"
msgid "Amount"
msgstr "Kwota"
#. module: account
#: code:addons/account/wizard/account_fiscalyear_close.py:0
#, python-format
msgid "End of Fiscal Year Entry"
msgstr "Zapis końca roku podatkowego"
#. module: account
#: model:process.transition,name:account.process_transition_customerinvoice0
#: model:process.transition,name:account.process_transition_paymentorderreconcilation0
@ -5067,11 +5111,6 @@ msgstr "Suma zobowiązań"
msgid "account.analytic.line.extended"
msgstr "account.analytic.line.extended"
#. module: account
#: model:account.account.type,name:account.account_type_income
msgid "Income"
msgstr "Dochody"
#. module: account
#: selection:account.bank.statement.line,type:0
#: view:account.invoice:0
@ -5080,6 +5119,11 @@ msgstr "Dochody"
msgid "Supplier"
msgstr "Dostawca"
#. module: account
#: model:account.account.type,name:account.account_type_asset
msgid "Bilanzkonten - Aktiva - Vermögenskonten"
msgstr ""
#. module: account
#: selection:account.entries.report,month:0
#: selection:account.invoice.report,month:0
@ -6369,6 +6413,11 @@ msgstr ""
msgid "Parent Account Template"
msgstr "Szablon konta nadrzędnego"
#. module: account
#: model:account.account.type,name:account.account_type_income
msgid "Erfolgskonten - Erlöse"
msgstr ""
#. module: account
#: view:account.bank.statement:0
#: field:account.bank.statement.line,statement_id:0
@ -6672,6 +6721,7 @@ msgstr "Informacje dodatkowe"
#. module: account
#: view:account.analytic.line:0
#: field:account.bank.statement,user_id:0
#: view:account.journal:0
#: field:account.journal,user_id:0
#: view:analytic.entries.report:0
@ -6865,11 +6915,6 @@ msgstr ""
msgid " number of days: 14"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_asset
msgid "Asset"
msgstr "Środek trwały"
#. module: account
#: field:account.partner.reconcile.process,progress:0
msgid "Progress"
@ -6971,6 +7016,11 @@ msgstr "Oblicz subskrypcję"
msgid "Amount (in words) :"
msgstr ""
#. module: account
#: model:account.account.type,name:account.account_type_other
msgid "Jahresabschlusskonten u. Statistik"
msgstr ""
#. module: account
#: field:account.bank.statement.line,partner_id:0
#: view:account.entries.report:0
@ -7221,6 +7271,11 @@ msgstr ""
msgid "Accounting and Financial Management"
msgstr ""
#. module: account
#: model:process.node,name:account.process_node_manually0
msgid "Manually"
msgstr "Ręcznie"
#. module: account
#: field:account.automatic.reconcile,period_id:0
#: view:account.bank.statement:0
@ -7507,6 +7562,12 @@ msgstr "Data zapłaty"
msgid "Suppliers"
msgstr ""
#. module: account
#: constraint:account.move:0
msgid ""
"You cannot create more than one move per period on centralized journal"
msgstr ""
#. module: account
#: view:account.journal:0
msgid "Accounts Type Allowed (empty for no control)"
@ -7623,11 +7684,6 @@ msgid ""
"created."
msgstr "Unikalny numer faktury, nadawany automatycznie przy jej tworzeniu."
#. module: account
#: model:account.account.type,name:account.account_type_expense
msgid "Expense"
msgstr "Wydatki"
#. module: account
#: code:addons/account/account_move_line.py:0
#, python-format
@ -8863,14 +8919,6 @@ msgid ""
"without removing it."
msgstr ""
#. module: account
#: help:account.fiscalyear.close,journal_id:0
msgid ""
"The best practice here is to use a journal dedicated to contain the opening "
"entries of all fiscal years. Note that you should define it with default "
"debit/credit accounts and with a centralized counterpart."
msgstr ""
#. module: account
#: field:account.account,company_id:0
#: field:account.analytic.journal,company_id:0
@ -8996,15 +9044,10 @@ msgid "On Account of :"
msgstr ""
#. module: account
#: selection:account.account,type:0
#: selection:account.account.template,type:0
#: selection:account.bank.statement,state:0
#: selection:account.entries.report,type:0
#: view:account.fiscalyear:0
#: selection:account.fiscalyear,state:0
#: selection:account.period,state:0
msgid "Closed"
msgstr "Zamknięte"
#: view:account.automatic.reconcile:0
#: view:account.move.line.reconcile.writeoff:0
msgid "Write-Off Move"
msgstr "Zapis odpisu"
#. module: account
#: model:process.node,note:account.process_node_paidinvoice0
@ -9127,9 +9170,9 @@ msgid "Account Tax Code Template"
msgstr "Szablon rejestru konta podatkowego"
#. module: account
#: model:process.node,name:account.process_node_manually0
msgid "Manually"
msgstr "Ręcznie"
#: model:account.account.type,name:account.account_type_expense
msgid "Erfolgskonten - Aufwendungen"
msgstr ""
#. module: account
#: selection:account.entries.report,month:0
@ -9628,6 +9671,9 @@ msgstr "Nie możesz usunąć konta, które zawiera zapisy!. "
#~ msgid "All periods if empty"
#~ msgstr "Jeśli puste, to wszystkie okresy"
#~ msgid "Liability"
#~ msgstr "Pasywa"
#~ msgid "Create a Fiscal Year"
#~ msgstr "Utwórz rok podatkowy"
@ -9776,10 +9822,6 @@ msgstr "Nie możesz usunąć konta, które zawiera zapisy!. "
#~ msgid "Base on"
#~ msgstr "Bazując na"
#, python-format
#~ msgid "End of Fiscal Year Entry"
#~ msgstr "Zapis końca roku podatkowego"
#~ msgid "The currency of the journal"
#~ msgstr "Waluta dziennika"
@ -10106,6 +10148,9 @@ msgstr "Nie możesz usunąć konta, które zawiera zapisy!. "
#~ msgid "Untaxed amount"
#~ msgstr "Kwota bez podatku"
#~ msgid "Expense"
#~ msgstr "Wydatki"
#~ msgid "Payment Reconcile"
#~ msgstr "Uzgodnienie płatności"
@ -10307,6 +10352,9 @@ msgstr "Nie możesz usunąć konta, które zawiera zapisy!. "
#~ msgid "From analytic accounts, Create invoice."
#~ msgstr "Z analitycznych kont, Utwórz fakturę."
#~ msgid "Income"
#~ msgstr "Dochody"
#~ msgid ""
#~ "This account will be used instead of the default one to value outgoing stock "
#~ "for the current product"
@ -10825,3 +10873,6 @@ msgstr "Nie możesz usunąć konta, które zawiera zapisy!. "
#~ msgid "Keep empty for comparision to its parent"
#~ msgstr "Pozostaw puste do porównania z nadrzędnymi."
#~ msgid "Asset"
#~ msgstr "Środek trwały"

File diff suppressed because it is too large Load Diff

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-11-15 18:44+0000\n"
"PO-Revision-Date: 2010-11-16 09:03+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 15:11+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"Language-Team: Vietnamese <vi@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: 2010-11-17 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account
@ -696,6 +696,7 @@ msgstr "To reconcile the entries company should be the same for all entries"
#. module: account
#: constraint:account.account:0
#: constraint:account.tax.code:0
msgid "Error ! You can not create recursive accounts."
msgstr "Error ! You can not create recursive accounts."
@ -929,11 +930,6 @@ msgstr "Total Amount"
msgid "Consolidation"
msgstr "Consolidation"
#. module: account
#: model:account.account.type,name:account.account_type_liability
msgid "Liability"
msgstr "Liability"
#. module: account
#: view:account.analytic.line:0
#: view:account.entries.report:0
@ -1036,6 +1032,11 @@ msgstr "Week of Year"
msgid "Landscape Mode"
msgstr "Landscape Mode"
#. module: account
#: model:account.account.type,name:account.account_type_liability
msgid "Bilanzkonten - Passiva - Kapitalkonten"
msgstr ""
#. module: account
#: view:board.board:0
msgid "Customer Invoices to Approve"
@ -1450,10 +1451,15 @@ msgid "Anglo-Saxon Accounting"
msgstr "Anglo-Saxon Accounting"
#. module: account
#: view:account.automatic.reconcile:0
#: view:account.move.line.reconcile.writeoff:0
msgid "Write-Off Move"
msgstr "Write-Off Move"
#: selection:account.account,type:0
#: selection:account.account.template,type:0
#: selection:account.bank.statement,state:0
#: selection:account.entries.report,type:0
#: view:account.fiscalyear:0
#: selection:account.fiscalyear,state:0
#: selection:account.period,state:0
msgid "Closed"
msgstr "Closed"
#. module: account
#: model:ir.ui.menu,name:account.menu_finance_recurrent_entries
@ -1465,6 +1471,11 @@ msgstr "Recurring Entries"
msgid "Template for Fiscal Position"
msgstr "Template for Fiscal Position"
#. module: account
#: model:account.tax.code,name:account.account_tax_code_0
msgid "Tax Code Test"
msgstr ""
#. module: account
#: field:account.automatic.reconcile,reconciled:0
msgid "Reconciled transactions"
@ -1575,7 +1586,6 @@ msgstr ""
"The Object name must start with x_ and not contain any special character !"
#. module: account
#: field:account.bank.statement,user_id:0
#: view:account.invoice:0
msgid "Responsible"
msgstr "Responsible"
@ -1999,6 +2009,11 @@ msgstr "January"
msgid "Validations"
msgstr "Validations"
#. module: account
#: model:account.journal,name:account.close_journal
msgid "End of Year"
msgstr ""
#. module: account
#: view:account.entries.report:0
msgid "This F.Year"
@ -2375,6 +2390,7 @@ msgstr ""
"partner."
#. module: account
#: model:account.account.type,name:account.account_type_tax
#: report:account.invoice:0
#: field:account.invoice,amount_tax:0
#: field:account.move.line,account_tax_id:0
@ -2687,6 +2703,11 @@ msgstr ""
msgid "Base Code Amount"
msgstr "Base Code Amount"
#. module: account
#: model:account.account.type,name:account.account_type_view
msgid "Ansicht"
msgstr ""
#. module: account
#: field:wizard.multi.charts.accounts,sale_tax:0
msgid "Default Sale Tax"
@ -3473,6 +3494,12 @@ msgstr "Search Analytic Lines"
msgid "Account Payable"
msgstr "Account Payable"
#. module: account
#: constraint:account.move:0
msgid ""
"You cannot create entries on different periods/journals in the same move"
msgstr ""
#. module: account
#: model:process.node,name:account.process_node_supplierpaymentorder0
msgid "Payment Order"
@ -3620,6 +3647,15 @@ msgstr "General Accounting"
msgid "Balance :"
msgstr "Balance :"
#. module: account
#: help:account.fiscalyear.close,journal_id:0
msgid ""
"The best practice here is to use a journal dedicated to contain the opening "
"entries of all fiscal years. Note that you should define it with default "
"debit/credit accounts, of type 'situation' and with a centralized "
"counterpart."
msgstr ""
#. module: account
#: view:account.installer:0
#: view:account.installer.modules:0
@ -4742,6 +4778,12 @@ msgstr "Sale"
msgid "Amount"
msgstr "Amount"
#. module: account
#: code:addons/account/wizard/account_fiscalyear_close.py:0
#, python-format
msgid "End of Fiscal Year Entry"
msgstr ""
#. module: account
#: model:process.transition,name:account.process_transition_customerinvoice0
#: model:process.transition,name:account.process_transition_paymentorderreconcilation0
@ -5227,11 +5269,6 @@ msgstr "Tổng số tiền phải trả"
msgid "account.analytic.line.extended"
msgstr "account.analytic.line.extended"
#. module: account
#: model:account.account.type,name:account.account_type_income
msgid "Income"
msgstr "Income"
#. module: account
#: selection:account.bank.statement.line,type:0
#: view:account.invoice:0
@ -5240,6 +5277,11 @@ msgstr "Income"
msgid "Supplier"
msgstr "Supplier"
#. module: account
#: model:account.account.type,name:account.account_type_asset
msgid "Bilanzkonten - Aktiva - Vermögenskonten"
msgstr ""
#. module: account
#: selection:account.entries.report,month:0
#: selection:account.invoice.report,month:0
@ -6604,6 +6646,11 @@ msgstr "Central Journals"
msgid "Parent Account Template"
msgstr "Parent Account Template"
#. module: account
#: model:account.account.type,name:account.account_type_income
msgid "Erfolgskonten - Erlöse"
msgstr ""
#. module: account
#: view:account.bank.statement:0
#: field:account.bank.statement.line,statement_id:0
@ -6948,6 +6995,7 @@ msgstr "Optional Information"
#. module: account
#: view:account.analytic.line:0
#: field:account.bank.statement,user_id:0
#: view:account.journal:0
#: field:account.journal,user_id:0
#: view:analytic.entries.report:0
@ -7144,11 +7192,6 @@ msgstr "Monthly"
msgid " number of days: 14"
msgstr " number of days: 14"
#. module: account
#: model:account.account.type,name:account.account_type_asset
msgid "Asset"
msgstr "Tài sản"
#. module: account
#: field:account.partner.reconcile.process,progress:0
msgid "Progress"
@ -7250,6 +7293,11 @@ msgstr "Subscription Compute"
msgid "Amount (in words) :"
msgstr "Amount (in words) :"
#. module: account
#: model:account.account.type,name:account.account_type_other
msgid "Jahresabschlusskonten u. Statistik"
msgstr ""
#. module: account
#: field:account.bank.statement.line,partner_id:0
#: view:account.entries.report:0
@ -7514,6 +7562,11 @@ msgstr ""
msgid "Accounting and Financial Management"
msgstr "Accounting and Financial Management"
#. module: account
#: model:process.node,name:account.process_node_manually0
msgid "Manually"
msgstr "Manually"
#. module: account
#: field:account.automatic.reconcile,period_id:0
#: view:account.bank.statement:0
@ -7812,6 +7865,12 @@ msgstr "Due Date"
msgid "Suppliers"
msgstr "Suppliers"
#. module: account
#: constraint:account.move:0
msgid ""
"You cannot create more than one move per period on centralized journal"
msgstr ""
#. module: account
#: view:account.journal:0
msgid "Accounts Type Allowed (empty for no control)"
@ -7936,11 +7995,6 @@ msgstr ""
"Unique number of the invoice, computed automatically when the invoice is "
"created."
#. module: account
#: model:account.account.type,name:account.account_type_expense
msgid "Expense"
msgstr "Chi phí"
#. module: account
#: code:addons/account/account_move_line.py:0
#, python-format
@ -9246,17 +9300,6 @@ msgstr ""
"If the active field is set to true, it will allow you to hide the account "
"without removing it."
#. module: account
#: help:account.fiscalyear.close,journal_id:0
msgid ""
"The best practice here is to use a journal dedicated to contain the opening "
"entries of all fiscal years. Note that you should define it with default "
"debit/credit accounts and with a centralized counterpart."
msgstr ""
"The best practice here is to use a journal dedicated to contain the opening "
"entries of all fiscal years. Note that you should define it with default "
"debit/credit accounts and with a centralized counterpart."
#. module: account
#: field:account.account,company_id:0
#: field:account.analytic.journal,company_id:0
@ -9386,15 +9429,10 @@ msgid "On Account of :"
msgstr "On Account of :"
#. module: account
#: selection:account.account,type:0
#: selection:account.account.template,type:0
#: selection:account.bank.statement,state:0
#: selection:account.entries.report,type:0
#: view:account.fiscalyear:0
#: selection:account.fiscalyear,state:0
#: selection:account.period,state:0
msgid "Closed"
msgstr "Closed"
#: view:account.automatic.reconcile:0
#: view:account.move.line.reconcile.writeoff:0
msgid "Write-Off Move"
msgstr "Write-Off Move"
#. module: account
#: model:process.node,note:account.process_node_paidinvoice0
@ -9519,9 +9557,9 @@ msgid "Account Tax Code Template"
msgstr "Account Tax Code Template"
#. module: account
#: model:process.node,name:account.process_node_manually0
msgid "Manually"
msgstr "Manually"
#: model:account.account.type,name:account.account_type_expense
msgid "Erfolgskonten - Aufwendungen"
msgstr ""
#. module: account
#: selection:account.entries.report,month:0
@ -9859,6 +9897,9 @@ msgstr "You must enter a period length that cannot be 0 or below !"
msgid "You cannot remove an account which has account entries!. "
msgstr "You cannot remove an account which has account entries!. "
#~ msgid "Asset"
#~ msgstr "Tài sản"
#~ msgid "Entry label"
#~ msgstr "thử nhãn hàng"
@ -10000,6 +10041,9 @@ msgstr "You cannot remove an account which has account entries!. "
#~ " 'partner_id': line.partner_id.id,\n"
#~ " 'date': context.get('date',time.strftime('%Y-%m-%d"
#~ msgid "Liability"
#~ msgstr "Liability"
#~ msgid "Select recurring to create a manualy recurring accounting entries"
#~ msgstr "Select recurring to create a manualy recurring accounting entries"
@ -10091,6 +10135,9 @@ msgstr "You cannot remove an account which has account entries!. "
#~ "impossible any new entry record. Close a fiscal year when you need to "
#~ "finalize your end of year results definitive."
#~ msgid "Income"
#~ msgstr "Income"
#~ msgid " 7 Days "
#~ msgstr " 7 Days "
@ -10133,6 +10180,9 @@ msgstr "You cannot remove an account which has account entries!. "
#~ " def create_entries(self, cr, uid, ids, context=None):\n"
#~ " account_model_obj = self.pool.get('account.model"
#~ msgid "Expense"
#~ msgstr "Chi phí"
#~ msgid ""
#~ "You have to define \\nthe bank account\n"
#~ "in the journal definition for reconciliation."
@ -10140,5 +10190,14 @@ msgstr "You cannot remove an account which has account entries!. "
#~ "You have to define \\nthe bank account\n"
#~ "in the journal definition for reconciliation."
#~ msgid ""
#~ "The best practice here is to use a journal dedicated to contain the opening "
#~ "entries of all fiscal years. Note that you should define it with default "
#~ "debit/credit accounts and with a centralized counterpart."
#~ msgstr ""
#~ "The best practice here is to use a journal dedicated to contain the opening "
#~ "entries of all fiscal years. Note that you should define it with default "
#~ "debit/credit accounts and with a centralized counterpart."
#~ msgid "account.move.line"
#~ msgstr "account.move.line"

View File

@ -188,7 +188,8 @@ class account_installer(osv.osv_memory):
'include_base_amount': tax.include_base_amount,
'description': tax.description,
'company_id': company_id.id,
'type_tax_use': tax.type_tax_use
'type_tax_use': tax.type_tax_use,
'price_include': tax.price_include
}
new_tax = obj_acc_tax.create(cr, uid, vals_tax, context=context)
#as the accounts have not been created yet, we have to wait before filling these fields

View File

@ -263,7 +263,7 @@ class account_invoice(osv.osv):
'invoice_line': fields.one2many('account.invoice.line', 'invoice_id', 'Invoice Lines', readonly=True, states={'draft':[('readonly',False)]}),
'tax_line': fields.one2many('account.invoice.tax', 'invoice_id', 'Tax Lines', readonly=True, states={'draft':[('readonly',False)]}),
'move_id': fields.many2one('account.move', 'Journal Entry', readonly=True, help="Link to the automatically generated Journal Items."),
'move_id': fields.many2one('account.move', 'Journal Entry', readonly=True, select=1, help="Link to the automatically generated Journal Items."),
'amount_untaxed': fields.function(_amount_all, method=True, digits_compute=dp.get_precision('Account'), string='Untaxed',
store={
'account.invoice': (lambda self, cr, uid, ids, c={}: ids, ['invoice_line'], 20),
@ -326,16 +326,18 @@ class account_invoice(osv.osv):
def fields_view_get(self, cr, uid, view_id=None, view_type=False, context=None, toolbar=False, submenu=False):
journal_obj = self.pool.get('account.journal')
if context.get('active_model','') in ['res.partner']:
partner = self.pool.get(context['active_model']).read(cr,uid,context['active_ids'],['supplier','customer'])[0]
if context is None:
context = {}
if context.get('active_model', '') in ['res.partner'] and context.get('active_ids', False) and context['active_ids']:
partner = self.pool.get(context['active_model']).read(cr, uid, context['active_ids'], ['supplier','customer'])[0]
if not view_type:
view_id = self.pool.get('ir.ui.view').search(cr,uid,[('name','=','account.invoice.tree')])[0]
view_id = self.pool.get('ir.ui.view').search(cr, uid, [('name', '=', 'account.invoice.tree')])[0]
view_type = 'tree'
if view_type == 'form':
if partner['supplier'] and not partner['customer']:
view_id = self.pool.get('ir.ui.view').search(cr,uid,[('name','=','account.invoice.supplier.form')])[0]
view_id = self.pool.get('ir.ui.view').search(cr,uid,[('name', '=', 'account.invoice.supplier.form')])[0]
else:
view_id = self.pool.get('ir.ui.view').search(cr,uid,[('name','=','account.invoice.form')])[0]
view_id = self.pool.get('ir.ui.view').search(cr,uid,[('name', '=', 'account.invoice.form')])[0]
res = super(account_invoice,self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar, submenu=submenu)
type = context.get('journal_type', 'sale')
for field in res['fields']:
@ -596,6 +598,7 @@ class account_invoice(osv.osv):
self.write(cr, uid, ids, {'state':'draft'})
wf_service = netsvc.LocalService("workflow")
for inv_id in ids:
wf_service.trg_delete(uid, 'account.invoice', inv_id, cr)
wf_service.trg_create(uid, 'account.invoice', inv_id, cr)
return True
@ -657,7 +660,7 @@ class account_invoice(osv.osv):
ctx = context.copy()
ait_obj = self.pool.get('account.invoice.tax')
for id in ids:
cr.execute("DELETE FROM account_invoice_tax WHERE invoice_id=%s", (id,))
cr.execute("DELETE FROM account_invoice_tax WHERE invoice_id=%s AND manual is False", (id,))
partner = self.browse(cr, uid, id, context=ctx).partner_id
if partner.lang:
ctx.update({'lang': partner.lang})
@ -1063,7 +1066,7 @@ class account_invoice(osv.osv):
'out_refund': 'OR: ',
'in_refund': 'SR: ',
}
return [(r['id'], types[r['type']]+(r['number'] or '')+' '+(r['name'] or '')) for r in self.read(cr, uid, ids, ['type', 'number', 'name'], context, load='_classic_write')]
return [(r['id'], (r['number']) or types[r['type']] + (r['name'] or '')) for r in self.read(cr, uid, ids, ['type', 'number', 'name'], context, load='_classic_write')]
def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=100):
if not args:
@ -1072,9 +1075,9 @@ class account_invoice(osv.osv):
context = {}
ids = []
if name:
ids = self.search(cr, user, [('number','=',name)]+ args, limit=limit, context=context)
ids = self.search(cr, user, [('number','=',name)] + args, limit=limit, context=context)
if not ids:
ids = self.search(cr, user, [('name',operator,name)]+ args, limit=limit, context=context)
ids = self.search(cr, user, [('name',operator,name)] + args, limit=limit, context=context)
return self.name_get(cr, user, ids, context)
def _refund_cleanup_lines(self, cr, uid, lines):

View File

@ -59,15 +59,23 @@ class aged_trial_report(report_sxw.rml_parse, common_report_header):
def _get_lines(self, form):
res = []
move_state = ['draft','posted']
if self.target_move == 'posted':
move_state = ['posted']
self.cr.execute('SELECT DISTINCT res_partner.id AS id,\
res_partner.name AS name \
FROM res_partner,account_move_line AS l, account_account\
FROM res_partner,account_move_line AS l, account_account, account_move am\
WHERE (l.account_id=account_account.id) \
AND (l.move_id=am.id) \
AND (am.state IN %s)\
AND (account_account.type IN %s)\
AND account_account.active\
AND ((reconcile_id IS NULL)\
OR (reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s )))\
OR (reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s )))\
AND (l.partner_id=res_partner.id)\
AND (l.date <= %s)\
AND ' + self.query + ' \
ORDER BY res_partner.name', (self.date_from,))
ORDER BY res_partner.name', (tuple(move_state), tuple(self.ACCOUNT_TYPE), self.date_from, self.date_from,))
partners = self.cr.dictfetchall()
## mise a 0 du total
for i in range(7):
@ -78,9 +86,6 @@ class aged_trial_report(report_sxw.rml_parse, common_report_header):
if not partner_ids:
return []
# This dictionary will store the debit-credit for all partners, using partner_id as key.
move_state = ['draft','posted']
if self.target_move == 'posted':
move_state = ['posted']
totals = {}
self.cr.execute('SELECT l.partner_id, SUM(l.debit-l.credit) \
@ -93,7 +98,8 @@ class aged_trial_report(report_sxw.rml_parse, common_report_header):
OR (l.reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s )))\
AND ' + self.query + '\
AND account_account.active\
GROUP BY l.partner_id ', (tuple(move_state), tuple(self.ACCOUNT_TYPE), tuple(partner_ids), self.date_from))
AND (l.date <= %s)\
GROUP BY l.partner_id ', (tuple(move_state), tuple(self.ACCOUNT_TYPE), tuple(partner_ids), self.date_from, self.date_from,))
t = self.cr.fetchall()
for i in t:
totals[i[0]] = i[1]
@ -112,7 +118,8 @@ class aged_trial_report(report_sxw.rml_parse, common_report_header):
OR (l.reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s )))\
AND '+ self.query + '\
AND account_account.active\
GROUP BY l.partner_id', (tuple(move_state), tuple(self.ACCOUNT_TYPE), self.date_from, tuple(partner_ids),self.date_from))
AND (l.date <= %s)\
GROUP BY l.partner_id', (tuple(move_state), tuple(self.ACCOUNT_TYPE), self.date_from, tuple(partner_ids),self.date_from, self.date_from,))
t = self.cr.fetchall()
for i in t:
future_past[i[0]] = i[1]
@ -128,7 +135,8 @@ class aged_trial_report(report_sxw.rml_parse, common_report_header):
OR (l.reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s )))\
AND '+ self.query + '\
AND account_account.active\
GROUP BY l.partner_id', (tuple(move_state), tuple(self.ACCOUNT_TYPE), self.date_from, tuple(partner_ids), self.date_from))
AND (l.date <= %s)\
GROUP BY l.partner_id', (tuple(move_state), tuple(self.ACCOUNT_TYPE), self.date_from, tuple(partner_ids), self.date_from, self.date_from,))
t = self.cr.fetchall()
for i in t:
future_past[i[0]] = i[1]
@ -148,19 +156,20 @@ class aged_trial_report(report_sxw.rml_parse, common_report_header):
else:
dates_query += ' < %s)'
args_list += (form[str(i)]['stop'],)
self.cr.execute('SELECT l.partner_id, SUM(l.debit-l.credit)\
FROM account_move_line AS l, account_account, account_move am \
WHERE (l.account_id = account_account.id) AND (l.move_id=am.id)\
AND (am.state IN %s)\
AND (account_account.type IN %s)\
AND (l.partner_id IN %s)\
AND ((l.reconcile_id IS NULL)\
OR (l.reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s )))\
AND '+ self.query + '\
AND account_account.active\
AND ' + dates_query + '\
GROUP BY l.partner_id', args_list)
args_list += (self.date_from,)
self.cr.execute('''SELECT l.partner_id, SUM(l.debit-l.credit)
FROM account_move_line AS l, account_account, account_move am
WHERE (l.account_id = account_account.id) AND (l.move_id=am.id)
AND (am.state IN %s)
AND (account_account.type IN %s)
AND (l.partner_id IN %s)
AND ((l.reconcile_id IS NULL)
OR (l.reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s )))
AND ''' + self.query + '''
AND account_account.active
AND ''' + dates_query + '''
AND (l.date <= %s)
GROUP BY l.partner_id''', args_list)
t = self.cr.fetchall()
d = {}
for i in t:
@ -201,8 +210,7 @@ class aged_trial_report(report_sxw.rml_parse, common_report_header):
self.total_account[(i+1)] = self.total_account[(i+1)] + (total and total[0] or 0.0)
values['name'] = partner['name']
if values['total']:
res.append(values)
res.append(values)
total = 0.0
totals = {}
@ -232,7 +240,8 @@ class aged_trial_report(report_sxw.rml_parse, common_report_header):
AND ((l.reconcile_id IS NULL) \
OR (l.reconcile_id IN (SELECT recon.id FROM account_move_reconcile AS recon WHERE recon.create_date > %s )))\
AND ' + self.query + '\
AND account_account.active ',(tuple(move_state), tuple(self.ACCOUNT_TYPE), self.date_from))
AND (l.date <= %s)\
AND account_account.active ',(tuple(move_state), tuple(self.ACCOUNT_TYPE), self.date_from, self.date_from,))
t = self.cr.fetchall()
for i in t:
totals['Unknown Partner'] = i[0]
@ -281,7 +290,7 @@ class aged_trial_report(report_sxw.rml_parse, common_report_header):
else:
dates_query += ' < %s)'
args_list += (form[str(i)]['stop'],)
args_list += (self.date_from,)
self.cr.execute('SELECT SUM(l.debit-l.credit)\
FROM account_move_line AS l, account_account, account_move am \
WHERE (l.account_id = account_account.id) AND (l.move_id=am.id)\
@ -293,6 +302,7 @@ class aged_trial_report(report_sxw.rml_parse, common_report_header):
AND '+ self.query + '\
AND account_account.active\
AND ' + dates_query + '\
AND (l.date <= %s)\
GROUP BY l.partner_id', args_list)
t = self.cr.fetchall()
d = {}

View File

@ -95,7 +95,7 @@
<field name="partner_id"/>
<field name="user_id" />
<field name="date" string="Invoice Date"/>
<field name="categ_id" />
<field name="categ_id" filter_domain="[('categ_id', 'child_of', self)]"/>
</group>
<newline/>
<group expand="0" string="Extended Filters..." groups="base.group_extended">

View File

@ -16,14 +16,11 @@
</field>
</record>
<record id="action_account_invoice_confirm" model="ir.actions.act_window">
<field name="name">Confirm Draft Invoices</field>
<field name="res_model">account.invoice.confirm</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="view_id" ref="account_invoice_confirm_view"/>
<field name="target">new</field>
</record>
<act_window id="action_account_invoice_confirm"
multi="True"
key2="client_action_multi" name="Confirm Draft Invoices"
res_model="account.invoice.confirm" src_model="account.invoice"
view_mode="form" target="new" view_type="form" />
<record id="account_invoice_cancel_view" model="ir.ui.view">
<field name="name">account.invoice.cancel.form</field>

View File

@ -29,5 +29,10 @@
<field name="target">new</field>
</record>
<menuitem action="action_account_open_closed_fiscalyear"
id="menu_wizard_account_open_closed_fiscalyear"
sequence="18"
parent="menu_account_end_year_treatments" />
</data>
</openerp>

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:01+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:01+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:14+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:14+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -15,6 +15,16 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_accountant
#: model:ir.module.module,shortdesc:account_accountant.module_meta_information
msgid "Accountant"

View File

@ -7,16 +7,26 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 14:28+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 08:53+0000\n"
"Last-Translator: Martin Pihl <martinpihl@gmail.com>\n"
"Language-Team: Danish <da@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: 2010-11-17 04:52+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_accountant
#: model:ir.module.module,shortdesc:account_accountant.module_meta_information
msgid "Accountant"

View File

@ -7,17 +7,26 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 09:02+0000\n"
"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
"<jesteve@zikzakmedia.com>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 20:26+0000\n"
"Last-Translator: Carlos @ smile.fr <Unknown>\n"
"Language-Team: Spanish <es@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: 2010-11-17 04:52+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr "¡El ID del certificado del módulo debe ser único!"
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr "¡El nombre del módulo debe ser único!"
#. module: account_accountant
#: model:ir.module.module,shortdesc:account_accountant.module_meta_information
msgid "Accountant"

View File

@ -0,0 +1,33 @@
# Polish translation for openobject-addons
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 13:33+0000\n"
"Last-Translator: Grzegorz Grzelak (Cirrus.pl) <Unknown>\n"
"Language-Team: Polish <pl@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: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_accountant
#: model:ir.module.module,shortdesc:account_accountant.module_meta_information
msgid "Accountant"
msgstr "Ksiągowy"

View File

@ -0,0 +1,33 @@
# Brazilian Portuguese translation for openobject-addons
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 03:22+0000\n"
"Last-Translator: Alexsandro Haag <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: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_accountant
#: model:ir.module.module,shortdesc:account_accountant.module_meta_information
msgid "Accountant"
msgstr "Contador"

View File

@ -7,16 +7,26 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 15:20+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 08:58+0000\n"
"Last-Translator: Chertykov Denis <chertykov@gmail.com>\n"
"Language-Team: Russian <ru@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: 2010-11-17 04:52+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_accountant
#: model:ir.module.module,shortdesc:account_accountant.module_meta_information
msgid "Accountant"

View File

@ -0,0 +1,33 @@
# Ukrainian translation for openobject-addons
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 10:08+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Ukrainian <uk@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: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_accountant
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_accountant
#: model:ir.module.module,shortdesc:account_accountant.module_meta_information
msgid "Accountant"
msgstr ""

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:02+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:02+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:14+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:14+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -56,6 +56,11 @@ msgstr ""
msgid "Last Invoice Date"
msgstr ""
#. module: account_analytic_analysis
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_analytic_analysis
#: help:account.analytic.account,last_invoice_date:0
msgid "Date of the last invoice created for this analytic account."
@ -81,6 +86,11 @@ msgstr ""
msgid "Real Margin Rate (%)"
msgstr ""
#. module: account_analytic_analysis
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. 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."
@ -264,6 +274,11 @@ msgstr ""
msgid "Hours Tot"
msgstr ""
#. module: account_analytic_analysis
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. 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."

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev_rc3\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-10-25 07:12+0000\n"
"Last-Translator: Carlos-smile <Unknown>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 20:27+0000\n"
"Last-Translator: Carlos @ smile.fr <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: 2010-10-30 05:32+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis
@ -65,6 +65,11 @@ msgstr "Ingresos teóricos"
msgid "Last Invoice Date"
msgstr "Fecha última factura"
#. module: account_analytic_analysis
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr "¡El nombre del módulo debe ser único!"
#. module: account_analytic_analysis
#: help:account.analytic.account,last_invoice_date:0
msgid "Date of the last invoice created for this analytic account."
@ -90,6 +95,11 @@ msgstr "Margen teórico"
msgid "Real Margin Rate (%)"
msgstr "Tasa de margen real (%)"
#. module: account_analytic_analysis
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr "¡El ID del certificado del módulo debe ser único!"
#. module: account_analytic_analysis
#: help:account.analytic.account,last_worked_invoiced_date:0
msgid ""
@ -295,6 +305,11 @@ msgstr "Todas las entradas no facturadas"
msgid "Hours Tot"
msgstr "Horas totales"
#. module: account_analytic_analysis
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr "¡El tamaño del campo nunca puede ser menor que 1!"
#. module: account_analytic_analysis
#: help:account.analytic.account,total_cost:0
msgid ""

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev_rc3\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-08-02 20:34+0000\n"
"Last-Translator: mga (Open ERP) <Unknown>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 15:24+0000\n"
"Last-Translator: Alexsandro Haag <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: 2010-10-30 05:32+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_analysis
@ -50,7 +50,7 @@ msgstr "Calculado utilizando a fórmula: quantidade máxima - total de horas"
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:0
#, python-format
msgid "AccessError"
msgstr ""
msgstr "Erro de acesso"
#. module: account_analytic_analysis
#: field:account.analytic.account,ca_theorical:0
@ -62,6 +62,11 @@ msgstr "Receita Projetada"
msgid "Last Invoice Date"
msgstr "Data da Última fatura"
#. module: account_analytic_analysis
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_analytic_analysis
#: help:account.analytic.account,last_invoice_date:0
msgid "Date of the last invoice created for this analytic account."
@ -70,7 +75,7 @@ msgstr "Data da última fatura criada para esta conta analítica."
#. module: account_analytic_analysis
#: constraint:ir.ui.menu:0
msgid "Error ! You can not create recursive Menu."
msgstr ""
msgstr "Erro! Você não pode criar um Menu recursivo."
#. module: account_analytic_analysis
#: help:account.analytic.account,theorical_margin:0
@ -87,6 +92,11 @@ msgstr "Marem Projetada"
msgid "Real Margin Rate (%)"
msgstr "Taxa Real de Margem"
#. module: account_analytic_analysis
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_analytic_analysis
#: help:account.analytic.account,last_worked_invoiced_date:0
msgid ""
@ -99,7 +109,7 @@ msgstr ""
#. module: account_analytic_analysis
#: model:ir.ui.menu,name:account_analytic_analysis.menu_invoicing
msgid "Billing"
msgstr ""
msgstr "Cobrança"
#. module: account_analytic_analysis
#: field:account.analytic.account,last_worked_date:0
@ -175,7 +185,7 @@ msgstr "report_account_analytic"
#. module: account_analytic_analysis
#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user
msgid "Hours Summary by User"
msgstr ""
msgstr "Resumo de Horas por Usuário"
#. module: account_analytic_analysis
#: field:account.analytic.account,ca_invoiced:0
@ -186,7 +196,7 @@ msgstr "Valor Faturado"
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:0
#, python-format
msgid "You try to bypass an access rule (Document type: %s)."
msgstr ""
msgstr "Você tentou burlar uma regra de acesso (Tipo de documento: %s)."
#. module: account_analytic_analysis
#: field:account.analytic.account,last_worked_invoiced_date:0
@ -292,6 +302,11 @@ msgstr "Todos os Lançamentos Não Faturados"
msgid "Hours Tot"
msgstr "Total de Horas"
#. module: account_analytic_analysis
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: account_analytic_analysis
#: help:account.analytic.account,total_cost:0
msgid ""

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:02+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:02+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:15+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:15+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -87,6 +87,11 @@ msgstr ""
msgid "Sale Order Line"
msgstr ""
#. module: account_analytic_default
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_analytic_default
#: help:account.analytic.default,date_start:0
msgid "Default start date for this Analytical Account"
@ -152,6 +157,11 @@ msgstr ""
msgid "Sequence"
msgstr ""
#. module: account_analytic_default
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_analytic_default
#: model:ir.model,name:account_analytic_default.model_account_invoice_line
msgid "Invoice Line"
@ -184,3 +194,8 @@ msgstr ""
msgid "Gives the sequence order when displaying a list of analytic distribution"
msgstr ""
#. module: account_analytic_default
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""

View File

@ -6,15 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-10-31 08:49+0000\n"
"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
"<jesteve@zikzakmedia.com>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 20:32+0000\n"
"Last-Translator: Carlos @ smile.fr <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: 2010-11-01 05:11+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_default
@ -106,6 +105,11 @@ msgstr ""
msgid "Sale Order Line"
msgstr "Línea pedido de venta"
#. module: account_analytic_default
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr "¡El ID del certificado del módulo debe ser único!"
#. module: account_analytic_default
#: help:account.analytic.default,date_start:0
msgid "Default start date for this Analytical Account"
@ -181,6 +185,11 @@ msgstr ""
msgid "Sequence"
msgstr "Secuencia"
#. module: account_analytic_default
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr "¡El nombre del módulo debe ser único!"
#. module: account_analytic_default
#: model:ir.model,name:account_analytic_default.model_account_invoice_line
msgid "Invoice Line"
@ -216,6 +225,11 @@ msgstr ""
"Indica el orden de la secuencia cuando se muestra una lista de distribución "
"analítica."
#. module: account_analytic_default
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr "¡El tamaño del campo nunca puede ser menor que 1!"
#~ msgid "Seq"
#~ msgstr "Secuencia"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 15:22+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 07:35+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: 2010-11-17 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_analytic_default
@ -97,6 +97,11 @@ msgstr ""
msgid "Sale Order Line"
msgstr "Позиция заказа на продажу"
#. module: account_analytic_default
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_analytic_default
#: help:account.analytic.default,date_start:0
msgid "Default start date for this Analytical Account"
@ -166,6 +171,11 @@ msgstr ""
msgid "Sequence"
msgstr "Последовательность"
#. module: account_analytic_default
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_analytic_default
#: model:ir.model,name:account_analytic_default.model_account_invoice_line
msgid "Invoice Line"
@ -199,6 +209,11 @@ msgid ""
"Gives the sequence order when displaying a list of analytic distribution"
msgstr ""
#. module: account_analytic_default
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#~ msgid "Seq"
#~ msgstr "Последовательность"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:02+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:02+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:16+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:16+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -150,8 +150,8 @@ msgid "Dont show empty lines"
msgstr ""
#. module: account_analytic_plans
#: model:ir.actions.act_window,name:account_analytic_plans.action_analytic_plan_create_model
msgid "analytic.plan.create.model.action"
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_analytic_plans
@ -317,6 +317,11 @@ msgstr ""
msgid "Bank Statement Line"
msgstr ""
#. module: account_analytic_plans
#: model:ir.actions.act_window,name:account_analytic_plans.action_analytic_plan_create_model
msgid "analytic.plan.create.model.action"
msgstr ""
#. module: account_analytic_plans
#: report:account.analytic.account.crossovered.analytic:0
msgid "Amount"
@ -408,6 +413,11 @@ msgstr ""
msgid "No Analytic Journal !"
msgstr ""
#. module: account_analytic_plans
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_analytic_plans
#: field:account.analytic.plan.line,sequence:0
msgid "Sequence"
@ -481,6 +491,11 @@ msgstr ""
msgid "Company"
msgstr ""
#. module: account_analytic_plans
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: account_analytic_plans
#: report:account.analytic.account.crossovered.analytic:0
msgid "From Date"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:03+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:03+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:16+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:16+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -15,6 +15,17 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: account_anglo_saxon
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_anglo_saxon
#: help:product.category,property_account_creditor_price_difference_categ:0
#: help:product.template,property_account_creditor_price_difference:0
msgid "This account will be used to value price difference between purchase price and cost price."
msgstr ""
#. module: account_anglo_saxon
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
@ -30,6 +41,11 @@ msgstr ""
msgid "The Object name must start with x_ and not contain any special character !"
msgstr ""
#. module: account_anglo_saxon
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_anglo_saxon
#: model:ir.model,name:account_anglo_saxon.model_account_invoice_line
msgid "Invoice Line"
@ -78,8 +94,7 @@ msgid "This module will support the Anglo-Saxons accounting methodology by\n"
msgstr ""
#. module: account_anglo_saxon
#: help:product.category,property_account_creditor_price_difference_categ:0
#: help:product.template,property_account_creditor_price_difference:0
msgid "This account will be used to value price difference between purchase price and cost price."
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:03+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:03+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:17+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:17+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -37,9 +37,8 @@ msgid "Invalid model name in the action definition."
msgstr ""
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Printed at:"
#: 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 ""
#. module: account_budget
@ -52,6 +51,11 @@ msgstr ""
msgid "Validate User"
msgstr ""
#. module: account_budget
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_budget
#: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report
msgid "Print Summary"
@ -78,7 +82,6 @@ msgstr ""
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "at"
msgstr ""
@ -89,7 +92,6 @@ msgstr ""
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Currency:"
msgstr ""
@ -134,6 +136,16 @@ msgstr ""
msgid "Description"
msgstr ""
#. module: account_budget
#: report:crossovered.budget.report:0
msgid "Currency"
msgstr ""
#. module: account_budget
#: report:crossovered.budget.report:0
msgid "Total :"
msgstr ""
#. module: account_budget
#: field:account.budget.post,company_id:0
#: field:crossovered.budget,company_id:0
@ -141,6 +153,11 @@ msgstr ""
msgid "Company"
msgstr ""
#. module: account_budget
#: report:crossovered.budget.report:0
msgid "to"
msgstr ""
#. module: account_budget
#: view:crossovered.budget:0
msgid "Reset to Draft"
@ -229,6 +246,11 @@ msgstr ""
msgid "Budget"
msgstr ""
#. module: account_budget
#: report:account.budget:0
msgid "Printed at:"
msgstr ""
#. module: account_budget
#: code:addons/account_budget/account_budget.py:0
#, python-format
@ -326,6 +348,11 @@ msgstr ""
msgid "Select Dates Period"
msgstr ""
#. module: account_budget
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_budget
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
@ -364,7 +391,6 @@ msgstr ""
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Budget :"
msgstr ""
@ -394,6 +420,11 @@ msgstr ""
msgid "Budget Lines"
msgstr ""
#. module: account_budget
#: sql_constraint:ir.rule:0
msgid "Rule must have at least one checked access right !"
msgstr ""
#. module: account_budget
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
@ -420,3 +451,8 @@ msgstr ""
msgid "Analysis from"
msgstr ""
#. module: account_budget
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-10-30 15:59+0000\n"
"Last-Translator: Jarosław Ogrodnik <nobodythere@gmail.com>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 13:46+0000\n"
"Last-Translator: Grzegorz Grzelak (Cirrus.pl) <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: 2010-10-31 05:04+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_budget
@ -38,10 +38,17 @@ msgid "Invalid model name in the action definition."
msgstr "Nieprawidłowa nazwa modelu w definicji akcji."
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Printed at:"
msgstr "Drukowane na:"
#: 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 ""
#. module: account_budget
#: view:crossovered.budget:0
@ -51,12 +58,17 @@ msgstr "Zatwierdź"
#. module: account_budget
#: field:crossovered.budget,validating_user_id:0
msgid "Validate User"
msgstr "Waliduj użytkownika"
msgstr "Zatwierdź użytkownika"
#. module: account_budget
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_budget
#: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report
msgid "Print Summary"
msgstr ""
msgstr "Drukuj podsumowanie"
#. module: account_budget
#: field:crossovered.budget.lines,paid_date:0
@ -79,18 +91,16 @@ msgstr "Projekt"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "at"
msgstr "na"
#. module: account_budget
#: constraint:ir.ui.menu:0
msgid "Error ! You can not create recursive Menu."
msgstr ""
msgstr "Błąd ! Nie możesz tworzyć rekurencyjnych menu."
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Currency:"
msgstr "Waluta:"
@ -110,7 +120,7 @@ msgstr ""
#. module: account_budget
#: selection:crossovered.budget,state:0
msgid "Validated"
msgstr "Zatwierdzony"
msgstr "Zatwierdzone"
#. module: account_budget
#: field:crossovered.budget.lines,percentage:0
@ -125,7 +135,7 @@ msgstr "Stan"
#. module: account_budget
#: view:account.budget.crossvered.summary.report:0
msgid "This wizard is used to print summary of budgets"
msgstr ""
msgstr "Ten kreator jest stosowany do drukowania podsumowania budżetu."
#. module: account_budget
#: report:crossovered.budget.report:0
@ -138,17 +148,32 @@ msgstr "%"
msgid "Description"
msgstr "Opis"
#. module: account_budget
#: report:crossovered.budget.report:0
msgid "Currency"
msgstr ""
#. module: account_budget
#: report:crossovered.budget.report:0
msgid "Total :"
msgstr "Suma :"
#. 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 ""
msgstr "Firma"
#. module: account_budget
#: report:crossovered.budget.report:0
msgid "to"
msgstr "do"
#. module: account_budget
#: view:crossovered.budget:0
msgid "Reset to Draft"
msgstr ""
msgstr "Przywróć do projektu"
#. module: account_budget
#: view:account.budget.post:0
@ -173,7 +198,7 @@ msgstr "Wykonano"
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Practical Amt"
msgstr ""
msgstr "Kwota w praktyce"
#. module: account_budget
#: view:account.budget.post:0
@ -215,7 +240,7 @@ msgstr "Nazwa"
#. module: account_budget
#: model:ir.model,name:account_budget.model_crossovered_budget_lines
msgid "Budget Line"
msgstr ""
msgstr "Pozycja budżetu"
#. module: account_budget
#: view:account.analytic.account:0
@ -233,6 +258,11 @@ msgstr "Pozycje"
msgid "Budget"
msgstr "Budżet"
#. module: account_budget
#: report:account.budget:0
msgid "Printed at:"
msgstr "Drukowane na:"
#. module: account_budget
#: code:addons/account_budget/account_budget.py:0
#, python-format
@ -249,7 +279,7 @@ msgstr "Kod"
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
msgid "This wizard is used to print budget"
msgstr ""
msgstr "Ten kreator jest stosowany do druku budżetu"
#. module: account_budget
#: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_view
@ -277,12 +307,12 @@ msgstr "Anulowano"
#. module: account_budget
#: view:crossovered.budget:0
msgid "Approve"
msgstr ""
msgstr "Aprobuj"
#. module: account_budget
#: view:crossovered.budget:0
msgid "To Approve"
msgstr ""
msgstr "Do aprobaty"
#. module: account_budget
#: view:account.budget.post:0
@ -320,7 +350,7 @@ msgstr ""
#. module: account_budget
#: constraint:ir.rule:0
msgid "Rules are not supported for osv_memory objects !"
msgstr ""
msgstr "Reguły nie są obsługiwane dla obiektów osv_memory !"
#. module: account_budget
#: view:account.budget.analytic:0
@ -330,6 +360,11 @@ msgstr ""
msgid "Select Dates Period"
msgstr "Wybierz daty okresu"
#. module: account_budget
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_budget
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
@ -375,7 +410,6 @@ msgstr "Konto analityczne"
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0
msgid "Budget :"
msgstr "Budżet :"
@ -405,6 +439,11 @@ msgstr "Konta"
msgid "Budget Lines"
msgstr "Pozycje budżetu"
#. module: account_budget
#: sql_constraint:ir.rule:0
msgid "Rule must have at least one checked access right !"
msgstr ""
#. module: account_budget
#: view:account.budget.analytic:0
#: view:account.budget.crossvered.report:0
@ -431,6 +470,11 @@ msgstr "Data początkowa"
msgid "Analysis from"
msgstr "Analiza od"
#. module: account_budget
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#~ msgid "% performance"
#~ msgstr "% zaawansowania"
@ -452,15 +496,9 @@ msgstr "Analiza od"
#~ msgid "Analytic Account :"
#~ msgstr "Konto analityczne :"
#~ msgid "to"
#~ msgstr "do"
#~ msgid "Results"
#~ msgstr "Wyniki"
#~ msgid "Total :"
#~ msgstr "Suma :"
#~ msgid "Select Options"
#~ msgstr "Opcje selekcji"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:03+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:03+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:17+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:17+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -15,6 +15,16 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: account_cancel
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_cancel
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_cancel
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"

View File

@ -0,0 +1,38 @@
# Polish translation for openobject-addons
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 13:35+0000\n"
"Last-Translator: Grzegorz Grzelak (Cirrus.pl) <Unknown>\n"
"Language-Team: Polish <pl@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: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_cancel
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_cancel
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_cancel
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr "Niewłaściwy XML dla architektury widoku!"
#. module: account_cancel
#: model:ir.module.module,shortdesc:account_cancel.module_meta_information
msgid "Account Cancel"
msgstr "Anulowanie konta"

View File

@ -0,0 +1,38 @@
# Brazilian Portuguese translation for openobject-addons
# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010
# This file is distributed under the same license as the openobject-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 03:24+0000\n"
"Last-Translator: Alexsandro Haag <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: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_cancel
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_cancel
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_cancel
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr "XML inválido para Arquitetura da View"
#. module: account_cancel
#: model:ir.module.module,shortdesc:account_cancel.module_meta_information
msgid "Account Cancel"
msgstr "Cancelar Conta"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:03+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:03+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:17+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:17+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -15,6 +15,16 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: account_chart
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_chart
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_chart
#: model:ir.module.module,description:account_chart.module_meta_information
msgid "Remove minimal account chart"

View File

@ -6,17 +6,27 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 16:10+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 08:22+0000\n"
"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) "
"<maxime.chambreuil@savoirfairelinux.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-11-17 04:52+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_chart
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_chart
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_chart
#: model:ir.module.module,description:account_chart.module_meta_information
msgid "Remove minimal account chart"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:04+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:04+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:18+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:18+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -82,6 +82,17 @@ msgstr ""
msgid "Log"
msgstr ""
#. module: account_coda
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_coda
#: code:addons/account_coda/account_coda.py:0
#, python-format
msgid "Coda file not found for bank statement !!"
msgstr ""
#. 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"
@ -136,8 +147,8 @@ msgid "Default Payable Account"
msgstr ""
#. module: account_coda
#: help:account.coda,name:0
msgid "Store the detail of bank statements"
#: sql_constraint:ir.rule:0
msgid "Rule must have at least one checked access right !"
msgstr ""
#. module: account_coda
@ -150,6 +161,18 @@ msgstr ""
msgid "Open Statements"
msgstr ""
#. module: account_coda
#: help:account.coda,name:0
msgid "Store the detail of bank statements"
msgstr ""
#. module: account_coda
#: code:addons/account_coda/wizard/account_coda_import.py:0
#, python-format
msgid "The bank account %s is not defined for the partner %s.\n"
""
msgstr ""
#. module: account_coda
#: model:ir.ui.menu,name:account_coda.menu_account_coda_import
msgid "Import Coda Statements"
@ -176,6 +199,11 @@ msgstr ""
msgid "Coda"
msgstr ""
#. module: account_coda
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_coda
#: view:account.coda.import:0
msgid "Results :"
@ -249,9 +277,8 @@ msgid "Coda Import"
msgstr ""
#. module: account_coda
#: code:addons/account_coda/wizard/account_coda_import.py:0
#, python-format
msgid "The bank account %s is not defined for the partner %s.\n"
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: account_coda

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:04+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:04+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:19+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:19+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -26,6 +26,28 @@ msgstr ""
msgid "Search Followup"
msgstr ""
#. module: account_followup
#: model:ir.module.module,description:account_followup.module_meta_information
msgid "\n"
" Modules to automate letters for unpaid invoices, with multi-level recalls.\n"
"\n"
" You can define your multiple levels of recall through the menu:\n"
" Accounting/Configuration/Miscellaneous/Follow-Ups\n"
"\n"
" Once it is defined, you can automatically print recalls every day\n"
" through simply clicking on the menu:\n"
" Accounting/Periodical Processing/Billing/Send followups\n"
"\n"
" It will generate a PDF with all the letters according to the the\n"
" different levels of recall defined. You can define different policies\n"
" for different companies. You can also send mail to the customer.\n"
"\n"
" Note that if you want to change the followup level for a given partner/account entry, you can do from in the menu:\n"
" Accounting/Reporting/Generic Reporting/Partner Accounts/Follow-ups Sent\n"
"\n"
""
msgstr ""
#. module: account_followup
#: view:account_followup.stat:0
msgid "Group By..."
@ -47,6 +69,7 @@ msgstr ""
#: field:account_followup.followup,company_id:0
#: view:account_followup.stat:0
#: field:account_followup.stat,company_id:0
#: field:account_followup.stat.by.partner,company_id:0
msgid "Company"
msgstr ""
@ -60,6 +83,11 @@ msgstr ""
msgid "Email Subject"
msgstr ""
#. module: account_followup
#: model:ir.actions.act_window,help:account_followup.action_followup_stat
msgid "Follow up on the reminders sent over to your partners for unpaid invoices."
msgstr ""
#. module: account_followup
#: view:account.followup.print.all:0
#: view:account_followup.followup.line:0
@ -71,6 +99,11 @@ msgstr ""
msgid "Ok"
msgstr ""
#. module: account_followup
#: view:account.followup.print.all:0
msgid "Select Partners to Remind"
msgstr ""
#. module: account_followup
#: field:account.followup.print,date:0
msgid "Follow-up Sending Date"
@ -88,8 +121,8 @@ msgid "Follow-Ups"
msgstr ""
#. module: account_followup
#: report:account_followup.followup.print:0
msgid "VAT:"
#: view:account_followup.stat.by.partner:0
msgid "Balance > 0"
msgstr ""
#. module: account_followup
@ -108,7 +141,14 @@ msgid "Follow-up"
msgstr ""
#. module: account_followup
#: field:account_followup.stat,name:0
#: report:account_followup.followup.print:0
msgid "VAT:"
msgstr ""
#. module: account_followup
#: view:account_followup.stat:0
#: field:account_followup.stat,partner_id:0
#: field:account_followup.stat.by.partner,partner_id:0
msgid "Partner"
msgstr ""
@ -122,6 +162,12 @@ msgstr ""
msgid "Partners"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:0
#, python-format
msgid "Invoices Reminder"
msgstr ""
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_followup
msgid "Account Follow Up"
@ -137,6 +183,11 @@ msgstr ""
msgid "Not Litigation"
msgstr ""
#. module: account_followup
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_followup
#: view:account.followup.print.all:0
msgid "%(user_signature)s: User name"
@ -148,8 +199,8 @@ msgid "Debit"
msgstr ""
#. module: account_followup
#: field:account_followup.stat,account_type:0
msgid "Account Type"
#: view:account.followup.print:0
msgid "This feature allows you to send reminders to partners with pending invoices. You can send them the default message for unpaid invoices or manually enter a message should you need to remind them of a specific information."
msgstr ""
#. module: account_followup
@ -162,6 +213,11 @@ msgstr ""
msgid "Gives the sequence order when displaying a list of follow-up lines."
msgstr ""
#. module: account_followup
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_followup
#: view:account.followup.print.all:0
#: field:account.followup.print.all,email_body:0
@ -175,6 +231,7 @@ msgstr ""
#. module: account_followup
#: field:account_followup.stat,date_followup:0
#: field:account_followup.stat.by.partner,date_followup:0
msgid "Latest followup"
msgstr ""
@ -206,11 +263,6 @@ msgstr ""
msgid "Send Email in Partner Language"
msgstr ""
#. module: account_followup
#: view:account.followup.print.all:0
msgid "Select partners to remind"
msgstr ""
#. module: account_followup
#: view:account.followup.print.all:0
msgid "Partner Selection"
@ -230,6 +282,11 @@ msgstr ""
msgid "Send followups"
msgstr ""
#. module: account_followup
#: view:account_followup.stat.by.partner:0
msgid "Partner to Remind"
msgstr ""
#. module: account_followup
#: field:account_followup.followup.line,followup_id:0
#: field:account_followup.stat,followup_id:0
@ -249,12 +306,6 @@ msgid "\n"
""
msgstr ""
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:0
#, python-format
msgid "All E-mails have been successfully sent to Partners:.\n\n"
msgstr ""
#. module: account_followup
#: model:account_followup.followup.line,description:account_followup.demo_followup_line3
msgid "\n"
@ -282,6 +333,11 @@ msgstr ""
msgid "Currency"
msgstr ""
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_stat_by_partner
msgid "Followup Statistics by Partner"
msgstr ""
#. module: account_followup
#: model:ir.module.module,shortdesc:account_followup.module_meta_information
msgid "Accounting follow-ups management"
@ -368,6 +424,14 @@ msgstr ""
msgid "Send email confirmation"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:0
#, python-format
msgid "All E-mails have been successfully sent to Partners:.\n"
"\n"
""
msgstr ""
#. module: account_followup
#: view:account.followup.print.all:0
msgid "%(company_name)s: User's Company name"
@ -411,6 +475,7 @@ msgstr ""
#. module: account_followup
#: view:account_followup.stat:0
#: field:account_followup.stat,balance:0
#: field:account_followup.stat.by.partner,balance:0
msgid "Balance"
msgstr ""
@ -427,6 +492,7 @@ msgstr ""
#. module: account_followup
#: field:account_followup.stat,date_move_last:0
#: field:account_followup.stat.by.partner,date_move_last:0
msgid "Last move"
msgstr ""
@ -440,12 +506,6 @@ msgstr ""
msgid "Period"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:0
#, python-format
msgid "E-Mail not sent to following Partners, Email not available !\n\n"
msgstr ""
#. module: account_followup
#: view:account.followup.print:0
#: view:account.followup.print.all:0
@ -458,9 +518,8 @@ msgid "Follow-Up Lines"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:0
#, python-format
msgid "\n\nE-Mail sent to following Partners successfully. !\n\n"
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: account_followup
@ -468,6 +527,11 @@ msgstr ""
msgid "Litigation"
msgstr ""
#. module: account_followup
#: field:account_followup.stat.by.partner,max_followup_id:0
msgid "Max Follow Up Level"
msgstr ""
#. module: account_followup
#: constraint:ir.model:0
msgid "The Object name must start with x_ and not contain any special character !"
@ -536,6 +600,7 @@ msgstr ""
#. module: account_followup
#: field:account_followup.stat,date_move:0
#: field:account_followup.stat.by.partner,date_move:0
msgid "First move"
msgstr ""
@ -549,6 +614,14 @@ msgstr ""
msgid "Maturity"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:0
#, python-format
msgid "E-Mail not sent to following Partners, Email not available !\n"
"\n"
""
msgstr ""
#. module: account_followup
#: view:account.followup.print:0
msgid "Continue"

View File

@ -117,7 +117,7 @@
<font color="white"> </font>
</para>
<para style="terp_default_9">Document : Customer account statement</para>
<para style="terp_default_9">Date : [[ formatLang(time.strftime('%Y-%m-%d'),date = True) ]]</para>
<para style="terp_default_9">Date : [[ formatLang(data['form']['date'],date=True) ]]</para>
<para style="terp_default_9">Customer Ref : [[ o.ref or '' ]]</para>
<para style="terp_default_8">
<font color="white"> </font>

View File

@ -319,13 +319,12 @@ class account_followup_print_all(osv.osv_memory):
"WHERE id=%s",
(to_update[id]['level'],
date, int(id),))
data.update({'date': context['date']})
datas = {
'ids': [],
'model': 'account_followup.followup',
'form': data
}
return {
'type': 'ir.actions.report.xml',
'report_name': 'account_followup.followup.print',

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:04+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:04+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:19+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:19+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -190,6 +190,11 @@ msgstr ""
msgid "Partner Ref."
msgstr ""
#. module: account_invoice_layout
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_invoice_layout
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
@ -284,6 +289,11 @@ msgstr ""
msgid "Supplier Invoice"
msgstr ""
#. module: account_invoice_layout
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_invoice_layout
#: view:account.invoice.special.msg:0
msgid "Print"
@ -339,6 +349,11 @@ msgstr ""
msgid "Message"
msgstr ""
#. module: account_invoice_layout
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: account_invoice_layout
#: model:ir.ui.menu,name:account_invoice_layout.menu_notify_mesage_tree_form
msgid "All Notification Messages"

View File

@ -6,15 +6,15 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 16:11+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 11:07+0000\n"
"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) "
"<maxime.chambreuil@savoirfairelinux.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-11-17 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:50+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_invoice_layout
@ -197,6 +197,11 @@ msgstr "Quantité"
msgid "Partner Ref."
msgstr ""
#. module: account_invoice_layout
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_invoice_layout
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
@ -291,6 +296,11 @@ msgstr ""
msgid "Supplier Invoice"
msgstr "Facture fournisseur"
#. module: account_invoice_layout
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_invoice_layout
#: view:account.invoice.special.msg:0
msgid "Print"
@ -346,6 +356,11 @@ msgstr "Note de Crédit Fournisseur"
msgid "Message"
msgstr "Message"
#. module: account_invoice_layout
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: account_invoice_layout
#: model:ir.ui.menu,name:account_invoice_layout.menu_notify_mesage_tree_form
msgid "All Notification Messages"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:05+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:05+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:20+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:20+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -25,6 +25,11 @@ msgstr ""
msgid "Partner Currency"
msgstr ""
#. module: account_payment
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_payment
#: view:payment.order:0
msgid "Set to draft"
@ -67,8 +72,8 @@ msgid "The amount which should be paid at the current date\n"
msgstr ""
#. module: account_payment
#: help:payment.line,date:0
msgid "If no payment date is specified, the bank will treat this payment line directly"
#: field:payment.mode,company_id:0
msgid "Company"
msgstr ""
#. module: account_payment
@ -152,9 +157,11 @@ msgid "Directly"
msgstr ""
#. module: account_payment
#: model:ir.actions.act_window,name:account_payment.action_payment_line_form
#: model:ir.model,name:account_payment.model_payment_line
#: view:payment.line:0
#: view:payment.order:0
#: selection:payment.order,state:0
msgid "Draft"
msgid "Payment Line"
msgstr ""
#. module: account_payment
@ -168,6 +175,11 @@ msgstr ""
msgid "Confirmed"
msgstr ""
#. module: account_payment
#: view:payment.order:0
msgid "Select Invoices to Pay"
msgstr ""
#. module: account_payment
#: help:payment.line,ml_date_created:0
msgid "Invoice Effective Date"
@ -188,6 +200,11 @@ msgstr ""
msgid "Structured"
msgstr ""
#. module: account_payment
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_payment
#: view:payment.order:0
#: field:payment.order,state:0
@ -240,6 +257,11 @@ msgstr ""
msgid "Execution date"
msgstr ""
#. module: account_payment
#: help:payment.mode,journal:0
msgid "Bank or Cash Journal for the Payment Mode"
msgstr ""
#. module: account_payment
#: selection:payment.order,date_prefered:0
msgid "Fixed date"
@ -272,8 +294,8 @@ msgid "Created"
msgstr ""
#. module: account_payment
#: view:payment.order:0
msgid "Select Invoices to Pay"
#: sql_constraint:ir.rule:0
msgid "Rule must have at least one checked access right !"
msgstr ""
#. module: account_payment
@ -327,8 +349,8 @@ msgid "Address of the Main Partner"
msgstr ""
#. module: account_payment
#: field:payment.mode,company_id:0
msgid "Company"
#: help:payment.line,date:0
msgid "If no payment date is specified, the bank will treat this payment line directly"
msgstr ""
#. module: account_payment
@ -357,11 +379,9 @@ msgid "Payment amount in the partner currency"
msgstr ""
#. module: account_payment
#: model:ir.actions.act_window,name:account_payment.action_payment_line_form
#: model:ir.model,name:account_payment.model_payment_line
#: view:payment.line:0
#: view:payment.order:0
msgid "Payment Line"
#: selection:payment.order,state:0
msgid "Draft"
msgstr ""
#. module: account_payment
@ -391,8 +411,8 @@ msgid "Populate Statement:"
msgstr ""
#. module: account_payment
#: view:account.move.line:0
msgid "Total credit"
#: sql_constraint:res.groups:0
msgid "The name of the group must be unique !"
msgstr ""
#. module: account_payment
@ -521,6 +541,11 @@ msgstr ""
msgid "Cancel"
msgstr ""
#. module: account_payment
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: account_payment
#: view:payment.line:0
#: view:payment.order:0
@ -569,8 +594,9 @@ msgid "Are you sure you want to make payment?"
msgstr ""
#. module: account_payment
#: help:payment.mode,journal:0
msgid "Cash Journal for the Payment Mode"
#: view:payment.mode:0
#: field:payment.mode,journal:0
msgid "Journal"
msgstr ""
#. module: account_payment
@ -616,6 +642,11 @@ msgstr ""
msgid "Name"
msgstr ""
#. module: account_payment
#: view:account.move.line:0
msgid "Total credit"
msgstr ""
#. module: account_payment
#: report:payment.order:0
msgid "Bank Account"
@ -642,6 +673,11 @@ msgstr ""
msgid "Total"
msgstr ""
#. module: account_payment
#: model:ir.actions.act_window,help:account_payment.action_payment_order_tree
msgid "A payment order is a payment request that your company does in order to pay a supplier invoice or a customer credit note. Here you can register all payment orders that should be done, keep track of all payment orders and mention the invoice reference and the partner the payment should be done for."
msgstr ""
#. module: account_payment
#: constraint:ir.rule:0
msgid "Rules are not supported for osv_memory objects !"
@ -669,9 +705,3 @@ msgstr ""
msgid "Bank Account for the Payment Mode"
msgstr ""
#. module: account_payment
#: view:payment.mode:0
#: field:payment.mode,journal:0
msgid "Journal"
msgstr ""

View File

@ -99,7 +99,7 @@ class payment_order_create(osv.osv_memory):
context = {}
data = self.read(cr, uid, ids, [], context=context)[0]
search_due_date = data['duedate']
# payment = order_obj.browse(cr, uid, context['active_id'], context=context)
# payment = self.pool.get('payment.order').browse(cr, uid, context['active_id'], context=context)
# Search for move line to pay:
domain = [('reconcile_id', '=', False), ('account_id.type', '=', 'payable'), ('amount_to_pay', '>', 0)]

View File

@ -31,7 +31,7 @@
'depends': ['account'],
'init_xml': [],
'update_xml': ['account_sequence_data.xml','account_sequence.xml'],
'demo_xml': ['account_sequence_minimal.xml'],
'demo_xml': [],
'installable': True,
'active': False,
'certificate': '',

View File

@ -34,6 +34,7 @@ class account_move(osv.osv):
res = super(account_move, self).post(cr, uid, ids, context=context)
seq_no = False
for line in self.browse(cr, uid, ids):
# Todo: if there is not internal seq defined on journal raise error ?
if line.journal_id.internal_sequence:
seq_no = obj_sequence.get_id(cr, uid, line.journal_id.internal_sequence.id, context=context)
if seq_no:
@ -48,6 +49,7 @@ class account_journal(osv.osv):
_columns = {
'internal_sequence': fields.many2one('ir.sequence', 'Internal Sequence'),
}
account_journal()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -20,7 +20,7 @@
<field name="type">form</field>
<field name="inherit_id" ref="account.view_account_journal_form"/>
<field name="arch" type="xml">
<field name="code" position="after">
<field name="sequence_id" position="after">
<field name="internal_sequence"/>
</field>
</field>

View File

@ -8,5 +8,8 @@
<field name="code">account.journal</field>
<field name="number_next">1</field>
</record>
<function eval="('default', False, 'internal_sequence', [('account.journal', False)], internal_sequence_journal, True, False, False, False, True)" id="internal_seq_default_set" model="ir.values" name="set"/>
</data>
</openerp>

View File

@ -1,32 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="account.sales_journal" model="account.journal">
<field name="internal_sequence" ref="internal_sequence_journal"/>
</record>
<record id="account.refund_sales_journal" model="account.journal">
<field name="internal_sequence" ref="internal_sequence_journal"/>
</record>
<record id="account.expenses_journal" model="account.journal">
<field name="internal_sequence" ref="internal_sequence_journal"/>
</record>
<record id="account.refund_expenses_journal" model="account.journal">
<field name="internal_sequence" ref="internal_sequence_journal"/>
</record>
<record id="account.bank_journal" model="account.journal">
<field name="internal_sequence" ref="internal_sequence_journal"/>
</record>
<record id="account.check_journal" model="account.journal">
<field name="internal_sequence" ref="internal_sequence_journal"/>
</record>
<record id="account.cash_journal" model="account.journal">
<field name="internal_sequence" ref="internal_sequence_journal"/>
</record>
</data>
</openerp>

View File

@ -0,0 +1,67 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * account_sequence
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-11-18 16:11:21+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:21+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: account_sequence
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_sequence
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr ""
#. module: account_sequence
#: model:ir.model,name:account_sequence.model_account_move
msgid "Account Entry"
msgstr ""
#. module: account_sequence
#: field:account.move,internal_sequence_number:0
msgid "Internal Sequence Number"
msgstr ""
#. module: account_sequence
#: model:ir.model,name:account_sequence.model_account_journal
msgid "Journal"
msgstr ""
#. module: account_sequence
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_sequence
#: model:ir.module.module,shortdesc:account_sequence.module_meta_information
msgid "Entries Sequence Numbering"
msgstr ""
#. module: account_sequence
#: field:account.journal,internal_sequence:0
msgid "Internal Sequence"
msgstr ""
#. module: account_sequence
#: constraint:ir.model:0
msgid "The Object name must start with x_ and not contain any special character !"
msgstr ""
#. module: account_sequence
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""

View File

@ -0,0 +1,67 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * account_sequence
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-11-18 16:11:21+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:21+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: account_sequence
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_sequence
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr ""
#. module: account_sequence
#: model:ir.model,name:account_sequence.model_account_move
msgid "Account Entry"
msgstr ""
#. module: account_sequence
#: field:account.move,internal_sequence_number:0
msgid "Internal Sequence Number"
msgstr ""
#. module: account_sequence
#: model:ir.model,name:account_sequence.model_account_journal
msgid "Journal"
msgstr ""
#. module: account_sequence
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_sequence
#: model:ir.module.module,shortdesc:account_sequence.module_meta_information
msgid "Entries Sequence Numbering"
msgstr ""
#. module: account_sequence
#: field:account.journal,internal_sequence:0
msgid "Internal Sequence"
msgstr ""
#. module: account_sequence
#: constraint:ir.model:0
msgid "The Object name must start with x_ and not contain any special character !"
msgstr ""
#. module: account_sequence
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""

View File

@ -7,13 +7,13 @@ msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2009-08-28 16:01+0000\n"
"PO-Revision-Date: 2009-09-08 12:28+0000\n"
"Last-Translator: Pedro_Maschio <pedro.bicudo@tgtconsult.com.br>\n"
"PO-Revision-Date: 2010-11-18 15:35+0000\n"
"Last-Translator: Alexsandro Haag <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: 2010-10-30 05:22+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: account_tax_include
@ -24,29 +24,29 @@ msgstr "Invalido XML para Arquitetura da View"
#. module: account_tax_include
#: field:account.invoice,price_type:0
msgid "Price method"
msgstr ""
msgstr "Método de Preço"
#. module: account_tax_include
#: model:ir.module.module,shortdesc:account_tax_include.module_meta_information
msgid "Invoices and prices with taxes included"
msgstr ""
msgstr "Faturas e preços com os impostos incluídos"
#. module: account_tax_include
#: selection:account.invoice,price_type:0
msgid "Tax included"
msgstr ""
msgstr "Impostos incluídos"
#. module: account_tax_include
#: selection:account.invoice,price_type:0
msgid "Tax excluded"
msgstr ""
msgstr "Impostos excluídos"
#. module: account_tax_include
#: view:account.tax:0
msgid "Compute Code for Taxes included prices"
msgstr ""
msgstr "Código do Cálculo para Preços com Impostos incluídos"
#. module: account_tax_include
#: field:account.invoice.line,price_subtotal_incl:0
msgid "Subtotal"
msgstr ""
msgstr "Subtotal"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:06+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:06+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:22+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:22+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -20,11 +20,6 @@ msgstr ""
msgid "Unreconciliation transactions"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
msgid "Form view not available for Payment Lines"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
msgid "Payment Ref"
@ -106,6 +101,11 @@ msgstr ""
msgid "Account voucher unreconcile"
msgstr ""
#. module: account_voucher
#: model:ir.actions.act_window,help:account_voucher.action_sale_receipt
msgid "When you sell products to a customer, you can give him a sales receipt or an invoice. When the sales receipt is confirmed, it creates journal items automatically and you can record the customer payment related to this sales receipt."
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
msgid "Pay Bill"
@ -174,6 +174,11 @@ msgstr ""
msgid "Notes"
msgstr ""
#. module: account_voucher
#: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt
msgid "Sales payment allows you to register the payments you receive from your customers. In order to record a payment, you must enter the customer, the payment method (=the journal) and the payment amount. OpenERP will propose to you automatically the reconciliation of this payment with the open invoices or sales receipts."
msgstr ""
#. module: account_voucher
#: selection:account.voucher,type:0
msgid "Sale"
@ -282,8 +287,8 @@ msgid "You have to configure account base code and account tax code on the '%s'
msgstr ""
#. module: account_voucher
#: report:voucher.print:0
msgid "Account :"
#: selection:account.voucher,pay_now:0
msgid "Pay Later or Group Funds"
msgstr ""
#. module: account_voucher
@ -314,6 +319,11 @@ msgstr ""
msgid "Period"
msgstr ""
#. module: account_voucher
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
#: field:account.voucher,state:0
@ -325,6 +335,11 @@ msgstr ""
msgid "Accounting Voucher Entries"
msgstr ""
#. module: account_voucher
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
#: model:ir.actions.act_window,name:account_voucher.act_journal_voucher_open
@ -420,6 +435,11 @@ msgstr ""
msgid "Pay Directly"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
msgid "Voucher Items"
msgstr ""
#. module: account_voucher
#: field:account.statement.from.invoice,line_ids:0
#: field:account.statement.from.invoice.lines,line_ids:0
@ -448,8 +468,8 @@ msgid "Payable and Receivables"
msgstr ""
#. module: account_voucher
#: selection:account.voucher,pay_now:0
msgid "Pay Later or Group Funds"
#: report:voucher.print:0
msgid "Account :"
msgstr ""
#. module: account_voucher
@ -481,6 +501,11 @@ msgstr ""
msgid "PRO-FORMA"
msgstr ""
#. module: account_voucher
#: model:ir.actions.act_window,help:account_voucher.action_vendor_payment
msgid "The supplier payment form allows you to track the payment you do to your suppliers. When you select a supplier, the payment method and an amount for the payment, OpenERP will propose to reconcile your payment with the open supplier invoices or bills."
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
msgid "Total Amount"
@ -522,6 +547,11 @@ msgstr ""
msgid "Post"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
msgid "Extended Filters..."
msgstr ""
#. module: account_voucher
#: report:voucher.cash_receipt.drcr:0
#: report:voucher.print:0
@ -555,11 +585,6 @@ msgstr ""
msgid "Credit"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
msgid "Extended options..."
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:0
#, python-format
@ -637,8 +662,8 @@ msgid "Invoice"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
msgid "Voucher Items"
#: sql_constraint:ir.rule:0
msgid "Rule must have at least one checked access right !"
msgstr ""
#. module: account_voucher
@ -654,6 +679,11 @@ msgstr ""
msgid "Pro-forma"
msgstr ""
#. module: account_voucher
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
#: field:account.voucher,move_ids:0
@ -708,9 +738,8 @@ msgid "Canceled"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:0
#, python-format
msgid "Please change partner and try again !"
#: view:account.voucher:0
msgid "Vendor Invoices and Outstanding transactions"
msgstr ""
#. module: account_voucher
@ -785,12 +814,6 @@ msgstr ""
msgid "Rules are not supported for osv_memory objects !"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:0
#, python-format
msgid "Invalid Error !"
msgstr ""
#. module: account_voucher
#: help:account.voucher,date:0
msgid "Effective date for accounting entries"
@ -801,11 +824,6 @@ msgstr ""
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
#: view:account.voucher:0
msgid "Vendor Invoices and Outstanding transactions"
msgstr ""
#. module: account_voucher
#: field:account.voucher.line,untax_amount:0
msgid "Untax Amount"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:06+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:06+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:22+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:22+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -41,6 +41,11 @@ msgid "Module for defining analytic accounting object.\n"
" "
msgstr ""
#. module: analytic
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: analytic
#: field:account.analytic.account,state:0
msgid "State"
@ -81,6 +86,11 @@ msgstr ""
msgid "Pending"
msgstr ""
#. module: analytic
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: analytic
#: model:ir.model,name:analytic.model_account_analytic_line
msgid "Analytic Line"
@ -103,6 +113,11 @@ msgstr ""
msgid "Company"
msgstr ""
#. module: analytic
#: sql_constraint:res.groups:0
msgid "The name of the group must be unique !"
msgstr ""
#. module: analytic
#: field:account.analytic.account,quantity_max:0
msgid "Maximum Quantity"
@ -206,6 +221,11 @@ msgstr ""
msgid "View"
msgstr ""
#. module: analytic
#: sql_constraint:ir.rule:0
msgid "Rule must have at least one checked access right !"
msgstr ""
#. module: analytic
#: field:account.analytic.account,partner_id:0
msgid "Partner"
@ -226,3 +246,8 @@ msgstr ""
msgid "Analytic Entries"
msgstr ""
#. module: analytic
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:06+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:06+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:22+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:22+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: analytic_journal_billing_rate
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: analytic_journal_billing_rate
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
@ -41,6 +46,11 @@ msgstr ""
msgid "Analytic Account"
msgstr ""
#. module: analytic_journal_billing_rate
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: analytic_journal_billing_rate
#: model:ir.model,name:analytic_journal_billing_rate.model_analytic_journal_rate_grid
msgid "Relation table between journals and billing rates"
@ -71,3 +81,8 @@ msgstr ""
msgid "Timesheet Line"
msgstr ""
#. module: analytic_journal_billing_rate
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:06+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:06+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:23+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:23+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: analytic_user_function
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: analytic_user_function
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
@ -48,10 +53,8 @@ msgid "Analytic Account"
msgstr ""
#. module: analytic_user_function
#: code:addons/analytic_user_function/analytic_user_function.py:0
#, python-format
msgid "There is no expense account define ' \\n"
" 'for this product: \"%s\" (id:%d)"
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: analytic_user_function
@ -65,6 +68,12 @@ msgstr ""
msgid "User"
msgstr ""
#. module: analytic_user_function
#: code:addons/analytic_user_function/analytic_user_function.py:0
#, python-format
msgid "There is no expense account define for this product: \"%s\" (id:%d)"
msgstr ""
#. module: analytic_user_function
#: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid
msgid "Relation table between users and products on a analytic account"
@ -76,10 +85,8 @@ msgid "Analytic User Function"
msgstr ""
#. module: analytic_user_function
#: code:addons/analytic_user_function/analytic_user_function.py:0
#, python-format
msgid "There is no expense account define ' \\n"
" 'for this product: \"%s\" (id:%d)"
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: analytic_user_function

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:07+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:07+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:23+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:23+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -16,8 +16,43 @@ msgstr ""
"Plural-Forms: \n"
#. module: association
#: field:profile.association.config.install_modules_wizard,wiki:0
msgid "Wiki"
#: constraint:ir.model:0
msgid "The Object name must start with x_ and not contain any special character !"
msgstr ""
#. module: association
#: help:profile.association.config.install_modules_wizard,event_project:0
msgid "Helps you to manage and organize your events."
msgstr ""
#. module: association
#: help:profile.association.config.install_modules_wizard,project_gtd:0
msgid "GTD is a methodology to efficiently organise yourself and your tasks. This module fully integrates GTD principle with OpenERP's project management."
msgstr ""
#. module: association
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: association
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr ""
#. module: association
#: view:profile.association.config.install_modules_wizard:0
msgid "Resources Management"
msgstr ""
#. module: association
#: field:profile.association.config.install_modules_wizard,event_project:0
msgid "Events"
msgstr ""
#. module: association
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: association
@ -25,21 +60,6 @@ msgstr ""
msgid "Event Management"
msgstr ""
#. module: association
#: field:profile.association.config.install_modules_wizard,project_gtd:0
msgid "Getting Things Done"
msgstr ""
#. module: association
#: model:ir.module.module,description:association.module_meta_information
msgid "This module is to create Profile for Associates"
msgstr ""
#. module: association
#: constraint:ir.model:0
msgid "The Object name must start with x_ and not contain any special character !"
msgstr ""
#. module: association
#: field:profile.association.config.install_modules_wizard,progress:0
msgid "Configuration Progress"
@ -50,39 +70,29 @@ msgstr ""
msgid "title"
msgstr ""
#. module: association
#: help:profile.association.config.install_modules_wizard,event_project:0
msgid "Helps you to manage and organize your events."
msgstr ""
#. module: association
#: field:profile.association.config.install_modules_wizard,config_logo:0
msgid "Image"
msgstr ""
#. module: association
#: help:profile.association.config.install_modules_wizard,hr_expense:0
msgid "Tracks and manages employee expenses, and can automatically re-invoice clients if the expenses are project-related."
msgstr ""
#. module: association
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr ""
#. module: association
#: help:profile.association.config.install_modules_wizard,project_gtd:0
msgid "GTD is a methodology to efficiently organise yourself and your tasks. This module fully integrates GTD principle with OpenERP's project management."
msgstr ""
#. module: association
#: model:ir.module.module,shortdesc:association.module_meta_information
msgid "Association profile"
msgstr ""
#. module: association
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
#: model:ir.module.module,description:association.module_meta_information
msgid "This module is to create Profile for Associates"
msgstr ""
#. module: association
#: model:ir.model,name:association.model_profile_association_config_install_modules_wizard
msgid "profile.association.config.install_modules_wizard"
msgstr ""
#. module: association
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr ""
#. module: association
@ -92,12 +102,18 @@ msgstr ""
#. module: association
#: view:profile.association.config.install_modules_wizard:0
msgid "Resources Management"
#: field:profile.association.config.install_modules_wizard,project:0
msgid "Project Management"
msgstr ""
#. module: association
#: help:profile.association.config.install_modules_wizard,wiki:0
msgid "Lets you create wiki pages and page groups in order to keep track of business knowledge and share it with and between your employees."
#: field:profile.association.config.install_modules_wizard,wiki:0
msgid "Wiki"
msgstr ""
#. module: association
#: field:profile.association.config.install_modules_wizard,project_gtd:0
msgid "Getting Things Done"
msgstr ""
#. module: association
@ -106,18 +122,17 @@ msgid "Helps you manage your projects and tasks by tracking them, generating pla
msgstr ""
#. module: association
#: model:ir.model,name:association.model_profile_association_config_install_modules_wizard
msgid "profile.association.config.install_modules_wizard"
#: field:profile.association.config.install_modules_wizard,config_logo:0
msgid "Image"
msgstr ""
#. module: association
#: field:profile.association.config.install_modules_wizard,event_project:0
msgid "Events"
#: help:profile.association.config.install_modules_wizard,wiki:0
msgid "Lets you create wiki pages and page groups in order to keep track of business knowledge and share it with and between your employees."
msgstr ""
#. module: association
#: view:profile.association.config.install_modules_wizard:0
#: field:profile.association.config.install_modules_wizard,project:0
msgid "Project Management"
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""

View File

@ -6,37 +6,17 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 18:05+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 08:43+0000\n"
"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
"<jesteve@zikzakmedia.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-11-17 04:52+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: association
#: field:profile.association.config.install_modules_wizard,wiki:0
msgid "Wiki"
msgstr "Wiki"
#. module: association
#: view:profile.association.config.install_modules_wizard:0
msgid "Event Management"
msgstr "Gestión de eventos"
#. module: association
#: field:profile.association.config.install_modules_wizard,project_gtd:0
msgid "Getting Things Done"
msgstr "Conseguir Hacer el Trabajo"
#. module: association
#: model:ir.module.module,description:association.module_meta_information
msgid "This module is to create Profile for Associates"
msgstr "Este módulo sirve para crear perfiles para asociados"
#. module: association
#: constraint:ir.model:0
msgid ""
@ -45,41 +25,11 @@ msgstr ""
"¡El nombre del objeto debe empezar con x_ y no contener ningún carácter "
"especial!"
#. module: association
#: field:profile.association.config.install_modules_wizard,progress:0
msgid "Configuration Progress"
msgstr "Proceso configuración"
#. module: association
#: view:profile.association.config.install_modules_wizard:0
msgid "title"
msgstr "título"
#. module: association
#: help:profile.association.config.install_modules_wizard,event_project:0
msgid "Helps you to manage and organize your events."
msgstr "Le ayuda a gestionar y organizar sus eventos."
#. module: association
#: field:profile.association.config.install_modules_wizard,config_logo:0
msgid "Image"
msgstr "Imagen"
#. module: association
#: help:profile.association.config.install_modules_wizard,hr_expense:0
msgid ""
"Tracks and manages employee expenses, and can automatically re-invoice "
"clients if the expenses are project-related."
msgstr ""
"Controla y gestiona los gastos de los empleados y puede re-facturarlos a los "
"clientes de forma automática si los gastos están relacionados con un "
"proyecto."
#. module: association
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr "¡XML inválido para la definición de la vista!"
#. module: association
#: help:profile.association.config.install_modules_wizard,project_gtd:0
msgid ""
@ -91,15 +41,75 @@ msgstr ""
"principio GTD con la gestión de proyectos de OpenERP."
#. module: association
#: model:ir.module.module,shortdesc:association.module_meta_information
msgid "Association profile"
msgstr "Perfil asociación"
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: association
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr "Nombre de modelo no válido en la definición de acción."
#. module: association
#: view:profile.association.config.install_modules_wizard:0
msgid "Resources Management"
msgstr "Gestión de recursos"
#. module: association
#: field:profile.association.config.install_modules_wizard,event_project:0
msgid "Events"
msgstr "Eventos"
#. module: association
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: association
#: view:profile.association.config.install_modules_wizard:0
msgid "Event Management"
msgstr "Gestión de eventos"
#. module: association
#: field:profile.association.config.install_modules_wizard,progress:0
msgid "Configuration Progress"
msgstr "Proceso configuración"
#. module: association
#: view:profile.association.config.install_modules_wizard:0
msgid "title"
msgstr "título"
#. module: association
#: help:profile.association.config.install_modules_wizard,hr_expense:0
msgid ""
"Tracks and manages employee expenses, and can automatically re-invoice "
"clients if the expenses are project-related."
msgstr ""
"Controla y gestiona los gastos de los empleados y puede re-facturarlos a los "
"clientes de forma automática si los gastos están relacionados con un "
"proyecto."
#. module: association
#: model:ir.module.module,shortdesc:association.module_meta_information
msgid "Association profile"
msgstr "Perfil asociación"
#. module: association
#: model:ir.module.module,description:association.module_meta_information
msgid "This module is to create Profile for Associates"
msgstr "Este módulo sirve para crear perfiles para asociados"
#. module: association
#: model:ir.model,name:association.model_profile_association_config_install_modules_wizard
msgid "profile.association.config.install_modules_wizard"
msgstr "perfil.asociacion.config.asistente_instal_modulos"
#. module: association
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr "¡XML inválido para la definición de la vista!"
#. module: association
#: field:profile.association.config.install_modules_wizard,hr_expense:0
msgid "Expenses Tracking"
@ -107,17 +117,19 @@ msgstr "Seguimiento de gastos"
#. module: association
#: view:profile.association.config.install_modules_wizard:0
msgid "Resources Management"
msgstr "Gestión de recursos"
#: field:profile.association.config.install_modules_wizard,project:0
msgid "Project Management"
msgstr "Gestión de proyectos"
#. module: association
#: help:profile.association.config.install_modules_wizard,wiki:0
msgid ""
"Lets you create wiki pages and page groups in order to keep track of "
"business knowledge and share it with and between your employees."
msgstr ""
"Le permite crear páginas wiki y grupos de páginas para no perder de vista el "
"conocimiento del negocio y compartirlo con y entre sus empleados."
#: field:profile.association.config.install_modules_wizard,wiki:0
msgid "Wiki"
msgstr "Wiki"
#. module: association
#: field:profile.association.config.install_modules_wizard,project_gtd:0
msgid "Getting Things Done"
msgstr "Conseguir Hacer el Trabajo"
#. module: association
#: help:profile.association.config.install_modules_wizard,project:0
@ -129,20 +141,23 @@ msgstr ""
"mismos, generando planificaciones, ..."
#. module: association
#: model:ir.model,name:association.model_profile_association_config_install_modules_wizard
msgid "profile.association.config.install_modules_wizard"
msgstr "perfil.asociacion.config.asistente_instal_modulos"
#: field:profile.association.config.install_modules_wizard,config_logo:0
msgid "Image"
msgstr "Imagen"
#. module: association
#: field:profile.association.config.install_modules_wizard,event_project:0
msgid "Events"
msgstr "Eventos"
#: help:profile.association.config.install_modules_wizard,wiki:0
msgid ""
"Lets you create wiki pages and page groups in order to keep track of "
"business knowledge and share it with and between your employees."
msgstr ""
"Le permite crear páginas wiki y grupos de páginas para no perder de vista el "
"conocimiento del negocio y compartirlo con y entre sus empleados."
#. module: association
#: view:profile.association.config.install_modules_wizard:0
#: field:profile.association.config.install_modules_wizard,project:0
msgid "Project Management"
msgstr "Gestión de proyectos"
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#~ msgid "Relationship Management"
#~ msgstr "Gestión de relaciones"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:08+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:08+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:26+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:26+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -218,6 +218,11 @@ msgstr ""
msgid "Total Price"
msgstr ""
#. module: auction
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: auction
#: constraint:hr.attendance:0
msgid "Error: Sign in (resp. Sign out) must follow Sign out (resp. Sign in)"
@ -381,6 +386,11 @@ msgstr ""
msgid "June"
msgstr ""
#. module: auction
#: sql_constraint:res.groups:0
msgid "The name of the group must be unique !"
msgstr ""
#. module: auction
#: constraint:hr.employee:0
msgid "Error ! You cannot create recursive Hierarchy of Employees."
@ -426,12 +436,6 @@ msgstr ""
msgid "Make Invoice for Buyer"
msgstr ""
#. module: auction
#: code:addons/auction/wizard/auction_lots_invoice.py:0
#, python-format
msgid "Two different buyers for the same invoice !\nPlease correct this problem before invoicing"
msgstr ""
#. module: auction
#: field:auction.lots,gross_revenue:0
#: field:report.object.encoded,gross_revenue:0
@ -691,6 +695,11 @@ msgstr ""
msgid "Draft"
msgstr ""
#. module: auction
#: sql_constraint:account.account:0
msgid "The code of the account must be unique per company !"
msgstr ""
#. module: auction
#: help:auction.lots,state:0
msgid " * The 'Draft' state is used when a object is encoding as a new object. \n"
@ -1281,6 +1290,11 @@ msgstr ""
msgid "Priority"
msgstr ""
#. module: auction
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: auction
#: view:board.board:0
msgid "Latest objects"
@ -1564,6 +1578,13 @@ msgstr ""
msgid "Auction manager "
msgstr ""
#. module: auction
#: code:addons/auction/wizard/auction_lots_invoice.py:0
#, python-format
msgid "Two different buyers for the same invoice !\n"
"Please correct this problem before invoicing"
msgstr ""
#. module: auction
#: view:auction.dates:0
msgid "Invoice"
@ -2127,6 +2148,11 @@ msgstr ""
msgid "Object encoded"
msgstr ""
#. module: auction
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: auction
#: view:auction.bid:0
msgid "Search Auction Bid"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:08+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:08+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:26+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:26+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -35,6 +35,11 @@ msgstr ""
msgid "Subscribed"
msgstr ""
#. module: audittrail
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: audittrail
#: model:ir.model,name:audittrail.model_audittrail_rule
msgid "Audittrail Rule"
@ -43,9 +48,15 @@ msgstr ""
#. module: audittrail
#: view:audittrail.view.log:0
#: model:ir.actions.act_window,name:audittrail.action_audittrail_log_tree
#: model:ir.ui.menu,name:audittrail.menu_action_audittrail_log_tree
msgid "Audit Logs"
msgstr ""
#. module: audittrail
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: audittrail
#: field:audittrail.rule,state:0
msgid "State"
@ -218,15 +229,6 @@ msgstr ""
msgid "Log lines"
msgstr ""
#. module: audittrail
#: code:addons/audittrail/audittrail.py:0
#, python-format
msgid "'%s' Model does not exist...\" %(model))\n"
" model = model_pool.browse(cr, uid, model_id)\n"
"\n"
" if method in ('create"
msgstr ""
#. module: audittrail
#: field:audittrail.log.line,field_id:0
msgid "Fields"
@ -268,6 +270,11 @@ msgstr ""
msgid "WARNING: audittrail is not part of the pool"
msgstr ""
#. module: audittrail
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: audittrail
#: field:audittrail.rule,log_unlink:0
msgid "Log Deletes"
@ -278,28 +285,6 @@ msgstr ""
msgid "Field Description"
msgstr ""
#. module: audittrail
#: code:addons/audittrail/audittrail.py:0
#, python-format
msgid "'%s' field does not exist in '%s' model\" %(field_name, model.model))\n"
"\n"
" field = field_pool.read(cr, uid, field_id)\n"
" relation_model = field['relation']\n"
" relation_model_pool = relation_model and pool.get(relation_model) or False\n"
"\n"
" if field['ttype'] == 'many2one':\n"
" res = False\n"
" relation_id = False\n"
" if values and type(values) == tuple:\n"
" relation_id = values[0]\n"
" if relation_id and relation_model_pool:\n"
" relation_model_object = relation_model_pool.read(cr, uid, relation_id, [relation_model_pool._rec_name])\n"
" res = relation_model_object[relation_model_pool._rec_name]\n"
" return res\n"
"\n"
" elif field['ttype'] in ('many2many','one2many"
msgstr ""
#. module: audittrail
#: field:audittrail.rule,log_write:0
msgid "Log Writes"
@ -320,21 +305,11 @@ msgstr ""
msgid "Rule Name"
msgstr ""
#. module: audittrail
#: model:ir.ui.menu,name:audittrail.menu_action_audittrail_log_tree
msgid "Logs"
msgstr ""
#. module: audittrail
#: field:audittrail.log.line,new_value:0
msgid "New Value"
msgstr ""
#. module: audittrail
#: model:ir.model,name:audittrail.model_audittrail_log_line
msgid "Log Line"
msgstr ""
#. module: audittrail
#: view:audittrail.log:0
msgid "AuditTrail Logs"
@ -360,6 +335,12 @@ msgstr ""
msgid "New Value : "
msgstr ""
#. module: audittrail
#: sql_constraint:audittrail.rule:0
msgid "There is a rule defined on this object\n"
" You can not define other on the same!"
msgstr ""
#. module: audittrail
#: field:audittrail.log.line,old_value_text:0
msgid "Old value Text"
@ -376,53 +357,8 @@ msgid "View Log"
msgstr ""
#. module: audittrail
#: code:addons/audittrail/audittrail.py:0
#, python-format
msgid "'%s' field does not exist in '%s' model\" %(line['name'], model.model))\n"
"\n"
" field = field_pool.read(cr, uid, field_id)\n"
" old_value = 'old_value' in line and line['old_value'] or ''\n"
" new_value = 'new_value' in line and line['new_value'] or ''\n"
" old_value_text = 'old_value_text' in line and line['old_value_text'] or ''\n"
" new_value_text = 'new_value_text' in line and line['new_value_text'] or ''\n"
"\n"
" if old_value_text == new_value_text:\n"
" continue\n"
" if field['ttype'] == 'many2one':\n"
" if type(old_value) == tuple:\n"
" old_value = old_value[0]\n"
" if type(new_value) == tuple:\n"
" new_value = new_value[0]\n"
" vals = {\n"
" \"log_id\": log_id,\n"
" \"field_id\": field_id,\n"
" \"old_value\": old_value,\n"
" \"new_value\": new_value,\n"
" \"old_value_text\": old_value_text,\n"
" \"new_value_text\": new_value_text,\n"
" \"field_description\": field['field_description']\n"
" }\n"
" line_id = log_line_pool.create(cr, uid, vals)\n"
" #End Loop\n"
" return True\n"
"\n"
"\n"
" def log_fct(self, db, uid, model, method, fct_src, *args):\n"
" \"\"\"\n"
" Logging function: This function is performs logging oprations according to method\n"
" @param db: the current database\n"
" @param uid: the current users ID for security checks,\n"
" @param object: Object who's values are being changed\n"
" @param method: method to log: create, read, write, unlink\n"
" @param fct_src: execute method of Object proxy\n"
"\n"
" @return: Returns result as per method of Object proxy\n"
" \"\"\"\n"
" res2 = args\n"
" pool = pooler.get_pool(db)\n"
" cr = pooler.get_db(db).cursor()\n"
" resource_pool = pool.get(model)\n"
" log_pool = pool.get('audittrail.log"
#: model:ir.model,name:audittrail.model_audittrail_log_line
msgid "Log Line"
msgstr ""
#. module: audittrail

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:15+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:15+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:42+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:42+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -106,6 +106,11 @@ msgstr ""
msgid "Check this if you want the rule to send a reminder by email to the partner."
msgstr ""
#. module: base_action_rule
#: model:ir.actions.act_window,help:base_action_rule.base_action_rule_act
msgid "Create actions automatically triggered based on a user activity in the system.E.g.: an opportunity created by a specific user can be automatically maintained with a specific sales team, or an opportunity which still has status pending after 14 days triggers an automatic reminder email."
msgstr ""
#. module: base_action_rule
#: view:base.action.rule:0
msgid "Conditions on Model Partner"
@ -136,6 +141,11 @@ msgstr ""
msgid "Special Keywords to Be Used in The Body"
msgstr ""
#. module: base_action_rule
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_action_rule
#: field:base.action.rule,trg_state_from:0
msgid "State"
@ -146,6 +156,11 @@ msgstr ""
msgid "Email-id of the persons whom mail is to be sent"
msgstr ""
#. module: base_action_rule
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_action_rule
#: view:base.action.rule:0
#: model:ir.module.module,shortdesc:base_action_rule.module_meta_information
@ -346,6 +361,11 @@ msgstr ""
msgid "Email Actions"
msgstr ""
#. module: base_action_rule
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: base_action_rule
#: view:base.action.rule:0
msgid "Email Information"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:16+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:16+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:44+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:44+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -180,8 +180,8 @@ msgid "Indicats whether the favor of a reply is requested"
msgstr ""
#. module: base_calendar
#: model:ir.model,name:base_calendar.model_ir_attachment
msgid "ir.attachment"
#: field:calendar.alarm,alarm_id:0
msgid "Basic Alarm"
msgstr ""
#. module: base_calendar
@ -214,6 +214,11 @@ msgstr ""
msgid "Tue"
msgstr ""
#. module: base_calendar
#: model:ir.model,name:base_calendar.model_ir_attachment
msgid "ir.attachment"
msgstr ""
#. module: base_calendar
#: selection:base.calendar.set.exrule,freq:0
#: selection:calendar.event,rrule_type:0
@ -221,12 +226,6 @@ msgstr ""
msgid "Yearly"
msgstr ""
#. module: base_calendar
#: selection:calendar.alarm,trigger_related:0
#: selection:res.alarm,trigger_related:0
msgid "The event ends"
msgstr ""
#. module: base_calendar
#: selection:base.calendar.set.exrule,byday:0
#: selection:calendar.event,byday:0
@ -317,10 +316,9 @@ msgid "Secondly"
msgstr ""
#. module: base_calendar
#: field:calendar.alarm,event_date:0
#: field:calendar.attendee,event_date:0
#: view:calendar.event:0
msgid "Event Date"
#: selection:calendar.alarm,trigger_related:0
#: selection:res.alarm,trigger_related:0
msgid "The event ends"
msgstr ""
#. module: base_calendar
@ -462,6 +460,11 @@ msgstr ""
msgid "Reminder details"
msgstr ""
#. module: base_calendar
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_calendar
#: field:calendar.attendee,parent_ids:0
msgid "Delegrated From"
@ -499,6 +502,11 @@ msgstr ""
msgid "Event Detail"
msgstr ""
#. module: base_calendar
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_calendar
#: selection:calendar.alarm,state:0
msgid "Run"
@ -912,8 +920,10 @@ msgid "June"
msgstr ""
#. module: base_calendar
#: field:calendar.alarm,alarm_id:0
msgid "Basic Alarm"
#: field:calendar.alarm,event_date:0
#: field:calendar.attendee,event_date:0
#: view:calendar.event:0
msgid "Event Date"
msgstr ""
#. module: base_calendar
@ -1167,6 +1177,11 @@ msgstr ""
msgid "Tuesday"
msgstr ""
#. module: base_calendar
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: base_calendar
#: selection:calendar.alarm,action:0
msgid "Procedure"
@ -1266,9 +1281,8 @@ msgid "Month"
msgstr ""
#. module: base_calendar
#: view:base_calendar.invite.attendee:0
#: view:calendar.event:0
msgid "Invite People"
#: selection:base_calendar.invite.attendee,type:0
msgid "External Email"
msgstr ""
#. module: base_calendar
@ -1327,6 +1341,12 @@ msgstr ""
msgid "ir.values"
msgstr ""
#. module: base_calendar
#: view:base_calendar.invite.attendee:0
#: view:calendar.event:0
msgid "Invite People"
msgstr ""
#. module: base_calendar
#: model:ir.model,name:base_calendar.model_ir_model
msgid "Objects"
@ -1543,8 +1563,8 @@ msgid "Duration"
msgstr ""
#. module: base_calendar
#: selection:base_calendar.invite.attendee,type:0
msgid "External Email"
#: model:ir.actions.act_window,help:base_calendar.action_res_alarm_view
msgid "Create specific calendar alarms that can be assigned to calendar events or meetings."
msgstr ""
#. module: base_calendar

View File

@ -6,15 +6,15 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 16:37+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 09:24+0000\n"
"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) "
"<maxime.chambreuil@savoirfairelinux.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-11-17 04:52+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base_calendar
@ -186,9 +186,9 @@ msgid "Indicats whether the favor of a reply is requested"
msgstr "Indique si une réponse est souhaitée"
#. module: base_calendar
#: model:ir.model,name:base_calendar.model_ir_attachment
msgid "ir.attachment"
msgstr ""
#: field:calendar.alarm,alarm_id:0
msgid "Basic Alarm"
msgstr "Alarme simple"
#. module: base_calendar
#: help:calendar.attendee,delegated_to:0
@ -220,6 +220,11 @@ msgstr ""
msgid "Tue"
msgstr "Mar"
#. module: base_calendar
#: model:ir.model,name:base_calendar.model_ir_attachment
msgid "ir.attachment"
msgstr ""
#. module: base_calendar
#: selection:base.calendar.set.exrule,freq:0
#: selection:calendar.event,rrule_type:0
@ -227,12 +232,6 @@ msgstr "Mar"
msgid "Yearly"
msgstr "Annuellement"
#. module: base_calendar
#: selection:calendar.alarm,trigger_related:0
#: selection:res.alarm,trigger_related:0
msgid "The event ends"
msgstr ""
#. module: base_calendar
#: selection:base.calendar.set.exrule,byday:0
#: selection:calendar.event,byday:0
@ -323,11 +322,10 @@ msgid "Secondly"
msgstr "Deuxièmement"
#. module: base_calendar
#: field:calendar.alarm,event_date:0
#: field:calendar.attendee,event_date:0
#: view:calendar.event:0
msgid "Event Date"
msgstr "Date de l'événement"
#: selection:calendar.alarm,trigger_related:0
#: selection:res.alarm,trigger_related:0
msgid "The event ends"
msgstr ""
#. module: base_calendar
#: view:calendar.attendee:0
@ -468,6 +466,11 @@ msgstr ""
msgid "Reminder details"
msgstr "Détails du rappel"
#. module: base_calendar
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_calendar
#: field:calendar.attendee,parent_ids:0
msgid "Delegrated From"
@ -505,6 +508,11 @@ msgstr "Courriel"
msgid "Event Detail"
msgstr "Détail de l'évènement"
#. module: base_calendar
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_calendar
#: selection:calendar.alarm,state:0
msgid "Run"
@ -923,9 +931,11 @@ msgid "June"
msgstr "Juin"
#. module: base_calendar
#: field:calendar.alarm,alarm_id:0
msgid "Basic Alarm"
msgstr "Alarme simple"
#: field:calendar.alarm,event_date:0
#: field:calendar.attendee,event_date:0
#: view:calendar.event:0
msgid "Event Date"
msgstr "Date de l'événement"
#. module: base_calendar
#: view:base.calendar.set.exrule:0
@ -1182,6 +1192,11 @@ msgstr ""
msgid "Tuesday"
msgstr "Mardi"
#. module: base_calendar
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: base_calendar
#: selection:calendar.alarm,action:0
msgid "Procedure"
@ -1287,9 +1302,8 @@ msgid "Month"
msgstr "Mois"
#. module: base_calendar
#: view:base_calendar.invite.attendee:0
#: view:calendar.event:0
msgid "Invite People"
#: selection:base_calendar.invite.attendee,type:0
msgid "External Email"
msgstr ""
#. module: base_calendar
@ -1350,6 +1364,12 @@ msgstr "Arrêter"
msgid "ir.values"
msgstr ""
#. module: base_calendar
#: view:base_calendar.invite.attendee:0
#: view:calendar.event:0
msgid "Invite People"
msgstr ""
#. module: base_calendar
#: model:ir.model,name:base_calendar.model_ir_model
msgid "Objects"
@ -1570,8 +1590,10 @@ msgid "Duration"
msgstr ""
#. module: base_calendar
#: selection:base_calendar.invite.attendee,type:0
msgid "External Email"
#: model:ir.actions.act_window,help:base_calendar.action_res_alarm_view
msgid ""
"Create specific calendar alarms that can be assigned to calendar events or "
"meetings."
msgstr ""
#. module: base_calendar

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:16+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:16+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:44+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:44+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -118,11 +118,21 @@ msgstr ""
msgid "Partner Function"
msgstr ""
#. module: base_contact
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_contact
#: field:res.partner.job,state:0
msgid "State"
msgstr ""
#. module: base_contact
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_contact
#: model:ir.module.module,shortdesc:base_contact.module_meta_information
#: model:process.process,name:base_contact.process_process_basecontactprocess0
@ -369,6 +379,11 @@ msgstr ""
msgid "Photo"
msgstr ""
#. module: base_contact
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: base_contact
#: field:res.partner.contact,birthdate:0
msgid "Birth Date"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:17+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:17+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:45+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:45+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: base_iban
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_iban
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
@ -66,6 +71,11 @@ msgstr ""
msgid "iban"
msgstr ""
#. module: base_iban
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_iban
#: code:addons/base_iban/base_iban.py:0
#, python-format
@ -82,6 +92,11 @@ msgstr ""
msgid "IBAN Account"
msgstr ""
#. module: base_iban
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: base_iban
#: model:res.partner.bank.type.field,name:base_iban.bank_acc_number_field
msgid "acc_number"

View File

@ -6,16 +6,21 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-08-03 03:37+0000\n"
"Last-Translator: mga (Open ERP) <Unknown>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 03:27+0000\n"
"Last-Translator: Alexsandro Haag <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: 2010-10-30 05:10+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base_iban
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_iban
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
@ -24,13 +29,15 @@ msgstr "Invalido XML para Arquitetura da View"
#. module: base_iban
#: model:ir.module.module,shortdesc:base_iban.module_meta_information
msgid "Create IBAN bank accounts"
msgstr ""
msgstr "Criar contas bancárias IBAN"
#. module: base_iban
#: constraint:ir.model:0
msgid ""
"The Object name must start with x_ and not contain any special character !"
msgstr ""
"O nome do objeto precisa iniciar com x_ e não pode conter nenhum caracter "
"especial!"
#. module: base_iban
#: code:addons/base_iban/base_iban.py:0
@ -39,6 +46,7 @@ msgid ""
"The IBAN does not seems to be correct. You should have entered something "
"like this %s"
msgstr ""
"O IBAN não parece estar correto. Você precisaria informar algo assim %s"
#. module: base_iban
#: model:res.partner.bank.type.field,name:base_iban.bank_zip_field
@ -53,7 +61,7 @@ msgstr "Número Internacional do Conta Corrente"
#. module: base_iban
#: model:ir.model,name:base_iban.model_res_partner_bank
msgid "Bank Accounts"
msgstr ""
msgstr "Contas Bancárias"
#. module: base_iban
#: model:res.partner.bank.type.field,name:base_iban.bank_country_field
@ -70,11 +78,16 @@ msgstr "Código SWIFT (bic)"
msgid "iban"
msgstr "Banco Internacional"
#. module: base_iban
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_iban
#: code:addons/base_iban/base_iban.py:0
#, python-format
msgid "The IBAN is invalid, It should begin with the country code"
msgstr ""
msgstr "O IBAN é inválido, pois deveria iniciar com um código de país"
#. module: base_iban
#: field:res.partner.bank,iban:0
@ -86,6 +99,11 @@ msgstr "Banco Internacional"
msgid "IBAN Account"
msgstr "Conta no Banco Internacional"
#. module: base_iban
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: base_iban
#: model:res.partner.bank.type.field,name:base_iban.bank_acc_number_field
msgid "acc_number"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:17+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:17+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:45+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:45+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: base_module_doc_rst
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_module_doc_rst
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
@ -60,6 +65,11 @@ msgstr ""
msgid "Create RST Technical Guide"
msgstr ""
#. module: base_module_doc_rst
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_module_doc_rst
#: model:ir.actions.wizard,name:base_module_doc_rst.wiz_gen_graph
msgid "Generate Relationship Graph"
@ -72,6 +82,11 @@ msgstr ""
msgid "Relationship Graph"
msgstr ""
#. module: base_module_doc_rst
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: base_module_doc_rst
#: wizard_field:tech.guide.rst,init,rst_file:0
msgid "file"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:17+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:17+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:46+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:46+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -22,12 +22,6 @@ msgstr ""
msgid "Suggestion"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/speed_test/speed_test.py:0
#, python-format
msgid "<html>O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is mostly wished.\n</html>"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/base_module_quality.py:0
#, python-format
@ -46,11 +40,17 @@ msgid "Base module quality - To check the quality of other modules"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/structure_test/structure_test.py:0
#: code:addons/base_module_quality/object_test/object_test.py:0
#, python-format
msgid "\"\"\n"
"This test checks if the module satisfy tiny structure\n"
"\"\""
msgid "\n"
"Test checks for fields, views, security rules, dependancy level\n"
""
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/speed_test/speed_test.py:0
#, python-format
msgid "O(n) or worst"
msgstr ""
#. module: base_module_quality
@ -59,12 +59,9 @@ msgid "Skipped"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/speed_test/speed_test.py:0
#: code:addons/base_module_quality/method_test/method_test.py:0
#, python-format
msgid "\"\"\n"
"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n"
"\n"
"\"\""
msgid "Module has no objects"
msgstr ""
#. module: base_module_quality
@ -114,14 +111,6 @@ msgstr ""
msgid "Result of dependancy in %"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/method_test/method_test.py:0
#, python-format
msgid "\"\"\n"
"This test checks if the module classes are raising exception when calling basic methods or not.\n"
"\"\""
msgstr ""
#. module: base_module_quality
#: help:module.quality.detail,state:0
msgid "The test will be completed only if the module is installed or if the test may be processed on uninstalled module."
@ -134,11 +123,9 @@ msgid "Result (/10)"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/object_test/object_test.py:0
#: code:addons/base_module_quality/terp_test/terp_test.py:0
#, python-format
msgid "\"\"\n"
"Test checks for fields, views, security rules, dependancy level\n"
"\"\""
msgid "Terp Test"
msgstr ""
#. module: base_module_quality
@ -180,12 +167,6 @@ msgstr ""
msgid "Warning"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/structure_test/structure_test.py:0
#, python-format
msgid "Feedback about structure of module"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/unit_test/unit_test.py:0
#, python-format
@ -205,12 +186,8 @@ msgid "Result of pep8_test in %"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/unit_test/unit_test.py:0
#, python-format
msgid "\"\"\n"
"This test checks the Unit Test(PyUnit) Cases of the module. Note that 'unit_test/test.py' is needed in module.\n"
"\n"
"\"\""
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_module_quality
@ -241,11 +218,8 @@ msgid "Some tests are more critical than others, so they have a bigger weight in
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/pep8_test/pep8_test.py:0
#, python-format
msgid "\"\"\n"
"PEP-8 Test , copyright of py files check, method can not call from loops\n"
"\"\""
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_module_quality
@ -282,12 +256,6 @@ msgstr ""
msgid "Invalid XML for View Architecture!"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/speed_test/speed_test.py:0
#, python-format
msgid "O(n) or worst"
msgstr ""
#. module: base_module_quality
#: wizard_field:quality_detail_save,init,module_file:0
msgid "Save report"
@ -299,12 +267,6 @@ msgstr ""
msgid "This test checks where object has workflow or not on it if there is a state field and several buttons on it and also checks validity of workflow xml file"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/method_test/method_test.py:0
#, python-format
msgid "Module has no objects"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/structure_test/structure_test.py:0
#, python-format
@ -346,6 +308,13 @@ msgstr ""
msgid "Note"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/speed_test/speed_test.py:0
#, python-format
msgid "<html>O(1) means that the number of SQL requests to read the object does not depand on the number of objects we are reading. This feature is mostly wished.\n"
"</html>"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/terp_test/terp_test.py:0
#, python-format
@ -364,12 +333,29 @@ msgstr ""
msgid "Tests"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/speed_test/speed_test.py:0
#, python-format
msgid "\n"
"This test checks the speed of the module. Note that at least 5 demo data is needed in order to run it.\n"
"\n"
""
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/pylint_test/pylint_test.py:0
#, python-format
msgid "Unable to parse the result. Check the details."
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/structure_test/structure_test.py:0
#, python-format
msgid "\n"
"This test checks if the module satisfy tiny structure\n"
""
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/structure_test/structure_test.py:0
#: code:addons/base_module_quality/workflow_test/workflow_test.py:0
@ -413,12 +399,6 @@ msgstr ""
msgid "Test Is Not Implemented"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/pylint_test/pylint_test.py:0
#, python-format
msgid "\"\"This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n \"\""
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/speed_test/speed_test.py:0
#, python-format
@ -431,9 +411,9 @@ msgid "Report Save"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/workflow_test/workflow_test.py:0
#: code:addons/base_module_quality/structure_test/structure_test.py:0
#, python-format
msgid "Feed back About Workflow of Module"
msgid "Feedback about structure of module"
msgstr ""
#. module: base_module_quality
@ -442,6 +422,19 @@ msgstr ""
msgid "Given module has no objects.Speed test can work only when new objects are created in the module along with demo data"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/pylint_test/pylint_test.py:0
#, python-format
msgid "This test uses Pylint and checks if the module satisfies the coding standard of Python. See http://www.logilab.org/project/name/pylint for further info.\n"
" "
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/workflow_test/workflow_test.py:0
#, python-format
msgid "Feed back About Workflow of Module"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/workflow_test/workflow_test.py:0
#, python-format
@ -458,6 +451,11 @@ msgstr ""
msgid "Cancel"
msgstr ""
#. module: base_module_quality
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: base_module_quality
#: field:module.quality.check,final_score:0
msgid "Final Score (%)"
@ -491,6 +489,23 @@ msgstr ""
msgid "Workflow Test"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/unit_test/unit_test.py:0
#, python-format
msgid "\n"
"This test checks the Unit Test(PyUnit) Cases of the module. Note that 'unit_test/test.py' is needed in module.\n"
"\n"
""
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/method_test/method_test.py:0
#, python-format
msgid "\n"
"This test checks if the module classes are raising exception when calling basic methods or not.\n"
""
msgstr ""
#. module: base_module_quality
#: field:module.quality.detail,detail:0
msgid "Details"
@ -537,6 +552,23 @@ msgstr ""
msgid "File name"
msgstr ""
#. module: base_module_quality
#: model:ir.module.module,description:base_module_quality.module_meta_information
msgid "\n"
"The aim of this module is to check the quality of other modules.\n"
"\n"
"It defines a wizard on the list of modules in OpenERP, which allows you to\n"
"evaluate them on different criteria such as: the respect of OpenERP coding\n"
"standards, the speed efficiency...\n"
"\n"
"This module also provides generic framework to define your own quality test.\n"
"For further info, coders may take a look into base_module_quality\\README.txt\n"
"\n"
"WARNING: This module can not work as a ZIP file, you must unzip it before\n"
"using it, otherwise it may crash.\n"
" "
msgstr ""
#. module: base_module_quality
#: model:ir.model,name:base_module_quality.model_module_quality_check
msgid "module.quality.check"
@ -609,12 +641,6 @@ msgstr ""
msgid "Structure Test"
msgstr ""
#. module: base_module_quality
#: code:addons/base_module_quality/terp_test/terp_test.py:0
#, python-format
msgid "Terp Test"
msgstr ""
#. module: base_module_quality
#: field:module.quality.detail,quality_check_id:0
msgid "Quality"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:18+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:18+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:46+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:46+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -73,6 +73,11 @@ msgstr ""
msgid "Filename"
msgstr ""
#. module: base_module_record
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_module_record
#: wizard_field:base_module_record.module_record_objects,info,version:0
msgid "Version"
@ -102,6 +107,11 @@ msgstr ""
msgid "The Object name must start with x_ and not contain any special character !"
msgstr ""
#. module: base_module_record
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_module_record
#: wizard_view:base_module_record.module_record_data,end:0
#: wizard_view:base_module_record.module_record_objects,end:0

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:18+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:18+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:47+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:47+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -151,6 +151,11 @@ msgstr ""
msgid "Report Type"
msgstr ""
#. module: base_report_creator
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_report_creator
#: view:base_report_creator.report:0
msgid "Add filter"
@ -231,6 +236,11 @@ msgstr ""
msgid "AND"
msgstr ""
#. module: base_report_creator
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_report_creator
#: field:base_report_creator.report.fields,calendar_mode:0
msgid "Calendar Mode"
@ -369,6 +379,11 @@ msgstr ""
msgid "Cancel"
msgstr ""
#. module: base_report_creator
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: base_report_creator
#: constraint:ir.model:0
msgid "The Object name must start with x_ and not contain any special character !"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:18+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:18+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:47+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:47+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -40,6 +40,11 @@ msgstr ""
msgid "Invalid XML for View Architecture!"
msgstr ""
#. module: base_report_designer
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_report_designer
#: view:base.report.file.sxw:0
msgid "The .SXW report"
@ -80,6 +85,11 @@ msgstr ""
msgid "title"
msgstr ""
#. module: base_report_designer
#: sql_constraint:res.groups:0
msgid "The name of the group must be unique !"
msgstr ""
#. module: base_report_designer
#: field:base.report.file.sxw,report_id:0
#: field:base.report.sxw,report_id:0
@ -92,13 +102,13 @@ msgid "base.report.rml.save"
msgstr ""
#. module: base_report_designer
#: model:ir.ui.menu,name:base_report_designer.menu_action_report_designer_wizard
msgid "Report Designer"
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_report_designer
#: view:base.report.file.sxw:0
msgid "This is the template of your requested report.\nSave it as a .SXW file and open it with OpenOffice.\nDon't forget to install the OpenERP SA OpenOffice package to modify it.\nOnce it is modified, re-upload it in OpenERP using this wizard."
#: model:ir.ui.menu,name:base_report_designer.menu_action_report_designer_wizard
msgid "Report Designer"
msgstr ""
#. module: base_report_designer
@ -158,6 +168,14 @@ msgstr ""
msgid "Configuration Progress"
msgstr ""
#. module: base_report_designer
#: view:base.report.file.sxw:0
msgid "This is the template of your requested report.\n"
"Save it as a .SXW file and open it with OpenOffice.\n"
"Don't forget to install the OpenERP SA OpenOffice package to modify it.\n"
"Once it is modified, re-upload it in OpenERP using this wizard."
msgstr ""
#. module: base_report_designer
#: view:base_report_designer.installer:0
msgid "Skip"
@ -183,6 +201,11 @@ msgstr ""
msgid "OpenObject Report Designer Plug-in"
msgstr ""
#. module: base_report_designer
#: model:ir.model,name:base_report_designer.model_ir_actions_report_xml
msgid "ir.actions.report.xml"
msgstr ""
#. module: base_report_designer
#: model:ir.actions.act_window,name:base_report_designer.action_report_designer_installer
msgid "OpenERP Report Designer Installation"
@ -196,8 +219,8 @@ msgid "Cancel"
msgstr ""
#. module: base_report_designer
#: model:ir.model,name:base_report_designer.model_ir_actions_report_xml
msgid "ir.actions.report.xml"
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: base_report_designer

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:19+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:19+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:48+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:48+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -45,6 +45,11 @@ msgstr ""
msgid "E-mail"
msgstr ""
#. module: base_setup
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_setup
#: field:base.setup.company,account_no:0
msgid "Bank Account No"
@ -91,8 +96,10 @@ msgid "Helps you handle your accounting needs, if you are not an accountant, we
msgstr ""
#. module: base_setup
#: view:base.setup.config:0
msgid "You can start configuring the system or connect directly to the database as an administrator."
#: code:addons/base_setup/__init__.py:0
#, python-format
msgid "The following users have been installed : \n"
""
msgstr ""
#. module: base_setup
@ -137,6 +144,11 @@ msgstr ""
msgid "Lets you install various interesting but non-essential tools like Survey, Lunch and Ideas box."
msgstr ""
#. module: base_setup
#: view:base.setup.config:0
msgid "You can start configuring the system or connect directly to the database as an administrator."
msgstr ""
#. module: base_setup
#: field:base.setup.installer,report_designer:0
msgid "Advanced Reporting"
@ -158,13 +170,13 @@ msgid "title"
msgstr ""
#. module: base_setup
#: view:base.setup.config:0
msgid "Use Directly"
#: field:base.setup.installer,knowledge:0
msgid "Knowledge Management"
msgstr ""
#. module: base_setup
#: field:base.setup.installer,knowledge:0
msgid "Knowledge Management"
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_setup
@ -182,6 +194,11 @@ msgstr ""
msgid "Helps you get the most out of your points of sales with fast sale encoding, simplified payment mode encoding, automatic picking lists generation and more."
msgstr ""
#. module: base_setup
#: view:base.setup.config:0
msgid "Skip Configuration Wizards"
msgstr ""
#. module: base_setup
#: help:base.setup.installer,hr:0
msgid "Helps you manage your human resources by encoding your employees structure, generating work sheets, tracking attendance and more."
@ -416,8 +433,7 @@ msgid "base.setup.config"
msgstr ""
#. module: base_setup
#: code:addons/base_setup/__init__.py:0
#, python-format
msgid "The following users have been installed : \n"
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""

View File

@ -6,20 +6,20 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-11 08:13+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 11:50+0000\n"
"Last-Translator: Douwe Wullink (Dypalio) <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: 2010-11-12 04:46+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base_setup
#: field:base.setup.company,city:0
msgid "City"
msgstr "Plaats"
msgstr "Woonplaats"
#. module: base_setup
#: constraint:ir.model:0
@ -48,10 +48,15 @@ msgstr "Bedrijfsnaam"
msgid "E-mail"
msgstr "E-mail"
#. module: base_setup
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_setup
#: field:base.setup.company,account_no:0
msgid "Bank Account No"
msgstr "Bank Rekening Nr"
msgstr "Bankrekening Nr"
#. module: base_setup
#: field:base.setup.installer,profile_tools:0
@ -102,13 +107,10 @@ msgstr ""
"om alleen de facturatie te installeren "
#. module: base_setup
#: view:base.setup.config:0
msgid ""
"You can start configuring the system or connect directly to the database as "
"an administrator."
msgstr ""
"U kunt beginnen met de configuratie van het systeem of direct verbinden met "
"de database als beheerder."
#: code:addons/base_setup/__init__.py:0
#, python-format
msgid "The following users have been installed : \n"
msgstr "De volgende gebruikers zijn geïnstalleerd: \n"
#. module: base_setup
#: field:base.setup.company,progress:0
@ -156,6 +158,15 @@ msgstr ""
"Laat u verschillende interessante maar niet-noodzakelijke hulpmiddelen zoals "
"enquête, lunch en ideeënbus installeren."
#. module: base_setup
#: view:base.setup.config:0
msgid ""
"You can start configuring the system or connect directly to the database as "
"an administrator."
msgstr ""
"U kunt beginnen met de configuratie van het systeem of direct verbinden met "
"de database als beheerder."
#. module: base_setup
#: field:base.setup.installer,report_designer:0
msgid "Advanced Reporting"
@ -176,16 +187,16 @@ msgstr "res_config_contents"
msgid "title"
msgstr "titel"
#. module: base_setup
#: view:base.setup.config:0
msgid "Use Directly"
msgstr "Direct Gebruiken"
#. module: base_setup
#: field:base.setup.installer,knowledge:0
msgid "Knowledge Management"
msgstr "Kennisbeheer"
#. module: base_setup
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_setup
#: help:base.setup.installer,product_expiry:0
msgid ""
@ -214,6 +225,11 @@ msgstr ""
"Helpt u het meeste te halen uit uw kassa's met snelle codering, eenvoudige "
"betaalmethode codering, automatische piklijst generatie en meer."
#. module: base_setup
#: view:base.setup.config:0
msgid "Skip Configuration Wizards"
msgstr ""
#. module: base_setup
#: help:base.setup.installer,hr:0
msgid ""
@ -499,10 +515,9 @@ msgid "base.setup.config"
msgstr "base.setup.config"
#. module: base_setup
#: code:addons/base_setup/__init__.py:0
#, python-format
msgid "The following users have been installed : \n"
msgstr "De volgende gebruikers zijn geïnstalleerd: \n"
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#~ msgid ""
#~ "You can start configuring the system or connect directly to the database "
@ -568,6 +583,9 @@ msgstr "De volgende gebruikers zijn geïnstalleerd: \n"
#~ msgid "Installation Done"
#~ msgstr "Installatie Gereed"
#~ msgid "Use Directly"
#~ msgstr "Direct Gebruiken"
#~ msgid "Cancel"
#~ msgstr "Annuleren"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:19+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:19+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:48+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:48+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -51,6 +51,11 @@ msgstr ""
msgid "Field Name"
msgstr ""
#. module: base_synchro
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_synchro
#: field:base.synchro.obj,synchronize_date:0
msgid "Latest Synchronization"
@ -72,8 +77,8 @@ msgid "_Close"
msgstr ""
#. module: base_synchro
#: view:base.synchro:0
msgid "Transfer Data To Server"
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_synchro
@ -198,7 +203,7 @@ msgstr ""
#. module: base_synchro
#: model:ir.actions.act_window,name:base_synchro.action_base_synchro_server_tree
#: model:ir.ui.menu,name:base_synchro.synchro_server_tree_menu_id
msgid "Synchronized Servers"
msgid "Servers to be synchronized"
msgstr ""
#. module: base_synchro
@ -223,6 +228,7 @@ msgstr ""
#. module: base_synchro
#: model:ir.ui.menu,name:base_synchro.next_id_62
#: model:ir.ui.menu,name:base_synchro.synch_config
msgid "Synchronization"
msgstr ""
@ -298,3 +304,13 @@ msgstr ""
msgid "Server URL"
msgstr ""
#. module: base_synchro
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: base_synchro
#: view:base.synchro:0
msgid "Transfer Data To Server"
msgstr ""

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:19+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:19+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:48+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:48+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: base_vat
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_vat
#: code:addons/base_vat/base_vat.py:0
#, python-format
@ -36,6 +41,16 @@ msgstr ""
msgid "Base VAT - To check VAT number validity"
msgstr ""
#. module: base_vat
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_vat
#: field:res.partner,vat_subjected:0
msgid "VAT Legal Statement"
msgstr ""
#. module: base_vat
#: code:addons/base_vat/base_vat.py:0
#, python-format
@ -53,7 +68,7 @@ msgid "Partner"
msgstr ""
#. module: base_vat
#: field:res.partner,vat_subjected:0
msgid "VAT Legal Statement"
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""

View File

@ -7,23 +7,28 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2009-09-08 16:21+0000\n"
"Last-Translator: Makis Nicolaou <mark.nicolaou@gmail.com>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 17:41+0000\n"
"Last-Translator: Dimitris Andavoglou <dimitrisand@gmail.com>\n"
"Language-Team: Greek <el@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: 2010-10-30 05:20+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: base_vat
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: base_vat
#: code:addons/base_vat/base_vat.py:0
#, python-format
msgid ""
"The Vat does not seems to be correct. You should have entered something like "
"this %s"
msgstr ""
msgstr "Το ΦΠΑ δεν φαίνεται να είναι σωστό.Θα πρέπει να εισάγετε κάτι σαν %s"
#. module: base_vat
#: constraint:ir.ui.view:0
@ -35,17 +40,30 @@ msgstr "Άκυρο XML για την αρχιτεκτονική όψης!"
msgid ""
"The Object name must start with x_ and not contain any special character !"
msgstr ""
"Το όνομα του Αντικειμένου πρέπει να ξεκινά με x_ και να μην περιέχει "
"ειδικούς χαρακτήρες!"
#. module: base_vat
#: model:ir.module.module,shortdesc:base_vat.module_meta_information
msgid "Base VAT - To check VAT number validity"
msgstr "Βασικό ΦΠΑ- Για έλεγχο εγκυρότητας ΦΠΑ"
#. module: base_vat
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: base_vat
#: field:res.partner,vat_subjected:0
msgid "VAT Legal Statement"
msgstr "Δήλωση ΦΠΑ"
#. module: base_vat
#: code:addons/base_vat/base_vat.py:0
#, python-format
msgid "The VAT is invalid, It should begin with the country code"
msgstr ""
"To ΦΠΑ δεν είναι έγκυρο, θα πρέπει να αρχίζει με τον κωδικό της χώρας"
#. module: base_vat
#: help:res.partner,vat_subjected:0
@ -57,12 +75,12 @@ msgstr ""
#. module: base_vat
#: model:ir.model,name:base_vat.model_res_partner
msgid "Partner"
msgstr ""
msgstr "Συνεργάτης"
#. module: base_vat
#: field:res.partner,vat_subjected:0
msgid "VAT Legal Statement"
msgstr "Δήλωση ΦΠΑ"
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#~ msgid "VAT"
#~ msgstr "ΦΠΑ"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:19+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:19+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:49+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:49+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -15,6 +15,11 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: board
#: view:res.log.report:0
msgid " Year "
msgstr ""
#. module: board
#: model:ir.model,name:board.model_board_menu_create
msgid "Menu Create"
@ -36,12 +41,22 @@ msgstr ""
msgid "Dashboard main module"
msgstr ""
#. module: board
#: view:res.users:0
msgid "Latest Connections"
msgstr ""
#. module: board
#: code:addons/board/wizard/board_menu_create.py:0
#, python-format
msgid "User Error!"
msgstr ""
#. module: board
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr ""
#. module: board
#: view:board.board:0
#: model:ir.actions.act_window,name:board.open_board_administration_form
@ -58,6 +73,7 @@ msgstr ""
#. module: board
#: view:board.note:0
#: view:res.log.report:0
msgid "Group By..."
msgstr ""
@ -71,6 +87,13 @@ msgstr ""
msgid "Error ! You can not create recursive Menu."
msgstr ""
#. module: board
#: view:board.board:0
#: model:ir.actions.act_window,name:board.board_weekly_res_log_report_action
#: view:res.log.report:0
msgid "Weekly Global Activity"
msgstr ""
#. module: board
#: field:board.board.line,name:0
msgid "Title"
@ -81,17 +104,71 @@ msgstr ""
msgid "The Object name must start with x_ and not contain any special character !"
msgstr ""
#. module: board
#: field:res.log.report,nbr:0
msgid "# of Entries"
msgstr ""
#. module: board
#: view:res.log.report:0
#: field:res.log.report,month:0
msgid "Month"
msgstr ""
#. module: board
#: model:ir.actions.act_window,name:board.dashboard_open
msgid "Open Dashboard"
msgstr ""
#. module: board
#: model:ir.model,name:board.model_board_note_type
msgid "NOte Type"
msgstr ""
#. module: board
#: view:board.board:0
#: model:ir.actions.act_window,name:board.board_monthly_res_log_report_action
#: view:res.log.report:0
msgid "Monthly Activity per Document"
msgstr ""
#. module: board
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: board
#: view:res.log.report:0
msgid "Log Analysis"
msgstr ""
#. module: board
#: model:ir.actions.act_window,name:board.action_view_board_list_form
#: model:ir.ui.menu,name:board.menu_view_board_form
msgid "Dashboard Definition"
msgstr ""
#. module: board
#: selection:res.log.report,month:0
msgid "March"
msgstr ""
#. module: board
#: selection:res.log.report,month:0
msgid "August"
msgstr ""
#. module: board
#: view:board.board:0
#: model:ir.actions.act_window,name:board.action_user_connection_tree
msgid "User Connections"
msgstr ""
#. module: board
#: field:res.log.report,creation_date:0
msgid "Creation Date"
msgstr ""
#. module: board
#: model:ir.actions.act_window,name:board.action_view_board_note_form
#: model:ir.ui.menu,name:board.menu_view_board_note_form
@ -104,10 +181,8 @@ msgid "Menu Information"
msgstr ""
#. module: board
#: view:board.board:0
#: model:ir.actions.act_window,name:board.action_user_connection_tree
#: view:res.users:0
msgid "Latest Connections"
#: selection:res.log.report,month:0
msgid "June"
msgstr ""
#. module: board
@ -120,6 +195,11 @@ msgstr ""
msgid "Action Views"
msgstr ""
#. module: board
#: model:ir.model,name:board.model_res_log_report
msgid "Log Report"
msgstr ""
#. module: board
#: view:board.note:0
#: field:board.note,date:0
@ -127,9 +207,19 @@ msgid "Date"
msgstr ""
#. module: board
#: view:board.note:0
#: field:board.note.type,name:0
msgid "Note Type"
#: selection:res.log.report,month:0
msgid "July"
msgstr ""
#. module: board
#: view:res.log.report:0
msgid "Extended Filters..."
msgstr ""
#. module: board
#: view:res.log.report:0
#: field:res.log.report,day:0
msgid "Day"
msgstr ""
#. module: board
@ -138,8 +228,13 @@ msgid "Create Menu For Dashboard"
msgstr ""
#. module: board
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
#: selection:res.log.report,month:0
msgid "February"
msgstr ""
#. module: board
#: selection:res.log.report,month:0
msgid "October"
msgstr ""
#. module: board
@ -152,20 +247,34 @@ msgstr ""
msgid "Parent Menu"
msgstr ""
#. module: board
#: selection:res.log.report,month:0
msgid "January"
msgstr ""
#. module: board
#: view:board.note:0
msgid "Notes"
msgstr ""
#. module: board
#: selection:res.log.report,month:0
msgid "November"
msgstr ""
#. module: board
#: help:board.board.line,sequence:0
msgid "Gives the sequence order when displaying a list of board lines."
msgstr ""
#. module: board
#: code:addons/board/wizard/board_menu_create.py:0
#, python-format
msgid "Please Insert Dashboard View(s) !"
#: selection:res.log.report,month:0
msgid "September"
msgstr ""
#. module: board
#: selection:res.log.report,month:0
msgid "April"
msgstr ""
#. module: board
@ -182,14 +291,19 @@ msgstr ""
msgid "Base module for all dashboards."
msgstr ""
#. module: board
#: field:board.board.line,action_id:0
msgid "Action"
msgstr ""
#. module: board
#: field:board.board.line,position:0
msgid "Position"
msgstr ""
#. module: board
#: model:ir.actions.act_window,name:board.dashboard_open
msgid "Open Dashboard"
#: view:res.log.report:0
msgid "Model"
msgstr ""
#. module: board
@ -203,6 +317,11 @@ msgstr ""
msgid "Latest Activities"
msgstr ""
#. module: board
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: board
#: selection:board.board.line,position:0
msgid "Left"
@ -223,11 +342,27 @@ msgstr ""
msgid "Width"
msgstr ""
#. module: board
#: view:res.log.report:0
msgid " Month "
msgstr ""
#. module: board
#: field:board.board.line,sequence:0
msgid "Sequence"
msgstr ""
#. module: board
#: view:board.note:0
#: field:board.note.type,name:0
msgid "Note Type"
msgstr ""
#. module: board
#: selection:res.log.report,month:0
msgid "December"
msgstr ""
#. module: board
#: view:board.board:0
#: view:board.menu.create:0
@ -244,6 +379,22 @@ msgstr ""
msgid "Create Board Menu"
msgstr ""
#. module: board
#: selection:res.log.report,month:0
msgid "May"
msgstr ""
#. module: board
#: field:res.log.report,res_model:0
msgid "Object"
msgstr ""
#. module: board
#: view:res.log.report:0
#: field:res.log.report,name:0
msgid "Year"
msgstr ""
#. module: board
#: view:board.menu.create:0
msgid "Cancel"
@ -254,6 +405,17 @@ msgstr ""
msgid "Dashboard View"
msgstr ""
#. module: board
#: code:addons/board/wizard/board_menu_create.py:0
#, python-format
msgid "Please Insert Dashboard View(s) !"
msgstr ""
#. module: board
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: board
#: view:board.note:0
#: field:board.note,name:0

View File

@ -770,8 +770,7 @@ class basic_calendar_line(osv.osv):
res = cr.fetchone()
if res:
if res[0] > 0:
raise osv.except_osv(_('Warning !'), _('Can not create \
line "%s" more than once' % (vals.get('name'))))
raise osv.except_osv(_('Warning !'), _('Can not create line "%s" more than once') % (vals.get('name')))
return super(basic_calendar_line, self).create(cr, uid, vals, context=context)
basic_calendar_line()
@ -859,7 +858,7 @@ class basic_calendar_fields(osv.osv):
line = line_obj.browse(cr, uid, l_id, context=context)[0]
line_rel = line.object_id.model
if (relation != 'NULL') and (not relation == line_rel):
raise osv.except_osv(_('Warning !'), _('Please provide proper configuration of "%s" in Calendar Lines' % (name)))
raise osv.except_osv(_('Warning !'), _('Please provide proper configuration of "%s" in Calendar Lines') % (name))
return True
def create(self, cr, uid, vals, context=None):

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:20+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:20+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:50+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:50+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -21,8 +21,133 @@ msgid "Value Mapping"
msgstr ""
#. module: caldav
#: constraint:ir.model:0
msgid "The Object name must start with x_ and not contain any special character !"
#: field:basic.calendar.alias,name:0
msgid "Filename"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_calendar_event_export
msgid "Event Export"
msgstr ""
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "Provide path for Remote Calendar"
msgstr ""
#. module: caldav
#: model:ir.actions.act_window,name:caldav.action_calendar_event_import
#: model:ir.actions.act_window,name:caldav.action_calendar_event_import_values
msgid "Import .ics File"
msgstr ""
#. module: caldav
#: view:calendar.event.export:0
msgid "_Close"
msgstr ""
#. module: caldav
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "Attendee"
msgstr ""
#. module: caldav
#: selection:basic.calendar,type:0
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "TODO"
msgstr ""
#. module: caldav
#: field:basic.calendar.lines,object_id:0
msgid "Object"
msgstr ""
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Expression as constant"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
#: view:calendar.event.subscribe:0
msgid "Ok"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Please provide proper configuration of \"%s\" in Calendar Lines"
msgstr ""
#. module: caldav
#: field:calendar.event.export,name:0
msgid "File name"
msgstr ""
#. module: caldav
#: code:addons/caldav/wizard/calendar_event_subscribe.py:0
#, python-format
msgid "Error!"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Warning !"
msgstr ""
#. module: caldav
#: view:calendar.event.export:0
msgid "Export ICS"
msgstr ""
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Use the field"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Can not create line \"%s\" more than once"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
#: field:basic.calendar,line_ids:0
#: model:ir.model,name:caldav.model_basic_calendar_lines
msgid "Calendar Lines"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_calendar_event_subscribe
msgid "Event subscribe"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
msgid "Import ICS"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
#: view:calendar.event.subscribe:0
msgid "_Cancel"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_event
msgid "basic.calendar.event"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
#: selection:basic.calendar,type:0
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "Event"
msgstr ""
#. module: caldav
@ -36,69 +161,8 @@ msgid "Error! You can not create recursive Directories."
msgstr ""
#. module: caldav
#: view:basic.calendar:0
msgid "Other Info"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_calendar_event_export
msgid "Event Export"
msgstr ""
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "Message..."
msgstr ""
#. module: caldav
#: field:basic.calendar.alias,name:0
msgid "Filename"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Warning !"
msgstr ""
#. module: caldav
#: field:basic.calendar,has_webcal:0
msgid "WebCal"
msgstr ""
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "_Subscribe"
msgstr ""
#. module: caldav
#: field:basic.calendar,collection_id:0
msgid "Collection"
msgstr ""
#. module: caldav
#: constraint:ir.ui.menu:0
msgid "Error ! You can not create recursive Menu."
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_attendee
msgid "basic.calendar.attendee"
msgstr ""
#. module: caldav
#: help:basic.calendar,has_webcal:0
msgid "Also export a <name>.ics entry next to the calendar folder, with WebCal content."
msgstr ""
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "Provide path for Remote Calendar"
msgstr ""
#. module: caldav
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: caldav
@ -110,19 +174,13 @@ msgid "Type"
msgstr ""
#. module: caldav
#: model:ir.actions.act_window,name:caldav.action_calendar_event_import
#: model:ir.actions.act_window,name:caldav.action_calendar_event_import_values
msgid "Import .ics File"
#: field:basic.calendar,description:0
msgid "description"
msgstr ""
#. module: caldav
#: field:basic.calendar.fields,field_id:0
msgid "OpenObject Field"
msgstr ""
#. module: caldav
#: field:basic.calendar.fields,fn:0
msgid "Function"
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: caldav
@ -130,208 +188,27 @@ msgstr ""
msgid "Save in .ics format"
msgstr ""
#. module: caldav
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "Attendee"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Error !"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
msgid "Description"
msgstr ""
#. module: caldav
#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe
#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe_values
msgid "Subscribe"
msgstr ""
#. module: caldav
#: selection:basic.calendar,type:0
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "TODO"
msgstr ""
#. module: caldav
#: help:basic.calendar.alias,cal_line_id:0
msgid "The calendar/line this mapping applies to"
msgstr ""
#. module: caldav
#: field:basic.calendar.lines,object_id:0
msgid "Object"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
#: field:document.directory,calendar_ids:0
#: model:ir.actions.act_window,name:caldav.action_caldav_form
#: model:ir.ui.menu,name:caldav.menu_caldav_directories
msgid "Calendars"
msgstr ""
#. module: caldav
#: field:basic.calendar.fields,mapping:0
msgid "Mapping"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_attributes
msgid "Calendar attributes"
msgstr ""
#. module: caldav
#: field:basic.calendar.alias,res_id:0
msgid "Res. ID"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
msgid "_Import"
msgstr ""
#. module: caldav
#: field:basic.calendar,write_date:0
msgid "Modifided Date"
msgstr ""
#. module: caldav
#: view:calendar.event.export:0
msgid "_Close"
msgstr ""
#. module: caldav
#: view:calendar.event.export:0
msgid "Export ICS"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_calendar_event_import
msgid "Event Import"
msgstr ""
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Expression as constant"
msgstr ""
#. module: caldav
#: field:calendar.event.export,name:0
msgid "File name"
msgstr ""
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "Subscribe to Remote Calendar"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Can not create \\n"
"line \"%s\" more than once' % (vals.get('name"
msgstr ""
#. module: caldav
#: help:basic.calendar,calendar_color:0
msgid "For supporting clients, the color of the calendar entries"
msgstr ""
#. module: caldav
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_alarm
msgid "basic.calendar.alarm"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
#: view:calendar.event.subscribe:0
msgid "Ok"
msgstr ""
#. module: caldav
#: field:basic.calendar,name:0
#: field:basic.calendar.attributes,name:0
#: field:basic.calendar.fields,name:0
msgid "Name"
msgstr ""
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Use the field"
msgstr ""
#. module: caldav
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "Alarm"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
#: view:calendar.event.subscribe:0
msgid "_Cancel"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Please provide proper configuration of \"%s\" in Calendar Lines' % (name)))\n"
" return True\n"
"\n"
" def create(self, cr, uid, vals, context=None):\n"
" \"\"\" Create Calendar's fields\n"
" @param self: The object pointer\n"
" @param cr: the current row, from the database cursor,\n"
" @param uid: the current users ID for security checks,\n"
" @param vals: Get Values\n"
" @param context: A standard dictionary for contextual values\n"
" \"\"\"\n"
"\n"
" cr.execute('SELECT name FROM basic_calendar_attributes \\n"
" WHERE id=%s', (vals.get('name"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Attendee must have an Email Id"
msgstr ""
#. module: caldav
#: field:basic.calendar,create_date:0
msgid "Created Date"
msgstr ""
#. module: caldav
#: code:addons/caldav/wizard/calendar_event_subscribe.py:0
#, python-format
msgid "Error!"
msgstr ""
#. module: caldav
#: model:ir.actions.act_window,name:caldav.action_calendar_event_export
#: model:ir.actions.act_window,name:caldav.action_calendar_event_export_values
msgid "Export .ics File"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_timezone
msgid "basic.calendar.timezone"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
msgid "Attributes Mapping"
@ -347,113 +224,11 @@ msgstr ""
msgid "Provide path for remote calendar"
msgstr ""
#. module: caldav
#: field:basic.calendar.fields,expr:0
msgid "Expression"
msgstr ""
#. module: caldav
#: field:basic.calendar,calendar_order:0
msgid "Order"
msgstr ""
#. module: caldav
#: view:document.directory:0
#: model:ir.actions.act_window,name:caldav.action_calendar_collection_form
#: model:ir.ui.menu,name:caldav.menu_calendar_collection
msgid "Calendar Collections"
msgstr ""
#. module: caldav
#: field:basic.calendar,description:0
msgid "description"
msgstr ""
#. module: caldav
#: code:addons/caldav/wizard/calendar_event_subscribe.py:0
#, python-format
msgid "Please provide Proper URL !"
msgstr ""
#. module: caldav
#: field:basic.calendar.lines,domain:0
msgid "Domain"
msgstr ""
#. module: caldav
#: model:ir.module.module,shortdesc:caldav.module_meta_information
msgid "Share Calendar using CalDAV"
msgstr ""
#. module: caldav
#: field:basic.calendar,calendar_color:0
msgid "Color"
msgstr ""
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Interval in hours"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_fields
msgid "Calendar fields"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "The same filename cannot apply to two records!"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
msgid "Import Message"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
#: field:basic.calendar,line_ids:0
#: model:ir.model,name:caldav.model_basic_calendar_lines
msgid "Calendar Lines"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_calendar_event_subscribe
msgid "Event subscribe"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_alias
msgid "basic.calendar.alias"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
#: field:calendar.event.import,file_path:0
msgid "Select ICS file"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
msgid "Import ICS"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_event
msgid "basic.calendar.event"
msgstr ""
#. module: caldav
#: field:calendar.event.export,file_path:0
msgid "Save ICS file"
msgstr ""
#. module: caldav
#: field:basic.calendar.lines,mapping_ids:0
msgid "Fields Mapping"
msgstr ""
#. module: caldav
#: field:basic.calendar,user_id:0
msgid "Owner"
@ -467,6 +242,271 @@ msgstr ""
msgid "Calendar"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
msgid "Todo"
msgstr ""
#. module: caldav
#: field:basic.calendar.fields,field_id:0
msgid "OpenObject Field"
msgstr ""
#. module: caldav
#: field:basic.calendar.alias,res_id:0
msgid "Res. ID"
msgstr ""
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "Message..."
msgstr ""
#. module: caldav
#: constraint:ir.ui.menu:0
msgid "Error ! You can not create recursive Menu."
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar
msgid "basic.calendar"
msgstr ""
#. module: caldav
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr ""
#. module: caldav
#: view:basic.calendar:0
#: field:basic.calendar,has_webcal:0
msgid "WebCal"
msgstr ""
#. module: caldav
#: view:document.directory:0
#: model:ir.actions.act_window,name:caldav.action_calendar_collection_form
#: model:ir.ui.menu,name:caldav.menu_calendar_collection
msgid "Calendar Collections"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "The same filename cannot apply to two records!"
msgstr ""
#. module: caldav
#: sql_constraint:document.directory:0
msgid "Directory cannot be parent of itself!"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
#: field:document.directory,calendar_ids:0
#: model:ir.actions.act_window,name:caldav.action_caldav_form
#: model:ir.ui.menu,name:caldav.menu_caldav_directories
msgid "Calendars"
msgstr ""
#. module: caldav
#: field:basic.calendar,collection_id:0
msgid "Collection"
msgstr ""
#. module: caldav
#: sql_constraint:document.directory:0
msgid "The directory name must be unique !"
msgstr ""
#. module: caldav
#: code:addons/caldav/wizard/calendar_event_subscribe.py:0
#, python-format
msgid "Please provide Proper URL !"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_timezone
msgid "basic.calendar.timezone"
msgstr ""
#. module: caldav
#: field:basic.calendar.fields,expr:0
msgid "Expression"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_attendee
msgid "basic.calendar.attendee"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_alias
msgid "basic.calendar.alias"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
#: field:calendar.event.import,file_path:0
msgid "Select ICS file"
msgstr ""
#. module: caldav
#: field:basic.calendar.lines,mapping_ids:0
msgid "Fields Mapping"
msgstr ""
#. module: caldav
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: caldav
#: constraint:ir.model:0
msgid "The Object name must start with x_ and not contain any special character !"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
msgid "Other Info"
msgstr ""
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "_Subscribe"
msgstr ""
#. module: caldav
#: help:basic.calendar,has_webcal:0
msgid "Also export a <name>.ics entry next to the calendar folder, with WebCal content."
msgstr ""
#. module: caldav
#: field:basic.calendar.fields,fn:0
msgid "Function"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
msgid "Description"
msgstr ""
#. module: caldav
#: help:basic.calendar.alias,cal_line_id:0
msgid "The calendar/line this mapping applies to"
msgstr ""
#. module: caldav
#: field:basic.calendar.fields,mapping:0
msgid "Mapping"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
msgid "_Import"
msgstr ""
#. module: caldav
#: field:basic.calendar,write_date:0
msgid "Modifided Date"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_calendar_event_import
msgid "Event Import"
msgstr ""
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Interval in hours"
msgstr ""
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "Subscribe to Remote Calendar"
msgstr ""
#. module: caldav
#: help:basic.calendar,calendar_color:0
msgid "For supporting clients, the color of the calendar entries"
msgstr ""
#. module: caldav
#: field:basic.calendar,name:0
#: field:basic.calendar.attributes,name:0
#: field:basic.calendar.fields,name:0
msgid "Name"
msgstr ""
#. module: caldav
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "Alarm"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_alarm
msgid "basic.calendar.alarm"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Attendee must have an Email Id"
msgstr ""
#. module: caldav
#: model:ir.actions.act_window,name:caldav.action_calendar_event_export
#: model:ir.actions.act_window,name:caldav.action_calendar_event_export_values
msgid "Export .ics File"
msgstr ""
#. module: caldav
#: field:calendar.event.export,file_path:0
msgid "Save ICS file"
msgstr ""
#. module: caldav
#: field:basic.calendar,calendar_order:0
msgid "Order"
msgstr ""
#. module: caldav
#: model:ir.module.module,shortdesc:caldav.module_meta_information
msgid "Share Calendar using CalDAV"
msgstr ""
#. module: caldav
#: field:basic.calendar,calendar_color:0
msgid "Color"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
msgid "MY"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_fields
msgid "Calendar fields"
msgstr ""
#. module: caldav
#: view:calendar.event.import:0
msgid "Import Message"
msgstr ""
#. module: caldav
#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe
#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe_values
msgid "Subscribe"
msgstr ""
#. module: caldav
#: sql_constraint:document.directory:0
msgid "Directory must have a parent or a storage"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_todo
msgid "basic.calendar.todo"
@ -477,15 +517,3 @@ msgstr ""
msgid "For supporting clients, the order of this folder among the calendars"
msgstr ""
#. module: caldav
#: selection:basic.calendar,type:0
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "Event"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar
msgid "basic.calendar"
msgstr ""

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 19:54+0000\n"
"Last-Translator: Douwe Wullink (Dypalio) <Unknown>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 08:27+0000\n"
"Last-Translator: OpenERP Administrators <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: 2010-11-17 04:52+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: caldav
@ -23,11 +23,134 @@ msgid "Value Mapping"
msgstr "Waarde verdeling"
#. module: caldav
#: constraint:ir.model:0
msgid ""
"The Object name must start with x_ and not contain any special character !"
#: field:basic.calendar.alias,name:0
msgid "Filename"
msgstr "Bestandsnaam"
#. module: caldav
#: model:ir.model,name:caldav.model_calendar_event_export
msgid "Event Export"
msgstr "Gebeurtenis exporteren"
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "Provide path for Remote Calendar"
msgstr "Vul het pad naar de remote agenda in"
#. module: caldav
#: model:ir.actions.act_window,name:caldav.action_calendar_event_import
#: model:ir.actions.act_window,name:caldav.action_calendar_event_import_values
msgid "Import .ics File"
msgstr "Importeren .ics bestand"
#. module: caldav
#: view:calendar.event.export:0
msgid "_Close"
msgstr "_Sluiten"
#. module: caldav
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "Attendee"
msgstr "Deelnemer"
#. module: caldav
#: selection:basic.calendar,type:0
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "TODO"
msgstr "TE DOEN"
#. module: caldav
#: field:basic.calendar.lines,object_id:0
msgid "Object"
msgstr "Object"
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Expression as constant"
msgstr "Expressie als constante"
#. module: caldav
#: view:calendar.event.import:0
#: view:calendar.event.subscribe:0
msgid "Ok"
msgstr "Ok"
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Please provide proper configuration of \"%s\" in Calendar Lines"
msgstr ""
"De objectnaam moet beginnen met x_ en mag geen speciale tekens bevatten!"
#. module: caldav
#: field:calendar.event.export,name:0
msgid "File name"
msgstr "Bestandsnaam"
#. module: caldav
#: code:addons/caldav/wizard/calendar_event_subscribe.py:0
#, python-format
msgid "Error!"
msgstr "Fout!"
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Warning !"
msgstr "Waarschuwing !"
#. module: caldav
#: view:calendar.event.export:0
msgid "Export ICS"
msgstr "ICS exporteren"
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Use the field"
msgstr "Het veld gebruiken"
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Can not create line \"%s\" more than once"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
#: field:basic.calendar,line_ids:0
#: model:ir.model,name:caldav.model_basic_calendar_lines
msgid "Calendar Lines"
msgstr "Agendaregels"
#. module: caldav
#: model:ir.model,name:caldav.model_calendar_event_subscribe
msgid "Event subscribe"
msgstr "Gebeurtenis inschrijven"
#. module: caldav
#: view:calendar.event.import:0
msgid "Import ICS"
msgstr "ICS importeren"
#. module: caldav
#: view:calendar.event.import:0
#: view:calendar.event.subscribe:0
msgid "_Cancel"
msgstr "_Annuleren"
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_event
msgid "basic.calendar.event"
msgstr "basic.calendar.event"
#. module: caldav
#: view:basic.calendar:0
#: selection:basic.calendar,type:0
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "Event"
msgstr "Gebeurtenis"
#. module: caldav
#: field:document.directory,calendar_collection:0
@ -40,73 +163,9 @@ msgid "Error! You can not create recursive Directories."
msgstr "Fout ! U kunt geen recursieve mappen maken."
#. module: caldav
#: view:basic.calendar:0
msgid "Other Info"
msgstr "Overige info"
#. module: caldav
#: model:ir.model,name:caldav.model_calendar_event_export
msgid "Event Export"
msgstr "Gebeurtenis exporteren"
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "Message..."
msgstr "Bericht..."
#. module: caldav
#: field:basic.calendar.alias,name:0
msgid "Filename"
msgstr "Bestandsnaam"
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Warning !"
msgstr "Waarschuwing !"
#. module: caldav
#: field:basic.calendar,has_webcal:0
msgid "WebCal"
msgstr "WebCal"
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "_Subscribe"
msgstr "_Inschrijven"
#. module: caldav
#: field:basic.calendar,collection_id:0
msgid "Collection"
msgstr "Agendamap"
#. module: caldav
#: constraint:ir.ui.menu:0
msgid "Error ! You can not create recursive Menu."
msgstr "Fout ! U kunt geen recursief menu maken."
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_attendee
msgid "basic.calendar.attendee"
msgstr "basic.calendar.attendee"
#. module: caldav
#: help:basic.calendar,has_webcal:0
msgid ""
"Also export a <name>.ics entry next to the calendar folder, with WebCal "
"content."
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
"Ook een <naam>.ics bestand naar de agendamap exporteren, met WebCal inhoud."
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "Provide path for Remote Calendar"
msgstr "Vul het pad naar de remote agenda in"
#. module: caldav
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr "Ongeldige modelnaam in actie definitie."
#. module: caldav
#: field:basic.calendar,type:0
@ -117,228 +176,41 @@ msgid "Type"
msgstr "Soort"
#. module: caldav
#: model:ir.actions.act_window,name:caldav.action_calendar_event_import
#: model:ir.actions.act_window,name:caldav.action_calendar_event_import_values
msgid "Import .ics File"
msgstr "Importeren .ics bestand"
#: field:basic.calendar,description:0
msgid "description"
msgstr "omschrijving"
#. module: caldav
#: field:basic.calendar.fields,field_id:0
msgid "OpenObject Field"
msgstr "OpenObject veld"
#. module: caldav
#: field:basic.calendar.fields,fn:0
msgid "Function"
msgstr "Functie"
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: caldav
#: help:calendar.event.export,name:0
msgid "Save in .ics format"
msgstr "Opslaan in .ics indeling"
#. module: caldav
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "Attendee"
msgstr "Deelnemer"
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Error !"
msgstr "Fout !"
#. module: caldav
#: view:basic.calendar:0
msgid "Description"
msgstr "Omschrijving"
#. module: caldav
#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe
#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe_values
msgid "Subscribe"
msgstr "Inschrijven"
#. module: caldav
#: selection:basic.calendar,type:0
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "TODO"
msgstr "TE DOEN"
#. module: caldav
#: help:basic.calendar.alias,cal_line_id:0
msgid "The calendar/line this mapping applies to"
msgstr "De agendaregel heeft betrekking op"
#. module: caldav
#: field:basic.calendar.lines,object_id:0
msgid "Object"
msgstr "Object"
#. module: caldav
#: view:basic.calendar:0
#: field:document.directory,calendar_ids:0
#: model:ir.actions.act_window,name:caldav.action_caldav_form
#: model:ir.ui.menu,name:caldav.menu_caldav_directories
msgid "Calendars"
msgstr "Agenda's"
#. module: caldav
#: field:basic.calendar.fields,mapping:0
msgid "Mapping"
msgstr "Verdeling"
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_attributes
msgid "Calendar attributes"
msgstr "Agenda kenmerken"
#. module: caldav
#: field:basic.calendar.alias,res_id:0
msgid "Res. ID"
msgstr "Res. ID"
#. module: caldav
#: view:calendar.event.import:0
msgid "_Import"
msgstr "_Importeren"
#. module: caldav
#: field:basic.calendar,write_date:0
msgid "Modifided Date"
msgstr "Datum gewijzigd"
#. module: caldav
#: view:calendar.event.export:0
msgid "_Close"
msgstr "_Sluiten"
#. module: caldav
#: view:calendar.event.export:0
msgid "Export ICS"
msgstr "ICS exporteren"
#. module: caldav
#: model:ir.model,name:caldav.model_calendar_event_import
msgid "Event Import"
msgstr "Gebeurtenis importeren"
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Expression as constant"
msgstr "Expressie als constante"
#. module: caldav
#: field:calendar.event.export,name:0
msgid "File name"
msgstr "Bestandsnaam"
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "Subscribe to Remote Calendar"
msgstr "Inschrijven op remote agenda"
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Can not create \\nline \"%s\" more than once' % (vals.get('name"
msgstr ""
#. module: caldav
#: help:basic.calendar,calendar_color:0
msgid "For supporting clients, the color of the calendar entries"
msgstr "Voor ondersteunde clients, de kleur van de agenda items"
#. module: caldav
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr "Ongeldige XML voor weergave opbouw!"
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_alarm
msgid "basic.calendar.alarm"
msgstr "basic.calendar.alarm"
#. module: caldav
#: view:calendar.event.import:0
#: view:calendar.event.subscribe:0
msgid "Ok"
msgstr "Ok"
#. module: caldav
#: field:basic.calendar,name:0
#: field:basic.calendar.attributes,name:0
#: field:basic.calendar.fields,name:0
msgid "Name"
msgstr "Naam"
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Use the field"
msgstr "Het veld gebruiken"
#. module: caldav
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "Alarm"
msgstr "Alarm"
#. module: caldav
#: view:calendar.event.import:0
#: view:calendar.event.subscribe:0
msgid "_Cancel"
msgstr "_Annuleren"
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid ""
"Please provide proper configuration of \"%s\" in Calendar Lines' % (name)))\n"
" return True\n"
"\n"
" def create(self, cr, uid, vals, context=None):\n"
" \"\"\" Create Calendar's fields\n"
" @param self: The object pointer\n"
" @param cr: the current row, from the database cursor,\n"
" @param uid: the current users ID for security checks,\n"
" @param vals: Get Values\n"
" @param context: A standard dictionary for contextual values\n"
" \"\"\"\n"
"\n"
" cr.execute('SELECT name FROM basic_calendar_attributes \\n "
" WHERE id=%s', (vals.get('name"
msgstr ""
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Attendee must have an Email Id"
msgstr "Deelnemer moet een emailadres hebben"
#. module: caldav
#: field:basic.calendar,create_date:0
msgid "Created Date"
msgstr "Datum gemaakt"
#. module: caldav
#: code:addons/caldav/wizard/calendar_event_subscribe.py:0
#, python-format
msgid "Error!"
msgstr "Fout!"
#. module: caldav
#: model:ir.actions.act_window,name:caldav.action_calendar_event_export
#: model:ir.actions.act_window,name:caldav.action_calendar_event_export_values
msgid "Export .ics File"
msgstr "Exporteren .ics bestand"
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_timezone
msgid "basic.calendar.timezone"
msgstr "basic.calendar.timezone"
#. module: caldav
#: view:basic.calendar:0
msgid "Attributes Mapping"
@ -354,113 +226,11 @@ msgstr "Map"
msgid "Provide path for remote calendar"
msgstr "Pad naar remote agenda invullen"
#. module: caldav
#: field:basic.calendar.fields,expr:0
msgid "Expression"
msgstr "Expressie"
#. module: caldav
#: field:basic.calendar,calendar_order:0
msgid "Order"
msgstr "Volgorde"
#. module: caldav
#: view:document.directory:0
#: model:ir.actions.act_window,name:caldav.action_calendar_collection_form
#: model:ir.ui.menu,name:caldav.menu_calendar_collection
msgid "Calendar Collections"
msgstr "Agenda mappen"
#. module: caldav
#: field:basic.calendar,description:0
msgid "description"
msgstr "omschrijving"
#. module: caldav
#: code:addons/caldav/wizard/calendar_event_subscribe.py:0
#, python-format
msgid "Please provide Proper URL !"
msgstr "Vul aub een correcte URL in !"
#. module: caldav
#: field:basic.calendar.lines,domain:0
msgid "Domain"
msgstr "Domein"
#. module: caldav
#: model:ir.module.module,shortdesc:caldav.module_meta_information
msgid "Share Calendar using CalDAV"
msgstr "Agenda delen middels CalDAV"
#. module: caldav
#: field:basic.calendar,calendar_color:0
msgid "Color"
msgstr "Kleur"
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Interval in hours"
msgstr "Interval in uren"
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_fields
msgid "Calendar fields"
msgstr "Agenda velden"
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "The same filename cannot apply to two records!"
msgstr "Dezelfde bestandsnaam kan niet gebruikt worden voor twee records!"
#. module: caldav
#: view:calendar.event.import:0
msgid "Import Message"
msgstr "Bericht importeren"
#. module: caldav
#: view:basic.calendar:0
#: field:basic.calendar,line_ids:0
#: model:ir.model,name:caldav.model_basic_calendar_lines
msgid "Calendar Lines"
msgstr "Agendaregels"
#. module: caldav
#: model:ir.model,name:caldav.model_calendar_event_subscribe
msgid "Event subscribe"
msgstr "Gebeurtenis inschrijven"
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_alias
msgid "basic.calendar.alias"
msgstr "basic.calendar.alias"
#. module: caldav
#: view:calendar.event.import:0
#: field:calendar.event.import,file_path:0
msgid "Select ICS file"
msgstr "ICS bestand selecteren"
#. module: caldav
#: view:calendar.event.import:0
msgid "Import ICS"
msgstr "ICS importeren"
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_event
msgid "basic.calendar.event"
msgstr "basic.calendar.event"
#. module: caldav
#: field:calendar.event.export,file_path:0
msgid "Save ICS file"
msgstr "ICS bestand opslaan"
#. module: caldav
#: field:basic.calendar.lines,mapping_ids:0
msgid "Fields Mapping"
msgstr "Velden verdeling"
#. module: caldav
#: field:basic.calendar,user_id:0
msgid "Owner"
@ -474,6 +244,276 @@ msgstr "Eigenaar"
msgid "Calendar"
msgstr "Agenda"
#. module: caldav
#: view:basic.calendar:0
msgid "Todo"
msgstr ""
#. module: caldav
#: field:basic.calendar.fields,field_id:0
msgid "OpenObject Field"
msgstr "OpenObject veld"
#. module: caldav
#: field:basic.calendar.alias,res_id:0
msgid "Res. ID"
msgstr "Res. ID"
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "Message..."
msgstr "Bericht..."
#. module: caldav
#: constraint:ir.ui.menu:0
msgid "Error ! You can not create recursive Menu."
msgstr "Fout ! U kunt geen recursief menu maken."
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar
msgid "basic.calendar"
msgstr "basic.calendar"
#. module: caldav
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr "Ongeldige modelnaam in actie definitie."
#. module: caldav
#: view:basic.calendar:0
#: field:basic.calendar,has_webcal:0
msgid "WebCal"
msgstr "WebCal"
#. module: caldav
#: view:document.directory:0
#: model:ir.actions.act_window,name:caldav.action_calendar_collection_form
#: model:ir.ui.menu,name:caldav.menu_calendar_collection
msgid "Calendar Collections"
msgstr "Agenda mappen"
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "The same filename cannot apply to two records!"
msgstr "Dezelfde bestandsnaam kan niet gebruikt worden voor twee records!"
#. module: caldav
#: sql_constraint:document.directory:0
msgid "Directory cannot be parent of itself!"
msgstr ""
#. module: caldav
#: view:basic.calendar:0
#: field:document.directory,calendar_ids:0
#: model:ir.actions.act_window,name:caldav.action_caldav_form
#: model:ir.ui.menu,name:caldav.menu_caldav_directories
msgid "Calendars"
msgstr "Agenda's"
#. module: caldav
#: field:basic.calendar,collection_id:0
msgid "Collection"
msgstr "Agendamap"
#. module: caldav
#: sql_constraint:document.directory:0
msgid "The directory name must be unique !"
msgstr ""
#. module: caldav
#: code:addons/caldav/wizard/calendar_event_subscribe.py:0
#, python-format
msgid "Please provide Proper URL !"
msgstr "Vul aub een correcte URL in !"
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_timezone
msgid "basic.calendar.timezone"
msgstr "basic.calendar.timezone"
#. module: caldav
#: field:basic.calendar.fields,expr:0
msgid "Expression"
msgstr "Expressie"
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_attendee
msgid "basic.calendar.attendee"
msgstr "basic.calendar.attendee"
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_alias
msgid "basic.calendar.alias"
msgstr "basic.calendar.alias"
#. module: caldav
#: view:calendar.event.import:0
#: field:calendar.event.import,file_path:0
msgid "Select ICS file"
msgstr "ICS bestand selecteren"
#. module: caldav
#: field:basic.calendar.lines,mapping_ids:0
msgid "Fields Mapping"
msgstr "Velden verdeling"
#. module: caldav
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: caldav
#: constraint:ir.model:0
msgid ""
"The Object name must start with x_ and not contain any special character !"
msgstr ""
"De objectnaam moet beginnen met x_ en mag geen speciale tekens bevatten!"
#. module: caldav
#: view:basic.calendar:0
msgid "Other Info"
msgstr "Overige info"
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "_Subscribe"
msgstr "_Inschrijven"
#. module: caldav
#: help:basic.calendar,has_webcal:0
msgid ""
"Also export a <name>.ics entry next to the calendar folder, with WebCal "
"content."
msgstr ""
"Ook een <naam>.ics bestand naar de agendamap exporteren, met WebCal inhoud."
#. module: caldav
#: field:basic.calendar.fields,fn:0
msgid "Function"
msgstr "Functie"
#. module: caldav
#: view:basic.calendar:0
msgid "Description"
msgstr "Omschrijving"
#. module: caldav
#: help:basic.calendar.alias,cal_line_id:0
msgid "The calendar/line this mapping applies to"
msgstr "De agendaregel heeft betrekking op"
#. module: caldav
#: field:basic.calendar.fields,mapping:0
msgid "Mapping"
msgstr "Verdeling"
#. module: caldav
#: view:calendar.event.import:0
msgid "_Import"
msgstr "_Importeren"
#. module: caldav
#: field:basic.calendar,write_date:0
msgid "Modifided Date"
msgstr "Datum gewijzigd"
#. module: caldav
#: model:ir.model,name:caldav.model_calendar_event_import
msgid "Event Import"
msgstr "Gebeurtenis importeren"
#. module: caldav
#: selection:basic.calendar.fields,fn:0
msgid "Interval in hours"
msgstr "Interval in uren"
#. module: caldav
#: view:calendar.event.subscribe:0
msgid "Subscribe to Remote Calendar"
msgstr "Inschrijven op remote agenda"
#. module: caldav
#: help:basic.calendar,calendar_color:0
msgid "For supporting clients, the color of the calendar entries"
msgstr "Voor ondersteunde clients, de kleur van de agenda items"
#. module: caldav
#: field:basic.calendar,name:0
#: field:basic.calendar.attributes,name:0
#: field:basic.calendar.fields,name:0
msgid "Name"
msgstr "Naam"
#. module: caldav
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "Alarm"
msgstr "Alarm"
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_alarm
msgid "basic.calendar.alarm"
msgstr "basic.calendar.alarm"
#. module: caldav
#: code:addons/caldav/calendar.py:0
#, python-format
msgid "Attendee must have an Email Id"
msgstr "Deelnemer moet een emailadres hebben"
#. module: caldav
#: model:ir.actions.act_window,name:caldav.action_calendar_event_export
#: model:ir.actions.act_window,name:caldav.action_calendar_event_export_values
msgid "Export .ics File"
msgstr "Exporteren .ics bestand"
#. module: caldav
#: field:calendar.event.export,file_path:0
msgid "Save ICS file"
msgstr "ICS bestand opslaan"
#. module: caldav
#: field:basic.calendar,calendar_order:0
msgid "Order"
msgstr "Volgorde"
#. module: caldav
#: model:ir.module.module,shortdesc:caldav.module_meta_information
msgid "Share Calendar using CalDAV"
msgstr "Agenda delen middels CalDAV"
#. module: caldav
#: field:basic.calendar,calendar_color:0
msgid "Color"
msgstr "Kleur"
#. module: caldav
#: view:basic.calendar:0
msgid "MY"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_fields
msgid "Calendar fields"
msgstr "Agenda velden"
#. module: caldav
#: view:calendar.event.import:0
msgid "Import Message"
msgstr "Bericht importeren"
#. module: caldav
#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe
#: model:ir.actions.act_window,name:caldav.action_calendar_event_subscribe_values
msgid "Subscribe"
msgstr "Inschrijven"
#. module: caldav
#: sql_constraint:document.directory:0
msgid "Directory must have a parent or a storage"
msgstr ""
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar_todo
msgid "basic.calendar.todo"
@ -484,15 +524,3 @@ msgstr "basic.calendar.todo"
msgid "For supporting clients, the order of this folder among the calendars"
msgstr ""
"Voor ondersteunende clients, de volgorde van deze map onder de agenda's"
#. module: caldav
#: selection:basic.calendar,type:0
#: selection:basic.calendar.attributes,type:0
#: selection:basic.calendar.lines,name:0
msgid "Event"
msgstr "Gebeurtenis"
#. module: caldav
#: model:ir.model,name:caldav.model_basic_calendar
msgid "basic.calendar"
msgstr "basic.calendar"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:20+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:20+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:50+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:50+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -16,8 +16,8 @@ msgstr ""
"Plural-Forms: \n"
#. module: claim_from_delivery
#: model:ir.model,name:claim_from_delivery.model_stock_picking
msgid "Picking List"
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: claim_from_delivery
@ -25,11 +25,6 @@ msgstr ""
msgid "The Object name must start with x_ and not contain any special character !"
msgstr ""
#. module: claim_from_delivery
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr ""
#. module: claim_from_delivery
#: model:ir.module.module,description:claim_from_delivery.module_meta_information
msgid "Create Claim from delivery order:\n"
@ -41,3 +36,18 @@ msgstr ""
msgid "Claim from delivery"
msgstr ""
#. module: claim_from_delivery
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: claim_from_delivery
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr ""
#. module: claim_from_delivery
#: model:ir.model,name:claim_from_delivery.model_stock_picking
msgid "Picking List"
msgstr ""

View File

@ -7,20 +7,20 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-10-25 07:14+0000\n"
"Last-Translator: Carlos-smile <Unknown>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 20:34+0000\n"
"Last-Translator: Carlos @ smile.fr <Unknown>\n"
"Language-Team: Spanish <es@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: 2010-10-30 05:53+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: claim_from_delivery
#: model:ir.model,name:claim_from_delivery.model_stock_picking
msgid "Picking List"
msgstr "Albarán"
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr "¡El ID del certificado del módulo debe ser único!"
#. module: claim_from_delivery
#: constraint:ir.model:0
@ -30,11 +30,6 @@ msgstr ""
"¡El nombre del objeto debe empezar con x_ y no contener ningún carácter "
"especial!"
#. module: claim_from_delivery
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr "Nombre de modelo no válido en la definición de la acción"
#. module: claim_from_delivery
#: model:ir.module.module,description:claim_from_delivery.module_meta_information
msgid "Create Claim from delivery order:\n"
@ -44,3 +39,18 @@ msgstr "Crear reclamación a partir de la orden de entrega\n"
#: model:ir.module.module,shortdesc:claim_from_delivery.module_meta_information
msgid "Claim from delivery"
msgstr "Reclamación desde la entrega"
#. module: claim_from_delivery
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr "¡El nombre del módulo debe ser único!"
#. module: claim_from_delivery
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr "Nombre de modelo no válido en la definición de la acción"
#. module: claim_from_delivery
#: model:ir.model,name:claim_from_delivery.model_stock_picking
msgid "Picking List"
msgstr "Albarán"

View File

@ -6,21 +6,21 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 16:40+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 07:57+0000\n"
"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) "
"<maxime.chambreuil@savoirfairelinux.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2010-11-17 04:52+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: claim_from_delivery
#: model:ir.model,name:claim_from_delivery.model_stock_picking
msgid "Picking List"
msgstr "Picking List"
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: claim_from_delivery
#: constraint:ir.model:0
@ -30,11 +30,6 @@ msgstr ""
"Le nom de l'objet doit commencer par x_ et ne doit contenir aucun caractère "
"spécial!"
#. module: claim_from_delivery
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr "Nom de modèle invalide dans la définition de l'action"
#. module: claim_from_delivery
#: model:ir.module.module,description:claim_from_delivery.module_meta_information
msgid "Create Claim from delivery order:\n"
@ -45,5 +40,20 @@ msgstr ""
msgid "Claim from delivery"
msgstr ""
#. module: claim_from_delivery
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: claim_from_delivery
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr "Nom de modèle invalide dans la définition de l'action"
#. module: claim_from_delivery
#: model:ir.model,name:claim_from_delivery.model_stock_picking
msgid "Picking List"
msgstr "Picking List"
#~ msgid "Partner"
#~ msgstr "Partner"

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:22+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:22+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:54+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:54+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -112,11 +112,6 @@ msgstr ""
msgid "Stage Name"
msgstr ""
#. module: crm
#: view:crm.phonecall.report:0
msgid "Cases"
msgstr ""
#. module: crm
#: view:crm.lead.report:0
#: field:crm.lead.report,day:0
@ -126,8 +121,14 @@ msgid "Day"
msgstr ""
#. module: crm
#: help:crm.segmentation,categ_id:0
msgid "The partner category that will be added to partners that match the segmentation criterions after computation."
#: sql_constraint:crm.case.section:0
msgid "The code of the sales team must be unique !"
msgstr ""
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Lead '%s' has been converted to an opportunity."
msgstr ""
#. module: crm
@ -258,6 +259,11 @@ msgstr ""
msgid "The opportunity '%s' has been marked as lost."
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.action_report_crm_lead
msgid "Leads Analysis allows you to check different CRM related information. Check for treatment delays, number of responses given and emails sent. You can sort out your leads analysis by different groups to get accurate grained analysis."
msgstr ""
#. module: crm
#: view:crm.lead:0
msgid "Send New Email"
@ -268,12 +274,6 @@ msgstr ""
msgid "Criteria"
msgstr ""
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "is converted to Opportunity."
msgstr ""
#. module: crm
#: view:crm.segmentation:0
msgid "Excluded Answers :"
@ -284,6 +284,11 @@ msgstr ""
msgid "Sections"
msgstr ""
#. module: crm
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: crm
#: view:crm.merge.opportunity:0
msgid "_Merge"
@ -312,6 +317,11 @@ msgstr ""
msgid "Campaigns"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action
msgid "Create specific phone call categories to better sort the type of calls tracked in the system."
msgstr ""
#. module: crm
#: model:ir.actions.act_window,name:crm.crm_lead_categ_action
#: model:ir.ui.menu,name:crm.menu_crm_case_phonecall-act
@ -519,6 +529,11 @@ msgstr ""
msgid "August"
msgstr ""
#. module: crm
#: field:crm.segmentation,sales_purchase_active:0
msgid "Use The Sales Purchase Rules"
msgstr ""
#. module: crm
#: code:addons/crm/crm.py:0
#: view:crm.lead:0
@ -630,6 +645,11 @@ msgstr ""
msgid "#Phone calls"
msgstr ""
#. module: crm
#: help:crm.segmentation,categ_id:0
msgid "The partner category that will be added to partners that match the segmentation criterions after computation."
msgstr ""
#. module: crm
#: view:crm.lead:0
msgid "Communication history"
@ -777,15 +797,13 @@ msgid "Search Phonecalls"
msgstr ""
#. module: crm
#: view:crm.lead2opportunity.partner:0
#: view:crm.lead2partner:0
#: view:crm.phonecall2partner:0
msgid "Continue"
#: model:ir.actions.act_window,help:crm.crm_lead_stage_act
msgid "Create specific stages that will help your sales better organise their sales pipeline by maintaining them to their leads and sales opportunities. It will allow them to easily track how is positioned a specific lead or opportunity in the sales cycle."
msgstr ""
#. module: crm
#: field:crm.partner2opportunity,name:0
msgid "Opportunity Name"
#: field:crm.segmentation,som_interval:0
msgid "Days per Periode"
msgstr ""
#. module: crm
@ -820,11 +838,6 @@ msgstr ""
msgid "The opportunity '%s' has been won."
msgstr ""
#. module: crm
#: help:crm.case.section,active:0
msgid "If the active field is set to true, it will allow you to hide the sales team without removing it."
msgstr ""
#. module: crm
#: help:crm.meeting,alarm_id:0
msgid "Set an alarm at this time, before the event occurs"
@ -1019,11 +1032,9 @@ msgid "Meetings"
msgstr ""
#. module: crm
#: field:crm.lead,date_action_next:0
#: field:crm.lead,title_action:0
#: field:crm.meeting,date_action_next:0
#: field:crm.phonecall,date_action_next:0
msgid "Next Action"
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Closed/Cancelled Leads Could not convert into Opportunity"
msgstr ""
#. module: crm
@ -1031,11 +1042,6 @@ msgstr ""
msgid "Repeat Until"
msgstr ""
#. module: crm
#: view:crm.meeting:0
msgid "Extended Options..."
msgstr ""
#. module: crm
#: field:crm.meeting,date_deadline:0
msgid "Deadline"
@ -1052,6 +1058,12 @@ msgstr ""
msgid "_Cancel"
msgstr ""
#. module: crm
#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:0
#, python-format
msgid "Closed/Cancelled Phone Call Could not convert into Opportunity"
msgstr ""
#. module: crm
#: view:crm.segmentation:0
msgid "Partner Segmentations"
@ -1072,6 +1084,11 @@ msgstr ""
msgid "Attendees"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all
msgid "'Leads' allows you to manage and keep track of all first potential interests of a partner in one of your products or services. A lead is a first, unqualified, contact with a prospect or customer. After being qualified, a lead can be converted into a business opportunity with the creation of the related partner for further detailed tracking of any linked activities. You can use leads when you import a database of prospects or to integrate your website's contact form with OpenERP."
msgstr ""
#. module: crm
#: view:crm.lead2opportunity.action:0
#: view:res.partner:0
@ -1172,11 +1189,13 @@ msgid "Tue"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:0
#: view:crm.case.stage:0
#: view:crm.lead:0
#: field:crm.lead,stage_id:0
#: view:crm.lead.report:0
#: field:crm.lead.report,stage_id:0
#, python-format
msgid "Stage"
msgstr ""
@ -1262,21 +1281,26 @@ msgstr ""
msgid "Duration in Minutes"
msgstr ""
#. module: crm
#: view:crm.lead2opportunity.partner:0
#: view:crm.lead2partner:0
#: view:crm.phonecall2partner:0
msgid "Continue"
msgstr ""
#. module: crm
#: help:crm.installer,crm_helpdesk:0
msgid "Manages a Helpdesk service."
msgstr ""
#. module: crm
#: field:crm.segmentation,som_interval:0
msgid "Days per Periode"
#: field:crm.partner2opportunity,name:0
msgid "Opportunity Name"
msgstr ""
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Closed/Cancelled \\n"
"Leads Could not convert into Opportunity"
#: help:crm.case.section,active:0
msgid "If the active field is set to true, it will allow you to hide the sales team without removing it."
msgstr ""
#. module: crm
@ -1368,13 +1392,14 @@ msgstr ""
#. module: crm
#: view:crm.lead:0
#: view:crm.lead.report:0
#: view:crm.meeting:0
#: view:crm.phonecall.report:0
msgid "Extended Filters..."
msgstr ""
#. module: crm
#: model:ir.model,name:crm.model_calendar_attendee
msgid "Attendee information"
#: field:crm.phonecall2opportunity,name:0
msgid "Opportunity Summary"
msgstr ""
#. module: crm
@ -1529,6 +1554,11 @@ msgstr ""
msgid "Unconfirmed"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.action_report_crm_opportunity
msgid "Opportunities Analysis gives you an instant access to your opportunities with information such as the expected revenue, planned cost, missed deadlines or the number of interactions per opportunity. This report is mainly used by the sales manager in order to do the periodic review with the teams of the sales pipeline."
msgstr ""
#. module: crm
#: field:crm.case.categ,name:0
#: field:crm.installer,name:0
@ -1539,14 +1569,14 @@ msgid "Name"
msgstr ""
#. module: crm
#: field:crm.meeting,alarm_id:0
#: field:crm.meeting,base_calendar_alarm_id:0
msgid "Alarm"
#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0
msgid "The Inbound Calls tool allows you to log your inbound calls on the fly. Each call you get will appear on the partner form for the traceability of every contact you get with a partner. From the call record, you can trigger a request for another call, a meeting or a business opportunity."
msgstr ""
#. module: crm
#: model:process.node,note:crm.process_node_meeting0
msgid "Schedule a normal or phone meeting"
#: field:crm.meeting,alarm_id:0
#: field:crm.meeting,base_calendar_alarm_id:0
msgid "Alarm"
msgstr ""
#. module: crm
@ -1594,6 +1624,11 @@ msgstr ""
msgid "High"
msgstr ""
#. module: crm
#: selection:crm.meeting,freq:0
msgid "Seconds"
msgstr ""
#. module: crm
#: model:process.node,note:crm.process_node_partner0
msgid "Convert to prospect to business partner"
@ -1769,6 +1804,11 @@ msgstr ""
msgid "Customer Name"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_categ_meet
msgid "The meeting calendar is shared between the sales teams and fully integrated with other applications such as the employee holidays or the business opportunities. You can also synchronize meetings with your mobile phone using the caldav interface."
msgstr ""
#. module: crm
#: model:ir.model,name:crm.model_crm_phonecall2opportunity
msgid "Phonecall To Opportunity"
@ -1875,8 +1915,8 @@ msgid "Priority"
msgstr ""
#. module: crm
#: field:crm.segmentation,sales_purchase_active:0
msgid "Use The Sales Purchase Rules"
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: crm
@ -1900,9 +1940,8 @@ msgid "Weeks"
msgstr ""
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Lead "
#: model:process.node,note:crm.process_node_meeting0
msgid "Schedule a normal or phone meeting"
msgstr ""
#. module: crm
@ -1912,8 +1951,8 @@ msgid "Error !"
msgstr ""
#. module: crm
#: selection:crm.meeting,freq:0
msgid "Seconds"
#: model:ir.actions.act_window,help:crm.crm_meeting_categ_action
msgid "Create different meeting categories to better organize and classify your meetings."
msgstr ""
#. module: crm
@ -2096,6 +2135,11 @@ msgstr ""
msgid "Internal Meeting"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_lead_categ_action
msgid "Create specific categories that fit your company's activities in order to better classify and analyse them after they have been maintained in your leads and opportunities. You can use categories to reflect your product structure or the different types of sales you do."
msgstr ""
#. module: crm
#: code:addons/crm/crm.py:0
#: selection:crm.add.note,state:0
@ -2116,6 +2160,11 @@ msgstr ""
msgid "Customer Meeting"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_section_act
msgid "Sales team allows you to organize your different salesmen or departments into separate teams. Each team will work in his own list of opportunities, sales orders, eso. Each user can set a team by default in his preferences. The opportunities and sales order he will see, will be automatically filtered according to his team."
msgstr ""
#. module: crm
#: view:crm.lead:0
#: field:crm.lead,email_cc:0
@ -2151,6 +2200,12 @@ msgstr ""
msgid "Active"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:0
#, python-format
msgid "The stage of opportunity '%s' has been changed to '%s'."
msgstr ""
#. module: crm
#: selection:crm.segmentation.line,operator:0
msgid "Mandatory Expression"
@ -2192,6 +2247,18 @@ msgstr ""
msgid "This may help associations in their fundraising process and tracking."
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_category_act_oppor11
msgid "Opportunities allows you to manage and keep track of your sales pipeline by creating specific customer or prospect related sales documents in order to follow up potential sales. Information such as the expected revenue, opportunity stage, expected closing date, communication history and so on can be maintained in them. Opportunities can be connected with the email gateway: new emails create opportunities, each of them automatically gets the history of the conversation with the customer.\n"
"\n"
"You and your team(s) will be able to plan meetings and phone calls from opportunities, convert them into quotations, manage related documents, track all customer related activities, and much more."
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_outgoing0
msgid "Outbound Calls lists all the calls to be performed by your sales team. They can record the information about the call on the form view. These information will appear on the partner form for the traceability of every contact you get with a customer. You can import a .CSV file with a list of calls to be done for your sales team."
msgstr ""
#. module: crm
#: field:crm.lead2opportunity.partner,action:0
#: field:crm.lead2partner,action:0
@ -2221,6 +2288,11 @@ msgstr ""
msgid "Weekly"
msgstr ""
#. module: crm
#: sql_constraint:ir.ui.view_sc:0
msgid "Shortcut for this menu already exists!"
msgstr ""
#. module: crm
#: view:crm.lead.report:0
#: model:ir.actions.act_window,name:crm.action_report_crm_opportunity
@ -2233,6 +2305,11 @@ msgstr ""
msgid "Misc"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_segmentation_tree-act
msgid "Create specific partner categories that you will then be able to assign to your partners to better manage your interactions with them. The segmentation tool will assign categories to partners based on defined criteria."
msgstr ""
#. module: crm
#: model:crm.case.categ,name:crm.categ_oppor8
#: view:crm.meeting:0
@ -2246,6 +2323,11 @@ msgstr ""
msgid "Done"
msgstr ""
#. module: crm
#: sql_constraint:ir.rule:0
msgid "Rule must have at least one checked access right !"
msgstr ""
#. module: crm
#: field:crm.segmentation,som_interval_max:0
msgid "Max Interval"
@ -2392,10 +2474,8 @@ msgid "The computation is made on all events that occured during this interval,
msgstr ""
#. module: crm
#: field:crm.lead,message_ids:0
#: field:crm.meeting,message_ids:0
#: field:crm.phonecall,message_ids:0
msgid "Messages"
#: view:board.board:0
msgid "My Win/Lost Ratio for the Last Year"
msgstr ""
#. module: crm
@ -2446,8 +2526,8 @@ msgid "Lead To Opportunity"
msgstr ""
#. module: crm
#: field:crm.phonecall2opportunity,name:0
msgid "Opportunity Summary"
#: model:ir.model,name:crm.model_calendar_attendee
msgid "Attendee information"
msgstr ""
#. module: crm
@ -2613,14 +2693,22 @@ msgstr ""
msgid "Add Internal Note"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:0
#, python-format
msgid "The stage of lead '%s' has been changed to '%s'."
msgstr ""
#. module: crm
#: selection:crm.meeting,byday:0
msgid "Last"
msgstr ""
#. module: crm
#: view:board.board:0
msgid "My Win/Lost Ratio for the Last Year"
#: field:crm.lead,message_ids:0
#: field:crm.meeting,message_ids:0
#: field:crm.phonecall,message_ids:0
msgid "Messages"
msgstr ""
#. module: crm
@ -2658,6 +2746,11 @@ msgstr ""
msgid "Note Body"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.action_view_attendee_form
msgid "'Meeting Invitations' allows you to create and manage the meeting invitations sent/to be sent to your colleagues/partners."
msgstr ""
#. module: crm
#: view:board.board:0
msgid "My Planned Revenues by Stage"
@ -2680,6 +2773,11 @@ msgstr ""
msgid "Links"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.action_report_crm_phonecall
msgid "From this report, you can analyse the performance of your sales team, based on their phone calls. You can group or filter the information according to several criteria and drill down the information, by adding more groups in the report."
msgstr ""
#. module: crm
#: help:crm.segmentation,som_interval_decrease:0
msgid "If the partner has not purchased (or bought) during a period, decrease the state of mind by this factor. It's a multiplication"
@ -2815,6 +2913,14 @@ msgstr ""
msgid "Schedule Call"
msgstr ""
#. module: crm
#: field:crm.lead,date_action_next:0
#: field:crm.lead,title_action:0
#: field:crm.meeting,date_action_next:0
#: field:crm.phonecall,date_action_next:0
msgid "Next Action"
msgstr ""
#. module: crm
#: view:crm.segmentation:0
msgid "Profiling"
@ -3258,6 +3364,11 @@ msgstr ""
msgid "Close"
msgstr ""
#. module: crm
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: crm
#: view:crm.lead:0
#: view:crm.phonecall:0
@ -3456,13 +3567,6 @@ msgstr ""
msgid "Negotiation"
msgstr ""
#. module: crm
#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:0
#, python-format
msgid "Closed/Cancelled Phone \\n"
"Call Could not convert into Opportunity"
msgstr ""
#. module: crm
#: view:crm.lead:0
msgid "Exp.Closing"

View File

@ -6,15 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 17:58+0000\n"
"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
"<jesteve@zikzakmedia.com>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 21:10+0000\n"
"Last-Translator: Carlos @ smile.fr <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: 2010-11-17 04:51+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: crm
@ -114,11 +113,6 @@ msgstr "¡No se puede añadir una nota!"
msgid "Stage Name"
msgstr "Nombre de etapa"
#. module: crm
#: view:crm.phonecall.report:0
msgid "Cases"
msgstr "Casos"
#. module: crm
#: view:crm.lead.report:0
#: field:crm.lead.report,day:0
@ -128,13 +122,15 @@ msgid "Day"
msgstr "Día"
#. module: crm
#: help:crm.segmentation,categ_id:0
msgid ""
"The partner category that will be added to partners that match the "
"segmentation criterions after computation."
msgstr ""
"La categoría de empresas que será añadida a las empresas que cumplan los "
"criterios de segmentación después del cálculo."
#: sql_constraint:crm.case.section:0
msgid "The code of the sales team must be unique !"
msgstr "¡El código del equipo de ventas debe ser único!"
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Lead '%s' has been converted to an opportunity."
msgstr "La inicaitiva '%s' ha sido convertida en oportunidad"
#. module: crm
#: code:addons/crm/crm_lead.py:0
@ -267,6 +263,15 @@ msgstr ""
msgid "The opportunity '%s' has been marked as lost."
msgstr "La oportunidad '%s' ha sido marcada como perdida."
#. module: crm
#: model:ir.actions.act_window,help:crm.action_report_crm_lead
msgid ""
"Leads Analysis allows you to check different CRM related information. Check "
"for treatment delays, number of responses given and emails sent. You can "
"sort out your leads analysis by different groups to get accurate grained "
"analysis."
msgstr ""
#. module: crm
#: view:crm.lead:0
msgid "Send New Email"
@ -277,12 +282,6 @@ msgstr "Enviar nuevo correo eléctronico"
msgid "Criteria"
msgstr "Criterios"
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "is converted to Opportunity."
msgstr "ha sido convertida a oportunidad"
#. module: crm
#: view:crm.segmentation:0
msgid "Excluded Answers :"
@ -293,6 +292,11 @@ msgstr "Respuestas excluidas:"
msgid "Sections"
msgstr "Secciones"
#. module: crm
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr "¡El ID del certificado del módulo debe ser único!"
#. module: crm
#: view:crm.merge.opportunity:0
msgid "_Merge"
@ -312,6 +316,9 @@ msgid ""
"communication history) will be merged with existing Opportunity of Selected "
"partner."
msgstr ""
"Si selecciona fusionar con oportunidad existente, los detalles de la "
"iniciativa (con el histórico de la comunicación) serán fusionados con la "
"oportunidad existente de la empresa seleccionada"
#. module: crm
#: selection:crm.meeting,class:0
@ -324,6 +331,15 @@ msgstr "Público"
msgid "Campaigns"
msgstr "Campañas"
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action
msgid ""
"Create specific phone call categories to better sort the type of calls "
"tracked in the system."
msgstr ""
"Cree categorías específicas de llamadas telefónicas para ordenar y trazar "
"mejor el tipo de llamadas en el sistema"
#. module: crm
#: model:ir.actions.act_window,name:crm.crm_lead_categ_action
#: model:ir.ui.menu,name:crm.menu_crm_case_phonecall-act
@ -413,7 +429,7 @@ msgstr "Iniciativas y oportunidades"
#. module: crm
#: view:crm.send.mail:0
msgid "_Send"
msgstr ""
msgstr "_Enviar"
#. module: crm
#: view:crm.lead:0
@ -443,7 +459,7 @@ msgstr "Actualizar fecha"
#. module: crm
#: help:crm.meeting,count:0
msgid "Repeat max that times"
msgstr ""
msgstr "Repetir max. estas veces"
#. module: crm
#: view:crm.lead2opportunity.action:0
@ -533,6 +549,11 @@ msgstr "Crear oportunidad"
msgid "August"
msgstr "Agosto"
#. module: crm
#: field:crm.segmentation,sales_purchase_active:0
msgid "Use The Sales Purchase Rules"
msgstr "Utiliza las reglas de compra ventas"
#. module: crm
#: code:addons/crm/crm.py:0
#: view:crm.lead:0
@ -659,6 +680,15 @@ msgstr "Opciones de perfiles"
msgid "#Phone calls"
msgstr "#Llamadas telefónicas"
#. module: crm
#: help:crm.segmentation,categ_id:0
msgid ""
"The partner category that will be added to partners that match the "
"segmentation criterions after computation."
msgstr ""
"La categoría de empresas que será añadida a las empresas que cumplan los "
"criterios de segmentación después del cálculo."
#. module: crm
#: view:crm.lead:0
msgid "Communication history"
@ -828,16 +858,18 @@ msgid "Search Phonecalls"
msgstr "Buscar llamadas"
#. module: crm
#: view:crm.lead2opportunity.partner:0
#: view:crm.lead2partner:0
#: view:crm.phonecall2partner:0
msgid "Continue"
msgstr "Siguiente"
#: model:ir.actions.act_window,help:crm.crm_lead_stage_act
msgid ""
"Create specific stages that will help your sales better organise their sales "
"pipeline by maintaining them to their leads and sales opportunities. It will "
"allow them to easily track how is positioned a specific lead or opportunity "
"in the sales cycle."
msgstr ""
#. module: crm
#: field:crm.partner2opportunity,name:0
msgid "Opportunity Name"
msgstr "Nombre oportunidad"
#: field:crm.segmentation,som_interval:0
msgid "Days per Periode"
msgstr "Días por período"
#. module: crm
#: field:crm.meeting,byday:0
@ -871,13 +903,6 @@ msgstr "Exclusivo"
msgid "The opportunity '%s' has been won."
msgstr "La oportunidad '%s' ha sido ganada"
#. module: crm
#: help:crm.case.section,active:0
msgid ""
"If the active field is set to true, it will allow you to hide the sales team "
"without removing it."
msgstr ""
#. module: crm
#: help:crm.meeting,alarm_id:0
msgid "Set an alarm at this time, before the event occurs"
@ -1082,23 +1107,18 @@ msgid "Meetings"
msgstr "Reuniones"
#. module: crm
#: field:crm.lead,date_action_next:0
#: field:crm.lead,title_action:0
#: field:crm.meeting,date_action_next:0
#: field:crm.phonecall,date_action_next:0
msgid "Next Action"
msgstr "Próxima acción"
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Closed/Cancelled Leads Could not convert into Opportunity"
msgstr ""
"Las iniciativas cerradas/canceladas no podrían ser convertidas en "
"oportunidades"
#. module: crm
#: field:crm.meeting,end_date:0
msgid "Repeat Until"
msgstr "Repetir hasta"
#. module: crm
#: view:crm.meeting:0
msgid "Extended Options..."
msgstr "Opciones extendidas..."
#. module: crm
#: field:crm.meeting,date_deadline:0
msgid "Deadline"
@ -1115,6 +1135,14 @@ msgstr "Fecha límite"
msgid "_Cancel"
msgstr "Cancelar"
#. module: crm
#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:0
#, python-format
msgid "Closed/Cancelled Phone Call Could not convert into Opportunity"
msgstr ""
"Las llamadas telefónicas cerradas/canceladas no podrían ser convertidas en "
"oportunidades"
#. module: crm
#: view:crm.segmentation:0
msgid "Partner Segmentations"
@ -1135,6 +1163,18 @@ msgstr "Estadísticas"
msgid "Attendees"
msgstr "Asistentes"
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all
msgid ""
"'Leads' allows you to manage and keep track of all first potential interests "
"of a partner in one of your products or services. A lead is a first, "
"unqualified, contact with a prospect or customer. After being qualified, a "
"lead can be converted into a business opportunity with the creation of the "
"related partner for further detailed tracking of any linked activities. You "
"can use leads when you import a database of prospects or to integrate your "
"website's contact form with OpenERP."
msgstr ""
#. module: crm
#: view:crm.lead2opportunity.action:0
#: view:res.partner:0
@ -1165,7 +1205,7 @@ msgstr "Departamento de ventas"
#. module: crm
#: field:crm.send.mail,html:0
msgid "HTML formatting?"
msgstr ""
msgstr "Formato HTML?"
#. module: crm
#: field:crm.lead,type:0
@ -1232,21 +1272,23 @@ msgstr "Asunto"
#. module: crm
#: field:crm.meeting,tu:0
msgid "Tue"
msgstr ""
msgstr "Mar"
#. module: crm
#: code:addons/crm/crm_lead.py:0
#: view:crm.case.stage:0
#: view:crm.lead:0
#: field:crm.lead,stage_id:0
#: view:crm.lead.report:0
#: field:crm.lead.report,stage_id:0
#, python-format
msgid "Stage"
msgstr "Etapa"
#. module: crm
#: view:crm.lead:0
msgid "History Information"
msgstr ""
msgstr "Histórico información"
#. module: crm
#: constraint:ir.ui.view:0
@ -1256,7 +1298,7 @@ msgstr "¡XML inválido para la definición de la vista!"
#. module: crm
#: field:base.action.rule,act_mail_to_partner:0
msgid "Mail to Partner"
msgstr ""
msgstr "Mail a la empresa"
#. module: crm
#: view:crm.lead:0
@ -1325,20 +1367,28 @@ msgstr "Fecha de apertura"
msgid "Duration in Minutes"
msgstr "Duración en minutos"
#. module: crm
#: view:crm.lead2opportunity.partner:0
#: view:crm.lead2partner:0
#: view:crm.phonecall2partner:0
msgid "Continue"
msgstr "Siguiente"
#. module: crm
#: help:crm.installer,crm_helpdesk:0
msgid "Manages a Helpdesk service."
msgstr "Gestiona un servicio de soporte."
#. module: crm
#: field:crm.segmentation,som_interval:0
msgid "Days per Periode"
msgstr "Días por período"
#: field:crm.partner2opportunity,name:0
msgid "Opportunity Name"
msgstr "Nombre oportunidad"
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Closed/Cancelled \\nLeads Could not convert into Opportunity"
#: help:crm.case.section,active:0
msgid ""
"If the active field is set to true, it will allow you to hide the sales team "
"without removing it."
msgstr ""
#. module: crm
@ -1399,14 +1449,14 @@ msgstr "Lunes"
#. module: crm
#: field:crm.lead,day_close:0
msgid "Days to Close"
msgstr ""
msgstr "Días para el cierre"
#. module: crm
#: field:crm.add.note,attachment_ids:0
#: field:crm.case.section,complete_name:0
#: field:crm.send.mail,attachment_ids:0
msgid "unknown"
msgstr ""
msgstr "desconocido"
#. module: crm
#: field:crm.lead,id:0
@ -1434,14 +1484,15 @@ msgstr "Fecha"
#. module: crm
#: view:crm.lead:0
#: view:crm.lead.report:0
#: view:crm.meeting:0
#: view:crm.phonecall.report:0
msgid "Extended Filters..."
msgstr "Filtros extendidos..."
#. module: crm
#: model:ir.model,name:crm.model_calendar_attendee
msgid "Attendee information"
msgstr "Información asistencia"
#: field:crm.phonecall2opportunity,name:0
msgid "Opportunity Summary"
msgstr "Resumen oportunidad"
#. module: crm
#: view:crm.phonecall.report:0
@ -1520,7 +1571,7 @@ msgstr "Cancelar"
#. module: crm
#: model:ir.model,name:crm.model_res_users
msgid "res.users"
msgstr ""
msgstr "res.usuarios"
#. module: crm
#: model:ir.model,name:crm.model_crm_merge_opportunity
@ -1537,7 +1588,7 @@ msgstr "Personalización"
#: view:crm.meeting:0
#: view:crm.phonecall:0
msgid "Current"
msgstr ""
msgstr "Actual"
#. module: crm
#: field:crm.meeting,exrule:0
@ -1597,6 +1648,16 @@ msgstr "="
#. module: crm
#: selection:crm.meeting,state:0
msgid "Unconfirmed"
msgstr "No confirmado"
#. module: crm
#: model:ir.actions.act_window,help:crm.action_report_crm_opportunity
msgid ""
"Opportunities Analysis gives you an instant access to your opportunities "
"with information such as the expected revenue, planned cost, missed "
"deadlines or the number of interactions per opportunity. This report is "
"mainly used by the sales manager in order to do the periodic review with the "
"teams of the sales pipeline."
msgstr ""
#. module: crm
@ -1608,17 +1669,21 @@ msgstr ""
msgid "Name"
msgstr "Nombre"
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0
msgid ""
"The Inbound Calls tool allows you to log your inbound calls on the fly. Each "
"call you get will appear on the partner form for the traceability of every "
"contact you get with a partner. From the call record, you can trigger a "
"request for another call, a meeting or a business opportunity."
msgstr ""
#. module: crm
#: field:crm.meeting,alarm_id:0
#: field:crm.meeting,base_calendar_alarm_id:0
msgid "Alarm"
msgstr "Alarma"
#. module: crm
#: model:process.node,note:crm.process_node_meeting0
msgid "Schedule a normal or phone meeting"
msgstr "Programar una reunión normal o telefónica"
#. module: crm
#: view:crm.lead.report:0
#: view:crm.phonecall.report:0
@ -1633,7 +1698,7 @@ msgstr "Fecha de nacimiento"
#. module: crm
#: view:crm.meeting:0
msgid "The"
msgstr ""
msgstr "El"
#. module: crm
#: field:crm.send.mail.attachment,wizard_id:0
@ -1666,6 +1731,11 @@ msgstr "Creación"
msgid "High"
msgstr "Alto"
#. module: crm
#: selection:crm.meeting,freq:0
msgid "Seconds"
msgstr "Segundos"
#. module: crm
#: model:process.node,note:crm.process_node_partner0
msgid "Convert to prospect to business partner"
@ -1674,7 +1744,7 @@ msgstr "Convertir prospección a empresa"
#. module: crm
#: view:crm.phonecall2opportunity:0
msgid "_Convert"
msgstr ""
msgstr "_Convertir"
#. module: crm
#: selection:crm.meeting,week_list:0
@ -1689,7 +1759,7 @@ msgstr "Quinto"
#. module: crm
#: view:crm.phonecall2phonecall:0
msgid "_Schedule"
msgstr ""
msgstr "_Calendario"
#. module: crm
#: field:crm.lead.report,delay_close:0
@ -1724,6 +1794,8 @@ msgstr "Agrupar por..."
#: help:crm.lead,partner_id:0
msgid "Optional linked partner, usually after conversion of the lead"
msgstr ""
"Empresa relacionada opcional, normalmente después de la conversión de la "
"iniciativa"
#. module: crm
#: view:crm.meeting:0
@ -1845,6 +1917,15 @@ msgstr "Oportunidades por categorías"
msgid "Customer Name"
msgstr "Nombre del cliente"
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_categ_meet
msgid ""
"The meeting calendar is shared between the sales teams and fully integrated "
"with other applications such as the employee holidays or the business "
"opportunities. You can also synchronize meetings with your mobile phone "
"using the caldav interface."
msgstr ""
#. module: crm
#: model:ir.model,name:crm.model_crm_phonecall2opportunity
msgid "Phonecall To Opportunity"
@ -1908,7 +1989,7 @@ msgstr "Información extra"
#: model:ir.actions.act_window,name:crm.action_merge_opportunities
#: model:ir.actions.act_window,name:crm.merge_opportunity_act
msgid "Merge Opportunities"
msgstr ""
msgstr "Fusionar oportunidades"
#. module: crm
#: model:crm.case.resource.type,name:crm.type_lead5
@ -1953,9 +2034,9 @@ msgid "Priority"
msgstr "Prioridad"
#. module: crm
#: field:crm.segmentation,sales_purchase_active:0
msgid "Use The Sales Purchase Rules"
msgstr "Utiliza las reglas de compra ventas"
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr "¡El nombre del módulo debe ser único!"
#. module: crm
#: model:ir.model,name:crm.model_crm_lead2opportunity_partner
@ -1970,7 +2051,7 @@ msgstr "Ubicación"
#. module: crm
#: view:crm.lead:0
msgid "Reply"
msgstr ""
msgstr "Responder"
#. module: crm
#: selection:crm.meeting,freq:0
@ -1978,10 +2059,9 @@ msgid "Weeks"
msgstr "Semanas"
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Lead "
msgstr "Iniciativa "
#: model:process.node,note:crm.process_node_meeting0
msgid "Schedule a normal or phone meeting"
msgstr "Programar una reunión normal o telefónica"
#. module: crm
#: code:addons/crm/crm.py:0
@ -1990,9 +2070,13 @@ msgid "Error !"
msgstr "¡Error!"
#. module: crm
#: selection:crm.meeting,freq:0
msgid "Seconds"
msgstr "Segundos"
#: model:ir.actions.act_window,help:crm.crm_meeting_categ_action
msgid ""
"Create different meeting categories to better organize and classify your "
"meetings."
msgstr ""
"Cree diferentes categorías de reuniones para organizarlas y clasificarlas "
"mejor."
#. module: crm
#: model:ir.model,name:crm.model_crm_segmentation_line
@ -2024,7 +2108,7 @@ msgstr "Google Adwords 2"
#: help:crm.lead,type:0
#: help:crm.lead.report,type:0
msgid "Type is used to separate Leads and Opportunities"
msgstr ""
msgstr "El tipo es utilizado para separar iniciativas y oportunidades"
#. module: crm
#: view:crm.phonecall2partner:0
@ -2114,7 +2198,7 @@ msgstr "Fecha inicio"
#: selection:crm.phonecall,state:0
#: view:crm.phonecall.report:0
msgid "Todo"
msgstr ""
msgstr "Por hacer"
#. module: crm
#: view:crm.meeting:0
@ -2175,6 +2259,15 @@ msgstr ""
msgid "Internal Meeting"
msgstr "Reunión interna"
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_lead_categ_action
msgid ""
"Create specific categories that fit your company's activities in order to "
"better classify and analyse them after they have been maintained in your "
"leads and opportunities. You can use categories to reflect your product "
"structure or the different types of sales you do."
msgstr ""
#. module: crm
#: code:addons/crm/crm.py:0
#: selection:crm.add.note,state:0
@ -2195,11 +2288,21 @@ msgstr "Pendiente"
msgid "Customer Meeting"
msgstr "Reunión de cliente"
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_section_act
msgid ""
"Sales team allows you to organize your different salesmen or departments "
"into separate teams. Each team will work in his own list of opportunities, "
"sales orders, eso. Each user can set a team by default in his preferences. "
"The opportunities and sales order he will see, will be automatically "
"filtered according to his team."
msgstr ""
#. module: crm
#: view:crm.lead:0
#: field:crm.lead,email_cc:0
msgid "Global CC"
msgstr ""
msgstr "CC Global"
#. module: crm
#: view:crm.phonecall:0
@ -2213,7 +2316,7 @@ msgstr "Llamadas telefónicas"
#: help:crm.lead.report,delay_open:0
#: help:crm.phonecall.report,delay_open:0
msgid "Number of Days to open the case"
msgstr ""
msgstr "Número de días para abrir el caso"
#. module: crm
#: field:crm.lead,phone:0
@ -2230,6 +2333,12 @@ msgstr "Teléfono"
msgid "Active"
msgstr "Activo"
#. module: crm
#: code:addons/crm/crm_lead.py:0
#, python-format
msgid "The stage of opportunity '%s' has been changed to '%s'."
msgstr ""
#. module: crm
#: selection:crm.segmentation.line,operator:0
msgid "Mandatory Expression"
@ -2267,12 +2376,40 @@ msgid ""
"Helps you manage wiki pages for Frequently Asked Questions on Sales "
"Application."
msgstr ""
"Le ayuda a organizar páginas wiki para preguntas frecuentes sobre la "
"aplicación de ventas"
#. module: crm
#: help:crm.installer,crm_fundraising:0
msgid "This may help associations in their fundraising process and tracking."
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_category_act_oppor11
msgid ""
"Opportunities allows you to manage and keep track of your sales pipeline by "
"creating specific customer or prospect related sales documents in order to "
"follow up potential sales. Information such as the expected revenue, "
"opportunity stage, expected closing date, communication history and so on "
"can be maintained in them. Opportunities can be connected with the email "
"gateway: new emails create opportunities, each of them automatically gets "
"the history of the conversation with the customer.\n"
"\n"
"You and your team(s) will be able to plan meetings and phone calls from "
"opportunities, convert them into quotations, manage related documents, track "
"all customer related activities, and much more."
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_outgoing0
msgid ""
"Outbound Calls lists all the calls to be performed by your sales team. They "
"can record the information about the call on the form view. These "
"information will appear on the partner form for the traceability of every "
"contact you get with a customer. You can import a .CSV file with a list of "
"calls to be done for your sales team."
msgstr ""
#. module: crm
#: field:crm.lead2opportunity.partner,action:0
#: field:crm.lead2partner,action:0
@ -2302,6 +2439,11 @@ msgstr "Datos adjuntos"
msgid "Weekly"
msgstr "Semanal"
#. module: crm
#: sql_constraint:ir.ui.view_sc:0
msgid "Shortcut for this menu already exists!"
msgstr "¡El acceso rápido para este menú ya existe!"
#. module: crm
#: view:crm.lead.report:0
#: model:ir.actions.act_window,name:crm.action_report_crm_opportunity
@ -2314,6 +2456,14 @@ msgstr "Análisis de oportunidades"
msgid "Misc"
msgstr "Varios"
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_segmentation_tree-act
msgid ""
"Create specific partner categories that you will then be able to assign to "
"your partners to better manage your interactions with them. The segmentation "
"tool will assign categories to partners based on defined criteria."
msgstr ""
#. module: crm
#: model:crm.case.categ,name:crm.categ_oppor8
#: view:crm.meeting:0
@ -2327,6 +2477,11 @@ msgstr "Otro"
msgid "Done"
msgstr "Hecho"
#. module: crm
#: sql_constraint:ir.rule:0
msgid "Rule must have at least one checked access right !"
msgstr "¡La regla debe tener por lo menos un derecho de acceso marcado!"
#. module: crm
#: field:crm.segmentation,som_interval_max:0
msgid "Max Interval"
@ -2403,7 +2558,7 @@ msgstr "Oportunidad a presupuesto"
#. module: crm
#: model:ir.model,name:crm.model_crm_send_mail
msgid "Send new email"
msgstr ""
msgstr "Enviar nuevo email"
#. module: crm
#: view:board.board:0
@ -2450,7 +2605,7 @@ msgstr "Tipo de reunión"
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Merge with Existing Opportunity"
msgstr ""
msgstr "Fusinar con oportunidad existente"
#. module: crm
#: help:crm.lead,state:0
@ -2494,16 +2649,14 @@ msgstr ""
"intervalo, los X períodos anteriores."
#. module: crm
#: field:crm.lead,message_ids:0
#: field:crm.meeting,message_ids:0
#: field:crm.phonecall,message_ids:0
msgid "Messages"
msgstr "Mensajes"
#: view:board.board:0
msgid "My Win/Lost Ratio for the Last Year"
msgstr "Mi coeficiente ganado/perdido del año anterior"
#. module: crm
#: view:crm.meeting:0
msgid "Custom Recurrency Rule"
msgstr ""
msgstr "Regla de recurrencia personalizada"
#. module: crm
#: field:crm.installer,thunderbird:0
@ -2530,7 +2683,7 @@ msgstr ""
#. module: crm
#: model:ir.model,name:crm.model_crm_lead
msgid "crm.lead"
msgstr ""
msgstr "crm.iniciativa"
#. module: crm
#: field:crm.meeting,week_list:0
@ -2548,9 +2701,9 @@ msgid "Lead To Opportunity"
msgstr "Iniciativa a opportunidad"
#. module: crm
#: field:crm.phonecall2opportunity,name:0
msgid "Opportunity Summary"
msgstr "Resumen oportunidad"
#: model:ir.model,name:crm.model_calendar_attendee
msgid "Attendee information"
msgstr "Información asistencia"
#. module: crm
#: view:crm.segmentation:0
@ -2715,15 +2868,23 @@ msgstr "Referenciado por"
msgid "Add Internal Note"
msgstr "Añadir nota interna"
#. module: crm
#: code:addons/crm/crm_lead.py:0
#, python-format
msgid "The stage of lead '%s' has been changed to '%s'."
msgstr ""
#. module: crm
#: selection:crm.meeting,byday:0
msgid "Last"
msgstr "Último"
#. module: crm
#: view:board.board:0
msgid "My Win/Lost Ratio for the Last Year"
msgstr "Mi coeficiente ganado/perdido del año anterior"
#: field:crm.lead,message_ids:0
#: field:crm.meeting,message_ids:0
#: field:crm.phonecall,message_ids:0
msgid "Messages"
msgstr "Mensajes"
#. module: crm
#: help:crm.case.stage,on_change:0
@ -2760,6 +2921,13 @@ msgstr "Cancelado"
msgid "Note Body"
msgstr "Contenido de la nota"
#. module: crm
#: model:ir.actions.act_window,help:crm.action_view_attendee_form
msgid ""
"'Meeting Invitations' allows you to create and manage the meeting "
"invitations sent/to be sent to your colleagues/partners."
msgstr ""
#. module: crm
#: view:board.board:0
msgid "My Planned Revenues by Stage"
@ -2782,6 +2950,15 @@ msgstr " Mes "
msgid "Links"
msgstr "Enlaces"
#. module: crm
#: model:ir.actions.act_window,help:crm.action_report_crm_phonecall
msgid ""
"From this report, you can analyse the performance of your sales team, based "
"on their phone calls. You can group or filter the information according to "
"several criteria and drill down the information, by adding more groups in "
"the report."
msgstr ""
#. module: crm
#: help:crm.segmentation,som_interval_decrease:0
msgid ""
@ -2928,6 +3105,14 @@ msgstr "Canal"
msgid "Schedule Call"
msgstr "Planificar llamada"
#. module: crm
#: field:crm.lead,date_action_next:0
#: field:crm.lead,title_action:0
#: field:crm.meeting,date_action_next:0
#: field:crm.phonecall,date_action_next:0
msgid "Next Action"
msgstr "Próxima acción"
#. module: crm
#: view:crm.segmentation:0
msgid "Profiling"
@ -3018,7 +3203,7 @@ msgstr "Este módulo relaciona ventas con oportunidades en la CRM"
#. module: crm
#: view:crm.meeting:0
msgid "of"
msgstr ""
msgstr "de"
#. module: crm
#: selection:crm.meeting,rrule_type:0
@ -3077,12 +3262,12 @@ msgstr ""
#. module: crm
#: view:crm.send.mail:0
msgid "_Send Reply"
msgstr ""
msgstr "_Enviar respuesta"
#. module: crm
#: field:crm.meeting,vtimezone:0
msgid "Timezone"
msgstr ""
msgstr "Zona horaria"
#. module: crm
#: field:crm.lead2opportunity.partner,msg:0
@ -3385,6 +3570,11 @@ msgstr "Fusionado con la oportunidad '%s'"
msgid "Close"
msgstr "Cerrado"
#. module: crm
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr "¡El tamaño del campo nunca puede ser menor que 1!"
#. module: crm
#: view:crm.lead:0
#: view:crm.phonecall:0
@ -3431,7 +3621,7 @@ msgstr "Función"
#. module: crm
#: view:crm.add.note:0
msgid "_Add"
msgstr ""
msgstr "_Añadir"
#. module: crm
#: selection:crm.segmentation.line,expr_name:0
@ -3583,12 +3773,6 @@ msgstr "Opción"
msgid "Negotiation"
msgstr "Negociación"
#. module: crm
#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:0
#, python-format
msgid "Closed/Cancelled Phone \\nCall Could not convert into Opportunity"
msgstr ""
#. module: crm
#: view:crm.lead:0
msgid "Exp.Closing"
@ -3696,6 +3880,9 @@ msgstr "Boletín de noticias"
#~ msgid "My "
#~ msgstr "Mis "
#~ msgid "Cases"
#~ msgstr "Casos"
#~ msgid "Watchers Emails"
#~ msgstr "Observadores emails (CC)"
@ -5260,3 +5447,14 @@ msgstr "Boletín de noticias"
#~ "representan la mentalidad de las empresas respecto a nuestros servicios. La "
#~ "escala tiene que ser creada con un factor para cada nivel empezando desde 0 "
#~ "(muy insatisfecho) hasta 10 (muy satisfecho)."
#, python-format
#~ msgid "is converted to Opportunity."
#~ msgstr "ha sido convertida a oportunidad"
#~ msgid "Extended Options..."
#~ msgstr "Opciones extendidas..."
#, python-format
#~ msgid "Lead "
#~ msgstr "Iniciativa "

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-14 08:06+0000\n"
"Last-Translator: OpenERP Administrators <Unknown>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 12:28+0000\n"
"Last-Translator: Эдуард <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: 2010-11-15 05:01+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:49+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: crm
@ -113,11 +113,6 @@ msgstr "Не могу добавить примечание !"
msgid "Stage Name"
msgstr "Название этапа"
#. module: crm
#: view:crm.phonecall.report:0
msgid "Cases"
msgstr "Вопросы"
#. module: crm
#: view:crm.lead.report:0
#: field:crm.lead.report,day:0
@ -127,13 +122,15 @@ msgid "Day"
msgstr "День"
#. module: crm
#: help:crm.segmentation,categ_id:0
msgid ""
"The partner category that will be added to partners that match the "
"segmentation criterions after computation."
#: sql_constraint:crm.case.section:0
msgid "The code of the sales team must be unique !"
msgstr ""
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Lead '%s' has been converted to an opportunity."
msgstr ""
"Категория партнера, которая будет добавлена партнерам, которые соответствуют "
"критериям классификации после вычисления."
#. module: crm
#: code:addons/crm/crm_lead.py:0
@ -264,6 +261,15 @@ msgstr ""
msgid "The opportunity '%s' has been marked as lost."
msgstr "Сделка '%s' была отмечена как проигранная."
#. module: crm
#: model:ir.actions.act_window,help:crm.action_report_crm_lead
msgid ""
"Leads Analysis allows you to check different CRM related information. Check "
"for treatment delays, number of responses given and emails sent. You can "
"sort out your leads analysis by different groups to get accurate grained "
"analysis."
msgstr ""
#. module: crm
#: view:crm.lead:0
msgid "Send New Email"
@ -274,12 +280,6 @@ msgstr "Отправить новое эл. письмо"
msgid "Criteria"
msgstr "Критерии"
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "is converted to Opportunity."
msgstr "превращается в сделку."
#. module: crm
#: view:crm.segmentation:0
msgid "Excluded Answers :"
@ -290,6 +290,11 @@ msgstr "Исключенные ответы"
msgid "Sections"
msgstr "Разделы"
#. module: crm
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: crm
#: view:crm.merge.opportunity:0
msgid "_Merge"
@ -321,6 +326,13 @@ msgstr "Публичная"
msgid "Campaigns"
msgstr "Кампании"
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action
msgid ""
"Create specific phone call categories to better sort the type of calls "
"tracked in the system."
msgstr ""
#. module: crm
#: model:ir.actions.act_window,name:crm.crm_lead_categ_action
#: model:ir.ui.menu,name:crm.menu_crm_case_phonecall-act
@ -410,7 +422,7 @@ msgstr "Кандидаты и сделки"
#. module: crm
#: view:crm.send.mail:0
msgid "_Send"
msgstr ""
msgstr "_Отправить"
#. module: crm
#: view:crm.lead:0
@ -440,7 +452,7 @@ msgstr "Обновить дату"
#. module: crm
#: help:crm.meeting,count:0
msgid "Repeat max that times"
msgstr ""
msgstr "Повторить максимальное количество раз"
#. module: crm
#: view:crm.lead2opportunity.action:0
@ -530,6 +542,11 @@ msgstr "Создать сделку"
msgid "August"
msgstr "Август"
#. module: crm
#: field:crm.segmentation,sales_purchase_active:0
msgid "Use The Sales Purchase Rules"
msgstr "Использовать правила продаж покупок"
#. module: crm
#: code:addons/crm/crm.py:0
#: view:crm.lead:0
@ -645,7 +662,16 @@ msgstr ""
#. module: crm
#: view:crm.phonecall.report:0
msgid "#Phone calls"
msgstr "# Телефонные звонки"
#. module: crm
#: help:crm.segmentation,categ_id:0
msgid ""
"The partner category that will be added to partners that match the "
"segmentation criterions after computation."
msgstr ""
"Категория партнера, которая будет добавлена партнерам, которые соответствуют "
"критериям классификации после вычисления."
#. module: crm
#: view:crm.lead:0
@ -687,7 +713,7 @@ msgstr ""
#. module: crm
#: view:res.users:0
msgid "Current Activity"
msgstr ""
msgstr "Текущая активность"
#. module: crm
#: help:crm.meeting,exrule:0
@ -712,7 +738,7 @@ msgstr ""
#: view:crm.lead:0
#: view:crm.meeting:0
msgid "Details"
msgstr ""
msgstr "Подробно"
#. module: crm
#: help:crm.installer,crm_caldav:0
@ -724,7 +750,7 @@ msgstr ""
#. module: crm
#: selection:crm.meeting,freq:0
msgid "Years"
msgstr ""
msgstr "Года"
#. module: crm
#: help:crm.installer,crm_claim:0
@ -769,7 +795,7 @@ msgstr ""
#: view:board.board:0
#: model:ir.ui.menu,name:crm.menu_board_statistics_dash
msgid "Statistics Dashboard"
msgstr ""
msgstr "Панель статистики"
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
@ -807,16 +833,18 @@ msgid "Search Phonecalls"
msgstr "Искать звонки"
#. module: crm
#: view:crm.lead2opportunity.partner:0
#: view:crm.lead2partner:0
#: view:crm.phonecall2partner:0
msgid "Continue"
msgstr "Продолжить"
#: model:ir.actions.act_window,help:crm.crm_lead_stage_act
msgid ""
"Create specific stages that will help your sales better organise their sales "
"pipeline by maintaining them to their leads and sales opportunities. It will "
"allow them to easily track how is positioned a specific lead or opportunity "
"in the sales cycle."
msgstr ""
#. module: crm
#: field:crm.partner2opportunity,name:0
msgid "Opportunity Name"
msgstr "Название сделки"
#: field:crm.segmentation,som_interval:0
msgid "Days per Periode"
msgstr "Дней в периоде"
#. module: crm
#: field:crm.meeting,byday:0
@ -850,13 +878,6 @@ msgstr "Эксклюзивный"
msgid "The opportunity '%s' has been won."
msgstr ""
#. module: crm
#: help:crm.case.section,active:0
msgid ""
"If the active field is set to true, it will allow you to hide the sales team "
"without removing it."
msgstr ""
#. module: crm
#: help:crm.meeting,alarm_id:0
msgid "Set an alarm at this time, before the event occurs"
@ -1058,23 +1079,16 @@ msgid "Meetings"
msgstr "Встречи"
#. module: crm
#: field:crm.lead,date_action_next:0
#: field:crm.lead,title_action:0
#: field:crm.meeting,date_action_next:0
#: field:crm.phonecall,date_action_next:0
msgid "Next Action"
msgstr "Следующее действие"
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Closed/Cancelled Leads Could not convert into Opportunity"
msgstr ""
#. module: crm
#: field:crm.meeting,end_date:0
msgid "Repeat Until"
msgstr ""
#. module: crm
#: view:crm.meeting:0
msgid "Extended Options..."
msgstr ""
#. module: crm
#: field:crm.meeting,date_deadline:0
msgid "Deadline"
@ -1091,6 +1105,12 @@ msgstr "Срок"
msgid "_Cancel"
msgstr "_Отмена"
#. module: crm
#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:0
#, python-format
msgid "Closed/Cancelled Phone Call Could not convert into Opportunity"
msgstr ""
#. module: crm
#: view:crm.segmentation:0
msgid "Partner Segmentations"
@ -1111,6 +1131,18 @@ msgstr ""
msgid "Attendees"
msgstr "Участники"
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all
msgid ""
"'Leads' allows you to manage and keep track of all first potential interests "
"of a partner in one of your products or services. A lead is a first, "
"unqualified, contact with a prospect or customer. After being qualified, a "
"lead can be converted into a business opportunity with the creation of the "
"related partner for further detailed tracking of any linked activities. You "
"can use leads when you import a database of prospects or to integrate your "
"website's contact form with OpenERP."
msgstr ""
#. module: crm
#: view:crm.lead2opportunity.action:0
#: view:res.partner:0
@ -1211,11 +1243,13 @@ msgid "Tue"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:0
#: view:crm.case.stage:0
#: view:crm.lead:0
#: field:crm.lead,stage_id:0
#: view:crm.lead.report:0
#: field:crm.lead.report,stage_id:0
#, python-format
msgid "Stage"
msgstr "Этап"
@ -1301,20 +1335,28 @@ msgstr ""
msgid "Duration in Minutes"
msgstr ""
#. module: crm
#: view:crm.lead2opportunity.partner:0
#: view:crm.lead2partner:0
#: view:crm.phonecall2partner:0
msgid "Continue"
msgstr "Продолжить"
#. module: crm
#: help:crm.installer,crm_helpdesk:0
msgid "Manages a Helpdesk service."
msgstr ""
#. module: crm
#: field:crm.segmentation,som_interval:0
msgid "Days per Periode"
msgstr "Дней в периоде"
#: field:crm.partner2opportunity,name:0
msgid "Opportunity Name"
msgstr "Название сделки"
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Closed/Cancelled \\nLeads Could not convert into Opportunity"
#: help:crm.case.section,active:0
msgid ""
"If the active field is set to true, it will allow you to hide the sales team "
"without removing it."
msgstr ""
#. module: crm
@ -1410,14 +1452,15 @@ msgstr "Дата"
#. module: crm
#: view:crm.lead:0
#: view:crm.lead.report:0
#: view:crm.meeting:0
#: view:crm.phonecall.report:0
msgid "Extended Filters..."
msgstr ""
#. module: crm
#: model:ir.model,name:crm.model_calendar_attendee
msgid "Attendee information"
msgstr ""
#: field:crm.phonecall2opportunity,name:0
msgid "Opportunity Summary"
msgstr "Кратко о сделке"
#. module: crm
#: view:crm.phonecall.report:0
@ -1572,6 +1615,16 @@ msgstr "="
msgid "Unconfirmed"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.action_report_crm_opportunity
msgid ""
"Opportunities Analysis gives you an instant access to your opportunities "
"with information such as the expected revenue, planned cost, missed "
"deadlines or the number of interactions per opportunity. This report is "
"mainly used by the sales manager in order to do the periodic review with the "
"teams of the sales pipeline."
msgstr ""
#. module: crm
#: field:crm.case.categ,name:0
#: field:crm.installer,name:0
@ -1581,17 +1634,21 @@ msgstr ""
msgid "Name"
msgstr "Название"
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0
msgid ""
"The Inbound Calls tool allows you to log your inbound calls on the fly. Each "
"call you get will appear on the partner form for the traceability of every "
"contact you get with a partner. From the call record, you can trigger a "
"request for another call, a meeting or a business opportunity."
msgstr ""
#. module: crm
#: field:crm.meeting,alarm_id:0
#: field:crm.meeting,base_calendar_alarm_id:0
msgid "Alarm"
msgstr "Сигнал"
#. module: crm
#: model:process.node,note:crm.process_node_meeting0
msgid "Schedule a normal or phone meeting"
msgstr "Назначить обычную встречу или звонок"
#. module: crm
#: view:crm.lead.report:0
#: view:crm.phonecall.report:0
@ -1639,6 +1696,11 @@ msgstr ""
msgid "High"
msgstr "Высокая"
#. module: crm
#: selection:crm.meeting,freq:0
msgid "Seconds"
msgstr ""
#. module: crm
#: model:process.node,note:crm.process_node_partner0
msgid "Convert to prospect to business partner"
@ -1816,6 +1878,15 @@ msgstr ""
msgid "Customer Name"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_categ_meet
msgid ""
"The meeting calendar is shared between the sales teams and fully integrated "
"with other applications such as the employee holidays or the business "
"opportunities. You can also synchronize meetings with your mobile phone "
"using the caldav interface."
msgstr ""
#. module: crm
#: model:ir.model,name:crm.model_crm_phonecall2opportunity
msgid "Phonecall To Opportunity"
@ -1923,9 +1994,9 @@ msgid "Priority"
msgstr "Приоритет"
#. module: crm
#: field:crm.segmentation,sales_purchase_active:0
msgid "Use The Sales Purchase Rules"
msgstr "Использовать правила продаж покупок"
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: crm
#: model:ir.model,name:crm.model_crm_lead2opportunity_partner
@ -1948,10 +2019,9 @@ msgid "Weeks"
msgstr ""
#. module: crm
#: code:addons/crm/wizard/crm_lead_to_opportunity.py:0
#, python-format
msgid "Lead "
msgstr ""
#: model:process.node,note:crm.process_node_meeting0
msgid "Schedule a normal or phone meeting"
msgstr "Назначить обычную встречу или звонок"
#. module: crm
#: code:addons/crm/crm.py:0
@ -1960,8 +2030,10 @@ msgid "Error !"
msgstr "Ошибка!"
#. module: crm
#: selection:crm.meeting,freq:0
msgid "Seconds"
#: model:ir.actions.act_window,help:crm.crm_meeting_categ_action
msgid ""
"Create different meeting categories to better organize and classify your "
"meetings."
msgstr ""
#. module: crm
@ -2144,6 +2216,15 @@ msgstr ""
msgid "Internal Meeting"
msgstr "Внутреннее совещание"
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_lead_categ_action
msgid ""
"Create specific categories that fit your company's activities in order to "
"better classify and analyse them after they have been maintained in your "
"leads and opportunities. You can use categories to reflect your product "
"structure or the different types of sales you do."
msgstr ""
#. module: crm
#: code:addons/crm/crm.py:0
#: selection:crm.add.note,state:0
@ -2164,6 +2245,16 @@ msgstr "В ожидании"
msgid "Customer Meeting"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_section_act
msgid ""
"Sales team allows you to organize your different salesmen or departments "
"into separate teams. Each team will work in his own list of opportunities, "
"sales orders, eso. Each user can set a team by default in his preferences. "
"The opportunities and sales order he will see, will be automatically "
"filtered according to his team."
msgstr ""
#. module: crm
#: view:crm.lead:0
#: field:crm.lead,email_cc:0
@ -2199,6 +2290,12 @@ msgstr "Телефон"
msgid "Active"
msgstr "Активен"
#. module: crm
#: code:addons/crm/crm_lead.py:0
#, python-format
msgid "The stage of opportunity '%s' has been changed to '%s'."
msgstr ""
#. module: crm
#: selection:crm.segmentation.line,operator:0
msgid "Mandatory Expression"
@ -2242,6 +2339,32 @@ msgstr ""
msgid "This may help associations in their fundraising process and tracking."
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_category_act_oppor11
msgid ""
"Opportunities allows you to manage and keep track of your sales pipeline by "
"creating specific customer or prospect related sales documents in order to "
"follow up potential sales. Information such as the expected revenue, "
"opportunity stage, expected closing date, communication history and so on "
"can be maintained in them. Opportunities can be connected with the email "
"gateway: new emails create opportunities, each of them automatically gets "
"the history of the conversation with the customer.\n"
"\n"
"You and your team(s) will be able to plan meetings and phone calls from "
"opportunities, convert them into quotations, manage related documents, track "
"all customer related activities, and much more."
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_outgoing0
msgid ""
"Outbound Calls lists all the calls to be performed by your sales team. They "
"can record the information about the call on the form view. These "
"information will appear on the partner form for the traceability of every "
"contact you get with a customer. You can import a .CSV file with a list of "
"calls to be done for your sales team."
msgstr ""
#. module: crm
#: field:crm.lead2opportunity.partner,action:0
#: field:crm.lead2partner,action:0
@ -2271,6 +2394,11 @@ msgstr ""
msgid "Weekly"
msgstr ""
#. module: crm
#: sql_constraint:ir.ui.view_sc:0
msgid "Shortcut for this menu already exists!"
msgstr ""
#. module: crm
#: view:crm.lead.report:0
#: model:ir.actions.act_window,name:crm.action_report_crm_opportunity
@ -2283,6 +2411,14 @@ msgstr ""
msgid "Misc"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.crm_segmentation_tree-act
msgid ""
"Create specific partner categories that you will then be able to assign to "
"your partners to better manage your interactions with them. The segmentation "
"tool will assign categories to partners based on defined criteria."
msgstr ""
#. module: crm
#: model:crm.case.categ,name:crm.categ_oppor8
#: view:crm.meeting:0
@ -2296,6 +2432,11 @@ msgstr "Другое"
msgid "Done"
msgstr "Готово"
#. module: crm
#: sql_constraint:ir.rule:0
msgid "Rule must have at least one checked access right !"
msgstr ""
#. module: crm
#: field:crm.segmentation,som_interval_max:0
msgid "Max Interval"
@ -2453,10 +2594,8 @@ msgid ""
msgstr ""
#. module: crm
#: field:crm.lead,message_ids:0
#: field:crm.meeting,message_ids:0
#: field:crm.phonecall,message_ids:0
msgid "Messages"
#: view:board.board:0
msgid "My Win/Lost Ratio for the Last Year"
msgstr ""
#. module: crm
@ -2507,9 +2646,9 @@ msgid "Lead To Opportunity"
msgstr ""
#. module: crm
#: field:crm.phonecall2opportunity,name:0
msgid "Opportunity Summary"
msgstr "Кратко о сделке"
#: model:ir.model,name:crm.model_calendar_attendee
msgid "Attendee information"
msgstr ""
#. module: crm
#: view:crm.segmentation:0
@ -2674,14 +2813,22 @@ msgstr ""
msgid "Add Internal Note"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:0
#, python-format
msgid "The stage of lead '%s' has been changed to '%s'."
msgstr ""
#. module: crm
#: selection:crm.meeting,byday:0
msgid "Last"
msgstr ""
#. module: crm
#: view:board.board:0
msgid "My Win/Lost Ratio for the Last Year"
#: field:crm.lead,message_ids:0
#: field:crm.meeting,message_ids:0
#: field:crm.phonecall,message_ids:0
msgid "Messages"
msgstr ""
#. module: crm
@ -2719,6 +2866,13 @@ msgstr "Отменено"
msgid "Note Body"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.action_view_attendee_form
msgid ""
"'Meeting Invitations' allows you to create and manage the meeting "
"invitations sent/to be sent to your colleagues/partners."
msgstr ""
#. module: crm
#: view:board.board:0
msgid "My Planned Revenues by Stage"
@ -2741,6 +2895,15 @@ msgstr ""
msgid "Links"
msgstr ""
#. module: crm
#: model:ir.actions.act_window,help:crm.action_report_crm_phonecall
msgid ""
"From this report, you can analyse the performance of your sales team, based "
"on their phone calls. You can group or filter the information according to "
"several criteria and drill down the information, by adding more groups in "
"the report."
msgstr ""
#. module: crm
#: help:crm.segmentation,som_interval_decrease:0
msgid ""
@ -2882,6 +3045,14 @@ msgstr "Канал"
msgid "Schedule Call"
msgstr ""
#. module: crm
#: field:crm.lead,date_action_next:0
#: field:crm.lead,title_action:0
#: field:crm.meeting,date_action_next:0
#: field:crm.phonecall,date_action_next:0
msgid "Next Action"
msgstr "Следующее действие"
#. module: crm
#: view:crm.segmentation:0
msgid "Profiling"
@ -3338,6 +3509,11 @@ msgstr ""
msgid "Close"
msgstr "Закрыть"
#. module: crm
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: crm
#: view:crm.lead:0
#: view:crm.phonecall:0
@ -3536,12 +3712,6 @@ msgstr ""
msgid "Negotiation"
msgstr ""
#. module: crm
#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:0
#, python-format
msgid "Closed/Cancelled Phone \\nCall Could not convert into Opportunity"
msgstr ""
#. module: crm
#: view:crm.lead:0
msgid "Exp.Closing"
@ -3759,6 +3929,9 @@ msgstr ""
#~ msgid "Case history"
#~ msgstr "История вопроса"
#~ msgid "Cases"
#~ msgstr "Вопросы"
#, python-format
#~ msgid ""
#~ "You can not escalate this case.\n"
@ -4835,3 +5008,7 @@ msgstr ""
#~ msgid "Provide path for Remote Calendar"
#~ msgstr "Укажите путь для удаленного календаря"
#, python-format
#~ msgid "is converted to Opportunity."
#~ msgstr "превращается в сделку."

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:22+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:22+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:54+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:54+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -16,8 +16,8 @@ msgstr ""
"Plural-Forms: \n"
#. module: crm_caldav
#: constraint:ir.model:0
msgid "The Object name must start with x_ and not contain any special character !"
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: crm_caldav
@ -25,6 +25,21 @@ msgstr ""
msgid "Extened Module to Add CalDav future on Meeting"
msgstr ""
#. module: crm_caldav
#: constraint:ir.model:0
msgid "The Object name must start with x_ and not contain any special character !"
msgstr ""
#. module: crm_caldav
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: crm_caldav
#: sql_constraint:basic.calendar.fields:0
msgid "Can not map a field more than once"
msgstr ""
#. module: crm_caldav
#: model:ir.model,name:crm_caldav.model_crm_meeting
msgid "Meeting"

View File

@ -7,16 +7,26 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 10:37+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 08:09+0000\n"
"Last-Translator: Dimitris Andavoglou <dimitrisand@gmail.com>\n"
"Language-Team: Greek <el@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: 2010-11-17 04:52+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: crm_caldav
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: crm_caldav
#: model:ir.module.module,shortdesc:crm_caldav.module_meta_information
msgid "Extened Module to Add CalDav future on Meeting"
msgstr "Εκτεταμένο Πρόσθετο για Προσθήκη CalDav σε Συνάντηση"
#. module: crm_caldav
#: constraint:ir.model:0
msgid ""
@ -26,9 +36,14 @@ msgstr ""
"ειδικούς χαρακτήρες!"
#. module: crm_caldav
#: model:ir.module.module,shortdesc:crm_caldav.module_meta_information
msgid "Extened Module to Add CalDav future on Meeting"
msgstr "Εκτεταμένο Πρόσθετο για Προσθήκη CalDav σε Συνάντηση"
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: crm_caldav
#: sql_constraint:basic.calendar.fields:0
msgid "Can not map a field more than once"
msgstr ""
#. module: crm_caldav
#: model:ir.model,name:crm_caldav.model_crm_meeting

View File

@ -7,17 +7,26 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 18:04+0000\n"
"Last-Translator: Jordi Esteve (www.zikzakmedia.com) "
"<jesteve@zikzakmedia.com>\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-18 22:57+0000\n"
"Last-Translator: Carlos @ smile.fr <Unknown>\n"
"Language-Team: Spanish <es@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: 2010-11-17 04:52+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: crm_caldav
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr "¡El ID del certificado del módulo debe ser único!"
#. module: crm_caldav
#: model:ir.module.module,shortdesc:crm_caldav.module_meta_information
msgid "Extened Module to Add CalDav future on Meeting"
msgstr "Módulo extendido para añadir CalDav en las reuniones"
#. module: crm_caldav
#: constraint:ir.model:0
msgid ""
@ -27,9 +36,14 @@ msgstr ""
"especial!"
#. module: crm_caldav
#: model:ir.module.module,shortdesc:crm_caldav.module_meta_information
msgid "Extened Module to Add CalDav future on Meeting"
msgstr "Módulo extendido para añadir CalDav en las reuniones"
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr "¡El nombre del módulo debe ser único!"
#. module: crm_caldav
#: sql_constraint:basic.calendar.fields:0
msgid "Can not map a field more than once"
msgstr ""
#. module: crm_caldav
#: model:ir.model,name:crm_caldav.model_crm_meeting

View File

@ -4,10 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0dev\n"
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-10-18 17:46:22+0000\n"
"PO-Revision-Date: 2010-10-18 17:46:22+0000\n"
"POT-Creation-Date: 2010-11-18 16:11:55+0000\n"
"PO-Revision-Date: 2010-11-18 16:11:55+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -64,8 +64,8 @@ msgid "#Claim"
msgstr ""
#. module: crm_claim
#: view:crm.claim.report:0
msgid "Cases"
#: model:ir.actions.act_window,help:crm_claim.crm_claim_stage_act
msgid "You can create claim stages to categorize the status of every claim entered in the system. The stages define all the steps required for the resolution of a claim."
msgstr ""
#. module: crm_claim
@ -164,6 +164,11 @@ msgstr ""
msgid "Partner"
msgstr ""
#. module: crm_claim
#: field:crm.claim,active:0
msgid "Active"
msgstr ""
#. module: crm_claim
#: selection:crm.claim,type_action:0
#: selection:crm.claim.report,type_action:0
@ -194,6 +199,11 @@ msgstr ""
msgid "Priority"
msgstr ""
#. module: crm_claim
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: crm_claim
#: view:crm.claim:0
msgid "Send New Email"
@ -231,6 +241,11 @@ msgstr ""
msgid "Creation Date"
msgstr ""
#. module: crm_claim
#: model:ir.actions.act_window,help:crm_claim.action_report_crm_claim
msgid "Have a general overview of all claims processed in the system by sorting them with specific criteria."
msgstr ""
#. module: crm_claim
#: view:crm.claim:0
#: field:crm.claim,date_deadline:0
@ -459,8 +474,8 @@ msgid "Awaiting Response"
msgstr ""
#. module: crm_claim
#: field:crm.claim,active:0
msgid "Active"
#: model:ir.actions.act_window,name:crm_claim.crm_claim_categ_action
msgid "Claim Categories"
msgstr ""
#. module: crm_claim
@ -548,6 +563,11 @@ msgstr ""
msgid "Attachments"
msgstr ""
#. module: crm_claim
#: model:ir.actions.act_window,help:crm_claim.crm_case_categ_claim0
msgid "Record and track your customers' claims. Claims can be linked to a sales order or a lot. You can send emails with attachments and get the history of everything that happened on a specific claim (emails sent, interventions type and so on..). Claims can be automatically linked to an email address using the mail gateway module."
msgstr ""
#. module: crm_claim
#: view:crm.claim:0
#: field:crm.claim,state:0
@ -591,6 +611,11 @@ msgstr ""
msgid "Open"
msgstr ""
#. module: crm_claim
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: crm_claim
#: view:crm.claim:0
msgid "In Progress"
@ -647,6 +672,13 @@ msgstr ""
msgid "Search Claims"
msgstr ""
#. module: crm_claim
#: view:crm.claim:0
#: field:crm.claim,section_id:0
#: view:crm.claim.report:0
msgid "Sales Team"
msgstr ""
#. module: crm_claim
#: selection:crm.claim.report,month:0
msgid "May"
@ -681,6 +713,11 @@ msgid "The state is set to 'Draft', when a case is created.
"If the case needs to be reviewed then the state is set to 'Pending'."
msgstr ""
#. module: crm_claim
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: crm_claim
#: selection:crm.claim.report,month:0
msgid "February"
@ -718,10 +755,8 @@ msgid "High"
msgstr ""
#. module: crm_claim
#: view:crm.claim:0
#: field:crm.claim,section_id:0
#: view:crm.claim.report:0
msgid "Sales Team"
#: model:ir.actions.act_window,help:crm_claim.crm_claim_categ_action
msgid "Create claim categories to better manage and classify your claims. Some example of claims can be: preventive action, corrective action."
msgstr ""
#. module: crm_claim
@ -740,8 +775,3 @@ msgstr ""
msgid "Year"
msgstr ""
#. module: crm_claim
#: model:ir.actions.act_window,name:crm_claim.crm_claim_categ_action
msgid "Claim Categories"
msgstr ""

View File

@ -7,20 +7,20 @@ msgid ""
msgstr ""
"Project-Id-Version: openobject-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2010-10-18 17:46+0000\n"
"PO-Revision-Date: 2010-11-16 11:56+0000\n"
"POT-Creation-Date: 2010-11-18 16:11+0000\n"
"PO-Revision-Date: 2010-11-17 17:37+0000\n"
"Last-Translator: Dimitris Andavoglou <dimitrisand@gmail.com>\n"
"Language-Team: Greek <el@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: 2010-11-17 04:52+0000\n"
"X-Launchpad-Export-Date: 2010-11-19 04:51+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#. module: crm_claim
#: field:crm.claim,planned_revenue:0
msgid "Planned Revenue"
msgstr ""
msgstr "Προβλεπόμενα Έσοδα"
#. module: crm_claim
#: field:crm.claim.report,nbr:0
@ -36,24 +36,24 @@ msgstr "Ομαδοποίηση Κατά..."
#. module: crm_claim
#: constraint:ir.actions.act_window:0
msgid "Invalid model name in the action definition."
msgstr ""
msgstr "Λανθασμένο όνομα μοντέλου στον ορισμό ενέργειας"
#. module: crm_claim
#: selection:crm.claim.report,month:0
msgid "March"
msgstr ""
msgstr "Μάρτιος"
#. module: crm_claim
#: field:crm.claim.report,delay_close:0
msgid "Delay to close"
msgstr ""
msgstr "Καθηστέρηση για κλείσιμο"
#. module: crm_claim
#: field:crm.claim,company_id:0
#: view:crm.claim.report:0
#: field:crm.claim.report,company_id:0
msgid "Company"
msgstr ""
msgstr "Εταιρία"
#. module: crm_claim
#: field:crm.claim,email_cc:0
@ -66,8 +66,11 @@ msgid "#Claim"
msgstr ""
#. module: crm_claim
#: view:crm.claim.report:0
msgid "Cases"
#: model:ir.actions.act_window,help:crm_claim.crm_claim_stage_act
msgid ""
"You can create claim stages to categorize the status of every claim entered "
"in the system. The stages define all the steps required for the resolution "
"of a claim."
msgstr ""
#. module: crm_claim
@ -107,7 +110,7 @@ msgstr "Μυνήματα"
#. module: crm_claim
#: model:crm.case.categ,name:crm_claim.categ_claim1
msgid "Factual Claims"
msgstr ""
msgstr "Πραγματκές Αξιώσεις"
#. module: crm_claim
#: selection:crm.claim,state:0
@ -118,12 +121,12 @@ msgstr "Ακυρώθηκε"
#. module: crm_claim
#: model:crm.case.resource.type,name:crm_claim.type_claim2
msgid "Preventive"
msgstr ""
msgstr "Προληπτικά"
#. module: crm_claim
#: model:crm.case.stage,name:crm_claim.stage_claim2
msgid "Fixed"
msgstr ""
msgstr "Σταθερό"
#. module: crm_claim
#: field:crm.claim,partner_address_id:0
@ -143,7 +146,7 @@ msgstr " Μήνας "
#. module: crm_claim
#: field:crm.claim,ref:0
msgid "Reference"
msgstr ""
msgstr "Αναφορά"
#. module: crm_claim
#: field:crm.claim,date_action_next:0
@ -153,7 +156,7 @@ msgstr "Επόμενη Ενέργεια"
#. module: crm_claim
#: view:crm.claim:0
msgid "Reset to Draft"
msgstr ""
msgstr "Επαναφορά σε Πρόχειρο"
#. module: crm_claim
#: view:crm.claim:0
@ -168,6 +171,11 @@ msgstr "Επιπλέον Πληροφορίες"
msgid "Partner"
msgstr "Συνεργάτης"
#. module: crm_claim
#: field:crm.claim,active:0
msgid "Active"
msgstr "Ενεργή"
#. module: crm_claim
#: selection:crm.claim,type_action:0
#: selection:crm.claim.report,type_action:0
@ -189,7 +197,7 @@ msgstr "Τομέας"
#. module: crm_claim
#: constraint:ir.ui.view:0
msgid "Invalid XML for View Architecture!"
msgstr ""
msgstr "Μη έγκυρο ΧML για Προβολή Αρχιτεκτονικής!"
#. module: crm_claim
#: field:crm.claim,priority:0
@ -198,6 +206,11 @@ msgstr ""
msgid "Priority"
msgstr "Προτεραιότητα"
#. module: crm_claim
#: sql_constraint:ir.module.module:0
msgid "The name of the module must be unique !"
msgstr ""
#. module: crm_claim
#: view:crm.claim:0
msgid "Send New Email"
@ -206,7 +219,7 @@ msgstr "Αποστολή Νέου Email"
#. module: crm_claim
#: field:crm.claim.report,delay_expected:0
msgid "Overpassed Deadline"
msgstr ""
msgstr "Περασμένη Προθεσμία"
#. module: crm_claim
#: view:crm.claim:0
@ -235,6 +248,13 @@ msgstr "Χαμυλότερο"
msgid "Creation Date"
msgstr "Ημερομηνία Δημιουργίας"
#. module: crm_claim
#: model:ir.actions.act_window,help:crm_claim.action_report_crm_claim
msgid ""
"Have a general overview of all claims processed in the system by sorting "
"them with specific criteria."
msgstr ""
#. module: crm_claim
#: view:crm.claim:0
#: field:crm.claim,date_deadline:0
@ -319,12 +339,12 @@ msgstr "Κατάσταση και Κατηγοριοποίηση"
#. module: crm_claim
#: model:crm.case.stage,name:crm_claim.stage_claim1
msgid "Accepted as Claim"
msgstr ""
msgstr "Δεκτή Αξίωση"
#. module: crm_claim
#: model:crm.case.resource.type,name:crm_claim.type_claim1
msgid "Corrective"
msgstr ""
msgstr "Διορθωτική"
#. module: crm_claim
#: selection:crm.claim.report,month:0
@ -346,29 +366,29 @@ msgstr "Μήνας"
#: field:crm.claim,type_action:0
#: field:crm.claim.report,type_action:0
msgid "Action Type"
msgstr ""
msgstr "Τύπος Ενέργειας"
#. module: crm_claim
#: field:crm.claim,write_date:0
msgid "Update Date"
msgstr ""
msgstr "Ημερομηνία Ενημέρωσης"
#. module: crm_claim
#: view:crm.claim.report:0
msgid "Salesman"
msgstr ""
msgstr "Πωλητής"
#. module: crm_claim
#: field:crm.claim,ref2:0
msgid "Reference 2"
msgstr ""
msgstr "Παραπομπή 2"
#. module: crm_claim
#: field:crm.claim,categ_id:0
#: view:crm.claim.report:0
#: field:crm.claim.report,categ_id:0
msgid "Category"
msgstr ""
msgstr "Κατηγορία"
#. module: crm_claim
#: model:crm.case.categ,name:crm_claim.categ_claim2
@ -378,17 +398,17 @@ msgstr ""
#. module: crm_claim
#: view:crm.claim.report:0
msgid " Year "
msgstr ""
msgstr " Έτος "
#. module: crm_claim
#: view:crm.claim:0
msgid "Closure Date"
msgstr ""
msgstr "Ημερομηνία Κλεισίματος"
#. module: crm_claim
#: field:crm.claim,planned_cost:0
msgid "Planned Costs"
msgstr ""
msgstr "Προγραμματισμένο Κόστος"
#. module: crm_claim
#: help:crm.claim,email_cc:0
@ -403,18 +423,18 @@ msgstr ""
#: view:crm.claim.report:0
#: selection:crm.claim.report,state:0
msgid "Draft"
msgstr ""
msgstr "Προσχέδιο"
#. module: crm_claim
#: selection:crm.claim,priority:0
#: selection:crm.claim.report,priority:0
msgid "Low"
msgstr ""
msgstr "Χαμηλό"
#. module: crm_claim
#: constraint:ir.ui.menu:0
msgid "Error ! You can not create recursive Menu."
msgstr ""
msgstr "Λάθος ! Δεν μπορείτε να δημιουργήσετε κενό Μενού"
#. module: crm_claim
#: view:crm.claim:0
@ -422,18 +442,18 @@ msgstr ""
#: view:crm.claim.report:0
#: selection:crm.claim.report,state:0
msgid "Pending"
msgstr ""
msgstr "Εκκρεμεί"
#. module: crm_claim
#: selection:crm.claim.report,month:0
msgid "August"
msgstr ""
msgstr "Αύγουστος"
#. module: crm_claim
#: selection:crm.claim,priority:0
#: selection:crm.claim.report,priority:0
msgid "Normal"
msgstr ""
msgstr "Κανονικό"
#. module: crm_claim
#: view:crm.claim:0
@ -443,42 +463,42 @@ msgstr ""
#. module: crm_claim
#: model:ir.module.module,shortdesc:crm_claim.module_meta_information
msgid "Customer & Supplier Relationship Management"
msgstr ""
msgstr "Διαχείριση Σχέσεων Πελατών (CRM) και Προμηθευτών (SRM)"
#. module: crm_claim
#: selection:crm.claim.report,month:0
msgid "June"
msgstr ""
msgstr "Ιούνιος"
#. module: crm_claim
#: field:crm.claim,partner_phone:0
msgid "Phone"
msgstr ""
msgstr "Τηλέφωνο"
#. module: crm_claim
#: field:crm.claim.report,user_id:0
msgid "User"
msgstr ""
msgstr "Χρήστης"
#. module: crm_claim
#: model:crm.case.stage,name:crm_claim.stage_claim5
msgid "Awaiting Response"
msgstr ""
msgstr "Σε αναμονή Ανταπόκρισης"
#. module: crm_claim
#: field:crm.claim,active:0
msgid "Active"
msgstr ""
#: model:ir.actions.act_window,name:crm_claim.crm_claim_categ_action
msgid "Claim Categories"
msgstr "Κατηγορίες Απαιτήσεων"
#. module: crm_claim
#: selection:crm.claim.report,month:0
msgid "November"
msgstr ""
msgstr "Νοέμβριος"
#. module: crm_claim
#: view:crm.claim.report:0
msgid "Extended Filters..."
msgstr ""
msgstr "Εκτεταμένα Φίλτρα..."
#. module: crm_claim
#: view:crm.claim:0
@ -488,17 +508,17 @@ msgstr ""
#. module: crm_claim
#: view:crm.claim.report:0
msgid "Search"
msgstr ""
msgstr "Αναζήτηση"
#. module: crm_claim
#: selection:crm.claim.report,month:0
msgid "October"
msgstr ""
msgstr "Οκτώβριος"
#. module: crm_claim
#: selection:crm.claim.report,month:0
msgid "January"
msgstr ""
msgstr "Ιανουάριος"
#. module: crm_claim
#: view:crm.claim:0
@ -508,17 +528,17 @@ msgstr ""
#. module: crm_claim
#: help:crm.claim,email_from:0
msgid "These people will receive email."
msgstr ""
msgstr "Οι παρακάτω θα λάβουνε το email"
#. module: crm_claim
#: field:crm.claim,date:0
msgid "Date"
msgstr ""
msgstr "Ημερομηνία"
#. module: crm_claim
#: model:crm.case.stage,name:crm_claim.stage_claim4
msgid "Invalid"
msgstr ""
msgstr "Μη έγκυρο"
#. module: crm_claim
#: view:crm.claim:0
@ -526,7 +546,7 @@ msgstr ""
#: model:ir.actions.act_window,name:crm_claim.crm_case_categ_claim0
#: model:ir.ui.menu,name:crm_claim.menu_crm_case_claims
msgid "Claims"
msgstr ""
msgstr "Αξιώσεις"
#. module: crm_claim
#: selection:crm.claim,type_action:0
@ -537,22 +557,32 @@ msgstr ""
#. module: crm_claim
#: model:crm.case.categ,name:crm_claim.categ_claim3
msgid "Policy Claims"
msgstr ""
msgstr "Αξιώσεις (Πολιτική Εταιρείας)"
#. module: crm_claim
#: view:crm.claim:0
msgid "History"
msgstr ""
msgstr "Ιστορικό"
#. module: crm_claim
#: model:ir.model,name:crm_claim.model_crm_claim
#: model:ir.ui.menu,name:crm_claim.menu_config_claim
msgid "Claim"
msgstr ""
msgstr "Απαίτηση"
#. module: crm_claim
#: view:crm.claim:0
msgid "Attachments"
msgstr "Συνημμένα"
#. module: crm_claim
#: model:ir.actions.act_window,help:crm_claim.crm_case_categ_claim0
msgid ""
"Record and track your customers' claims. Claims can be linked to a sales "
"order or a lot. You can send emails with attachments and get the history of "
"everything that happened on a specific claim (emails sent, interventions "
"type and so on..). Claims can be automatically linked to an email address "
"using the mail gateway module."
msgstr ""
#. module: crm_claim
@ -561,34 +591,34 @@ msgstr ""
#: view:crm.claim.report:0
#: field:crm.claim.report,state:0
msgid "State"
msgstr ""
msgstr "Κατάσταση"
#. module: crm_claim
#: view:crm.claim:0
msgid "Claim Info"
msgstr ""
msgstr "Πληρ. Απαίτησης"
#. module: crm_claim
#: view:crm.claim:0
#: view:crm.claim.report:0
msgid "Done"
msgstr ""
msgstr "Ολοκληρώθηκε"
#. module: crm_claim
#: selection:crm.claim.report,month:0
msgid "December"
msgstr ""
msgstr "Δεκέμβριος"
#. module: crm_claim
#: view:crm.claim:0
#: view:crm.claim.report:0
msgid "Cancel"
msgstr ""
msgstr "Άκυρο"
#. module: crm_claim
#: view:crm.claim:0
msgid "Close"
msgstr ""
msgstr "Κλείσιμο"
#. module: crm_claim
#: view:crm.claim:0
@ -596,85 +626,99 @@ msgstr ""
#: view:crm.claim.report:0
#: selection:crm.claim.report,state:0
msgid "Open"
msgstr "Ανοιχτή"
#. module: crm_claim
#: sql_constraint:ir.model.fields:0
msgid "Size of the field can never be less than 1 !"
msgstr ""
#. module: crm_claim
#: view:crm.claim:0
msgid "In Progress"
msgstr ""
msgstr "Σε Εξέλιξη"
#. module: crm_claim
#: constraint:ir.model:0
msgid ""
"The Object name must start with x_ and not contain any special character !"
msgstr ""
"Το όνομα του Αντικειμένου πρέπει να ξεκινά με x_ και να μην περιέχει "
"ειδικούς χαρακτήρες!"
#. module: crm_claim
#: view:crm.claim:0
#: field:crm.claim,user_id:0
msgid "Responsible"
msgstr ""
msgstr "Υπεύθυνος"
#. module: crm_claim
#: view:crm.claim:0
msgid "Date of Claim"
msgstr ""
msgstr "Ημερ/νία Αξίωσης"
#. module: crm_claim
#: view:crm.claim:0
msgid "Current"
msgstr ""
msgstr "Τρέχουσα"
#. module: crm_claim
#: view:crm.claim:0
msgid "Details"
msgstr ""
msgstr "Λεπτομέρειες"
#. module: crm_claim
#: view:crm.claim:0
msgid "Cases By Stage and Estimates"
msgstr ""
msgstr "Θέματα ανά Στάδιο και Εκτιμήσεις"
#. module: crm_claim
#: view:crm.claim:0
msgid "Reply"
msgstr ""
msgstr "Απάντηση"
#. module: crm_claim
#: view:crm.claim:0
msgid "Claim/Action Description"
msgstr ""
msgstr "Περιγραφή Απαίτησης/Δράσης"
#. module: crm_claim
#: field:crm.claim,description:0
msgid "Description"
msgstr ""
msgstr "Περιγραφή"
#. module: crm_claim
#: view:crm.claim:0
msgid "Search Claims"
msgstr ""
msgstr "Αναζήτηση Απαιτήσεων"
#. module: crm_claim
#: view:crm.claim:0
#: field:crm.claim,section_id:0
#: view:crm.claim.report:0
msgid "Sales Team"
msgstr "Ομάδα Πώλησης"
#. module: crm_claim
#: selection:crm.claim.report,month:0
msgid "May"
msgstr ""
msgstr "Μάιος"
#. module: crm_claim
#: model:ir.actions.act_window,name:crm_claim.act_claim_partner
#: model:ir.actions.act_window,name:crm_claim.act_claim_partner_address
msgid "Report a Claim"
msgstr ""
msgstr "Αναφορά Απαίτησης"
#. module: crm_claim
#: field:crm.claim,probability:0
msgid "Probability (%)"
msgstr ""
msgstr "Πιθανότητα (%)"
#. module: crm_claim
#: field:crm.claim,partner_name:0
msgid "Employee's Name"
msgstr ""
msgstr "Όνομα Υπαλλήλου"
#. module: crm_claim
#: help:crm.claim,canal_id:0
@ -695,66 +739,66 @@ msgid ""
"If the case needs to be reviewed then the state is set to 'Pending'."
msgstr ""
#. module: crm_claim
#: sql_constraint:ir.module.module:0
msgid "The certificate ID of the module must be unique !"
msgstr ""
#. module: crm_claim
#: selection:crm.claim.report,month:0
msgid "February"
msgstr ""
msgstr "Φεβρουάριος"
#. module: crm_claim
#: field:crm.claim,name:0
msgid "Name"
msgstr ""
msgstr "Όνομα"
#. module: crm_claim
#: model:crm.case.stage,name:crm_claim.stage_claim3
msgid "Won't fix"
msgstr ""
msgstr "Δε φτιάχνεται"
#. module: crm_claim
#: selection:crm.claim.report,month:0
msgid "April"
msgstr ""
msgstr "Απρίλιος"
#. module: crm_claim
#: view:crm.claim.report:0
msgid "My Case(s)"
msgstr ""
msgstr "Οι Υποθέσεις μου"
#. module: crm_claim
#: field:crm.claim,id:0
msgid "ID"
msgstr ""
msgstr "ID"
#. module: crm_claim
#: selection:crm.claim,priority:0
#: selection:crm.claim.report,priority:0
msgid "High"
msgstr ""
msgstr "Υψηλή"
#. module: crm_claim
#: view:crm.claim:0
#: field:crm.claim,section_id:0
#: view:crm.claim.report:0
msgid "Sales Team"
#: model:ir.actions.act_window,help:crm_claim.crm_claim_categ_action
msgid ""
"Create claim categories to better manage and classify your claims. Some "
"example of claims can be: preventive action, corrective action."
msgstr ""
#. module: crm_claim
#: field:crm.claim.report,create_date:0
msgid "Create Date"
msgstr ""
msgstr "Ημερομηνία Δημιουργίας"
#. module: crm_claim
#: field:crm.claim,date_action_last:0
msgid "Last Action"
msgstr ""
msgstr "Τελευταία Ενέργεια"
#. module: crm_claim
#: view:crm.claim.report:0
#: field:crm.claim.report,name:0
msgid "Year"
msgstr ""
#. module: crm_claim
#: model:ir.actions.act_window,name:crm_claim.crm_claim_categ_action
msgid "Claim Categories"
msgstr ""
msgstr "Έτος"

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