[MERGE] [I18N] Many translation bugfixes + resync of translation templates with latest source

lp bug: https://launchpad.net/bugs/1165321 fixed

bzr revid: odo@openerp.com-20130607194733-27oiskc6q4fnp476
This commit is contained in:
Olivier Dony 2013-06-07 21:47:33 +02:00
commit b4976938d2
157 changed files with 3451 additions and 2949 deletions

View File

@ -577,6 +577,10 @@ class account_invoice(osv.osv):
return {'value': {}}
def onchange_company_id(self, cr, uid, ids, company_id, part_id, type, invoice_line, currency_id):
#TODO: add the missing context parameter when forward-porting in trunk so we can remove
# this hack!
context = self.pool['res.users'].context_get(cr, uid)
val = {}
dom = {}
obj_journal = self.pool.get('account.journal')
@ -627,14 +631,13 @@ class account_invoice(osv.osv):
else:
continue
if company_id and type:
if type in ('out_invoice'):
journal_type = 'sale'
elif type in ('out_refund'):
journal_type = 'sale_refund'
elif type in ('in_refund'):
journal_type = 'purchase_refund'
else:
journal_type = 'purchase'
journal_mapping = {
'out_invoice': 'sale',
'out_refund': 'sale_refund',
'in_refund': 'purchase_refund',
'in_invoice': 'purchase',
}
journal_type = journal_mapping[type]
journal_ids = obj_journal.search(cr, uid, [('company_id','=',company_id), ('type', '=', journal_type)])
if journal_ids:
val['journal_id'] = journal_ids[0]
@ -644,7 +647,12 @@ class account_invoice(osv.osv):
if r[1] == 'journal_id' and r[2] in journal_ids:
val['journal_id'] = r[2]
if not val.get('journal_id', False):
raise osv.except_osv(_('Configuration Error!'), (_('Cannot find any account journal of %s type for this company.\n\nYou can create one in the menu: \nConfiguration\Journals\Journals.') % (journal_type)))
journal_type_map = dict(obj_journal._columns['type'].selection)
journal_type_label = self.pool['ir.translation']._get_source(cr, uid, None, ('code','selection'),
context.get('lang'),
journal_type_map.get(journal_type))
raise osv.except_osv(_('Configuration Error!'),
_('Cannot find any account journal of %s type for this company.\n\nYou can create one in the menu: \nConfiguration\Journals\Journals.') % ('"%s"' % journal_type_label))
dom = {'journal_id': [('id', 'in', journal_ids)]}
else:
journal_ids = obj_journal.search(cr, uid, [])
@ -1143,12 +1151,12 @@ class account_invoice(osv.osv):
if not ids:
return []
types = {
'out_invoice': 'Invoice ',
'in_invoice': 'Sup. Invoice ',
'out_refund': 'Refund ',
'in_refund': 'Supplier Refund ',
'out_invoice': _('Invoice'),
'in_invoice': _('Supplier Invoice'),
'out_refund': _('Refund'),
'in_refund': _('Supplier Refund'),
}
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')]
return [(r['id'], '%s %s' % (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:

File diff suppressed because it is too large Load Diff

View File

@ -38,7 +38,7 @@ class account_fiscalyear_close(osv.osv_memory):
'report_name': fields.char('Name of new entries',size=64, required=True, help="Give name of the new entries"),
}
_defaults = {
'report_name': _('End of Fiscal Year Entry'),
'report_name': lambda self, cr, uid, context: _('End of Fiscal Year Entry'),
}
def data_save(self, cr, uid, ids, context=None):

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -20,6 +20,12 @@ msgstr ""
msgid "No order to invoice, create"
msgstr ""
#. module: account_analytic_analysis
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:547
#, python-format
msgid "Timesheets to Invoice of %s"
msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Group By..."
@ -60,14 +66,6 @@ msgstr ""
msgid "Uninvoiced Amount"
msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "When invoicing on timesheet, OpenERP uses the\n"
" pricelist of the contract which uses the price\n"
" defined on the product related to each employee to\n"
" define the customer invoice price rate."
msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "⇒ Invoice"
@ -88,6 +86,18 @@ msgstr ""
msgid "Sum of quotations for this contract."
msgstr ""
#. module: account_analytic_analysis
#: model:ir.actions.act_window,help:account_analytic_analysis.action_sales_order
msgid "<p class=\"oe_view_nocontent_create\">\n"
" Click to create a quotation that can be converted into a sales\n"
" order.\n"
" </p><p>\n"
" Use sale orders to track everything that should be invoiced\n"
" at a fix price on a contract.\n"
" </p>\n"
" "
msgstr ""
#. module: account_analytic_analysis
#: help:account.analytic.account,ca_invoiced:0
msgid "Total customer invoiced amount for this account."
@ -109,7 +119,7 @@ msgid "Contract expiration reminder ${user.company_id.name}"
msgstr ""
#. module: account_analytic_analysis
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464
#, python-format
msgid "Sales Order Lines of %s"
msgstr ""
@ -245,6 +255,11 @@ msgstr ""
msgid "Real Margin"
msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "{'required': [('type','=','contract'),'|',('fix_price_invoices','=',True), ('invoice_on_timesheets', '=', True)]}"
msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Contracts assigned to a customer."
@ -270,11 +285,6 @@ msgstr ""
msgid "or view"
msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Customer Contracts"
msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Parent"
@ -420,6 +430,7 @@ msgid "Contracts"
msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:0
#: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order
msgid "Sales Orders"
msgstr ""
@ -511,7 +522,7 @@ msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "Sale Orders"
msgid "Customer Contracts"
msgstr ""
#. module: account_analytic_analysis
@ -616,6 +627,14 @@ msgstr ""
msgid "Date of the latest work done on this account."
msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:0
msgid "When reinvoicing costs, OpenERP uses the\n"
" pricelist of the contract which uses the price\n"
" defined on the product related (e.g timesheet \n"
" products are defined on each employee)."
msgstr ""
#. module: account_analytic_analysis
#: model:ir.model,name:account_analytic_analysis.model_sale_config_settings
msgid "sale.config.settings"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -681,7 +681,7 @@ msgid "Amount of Depreciation Lines"
msgstr ""
#. module: account_asset
#: code:addons/account_asset/wizard/wizard_asset_compute.py:49
#: code:addons/account_asset/wizard/wizard_asset_compute.py:50
#, python-format
msgid "Created Asset Moves"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -203,7 +203,9 @@
<field name="view_id" ref="crossovered_budget_view_tree"/>
<field name="search_view_id" ref="view_crossovered_budget_search"/>
<field name="help" type="html">
<p>
<p class="oe_view_nocontent_create">
Click to create a new budget.
</p><p>
A budget is a forecast of your company's income and/or expenses
expected for a period in the future. A budget is defined on some
financial accounts and/or analytic accounts (that may represent

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -122,9 +122,22 @@ msgid "Analytic Account"
msgstr ""
#. module: account_budget
#: code:addons/account_budget/account_budget.py:119
#, python-format
msgid "The Budget '%s' has no accounts!"
#: model:ir.actions.act_window,help:account_budget.act_crossovered_budget_view
msgid "<p class=\"oe_view_nocontent_create\">\n"
" Click to create a new budget.\n"
" </p><p>\n"
" A budget is a forecast of your company's income and/or expenses\n"
" expected for a period in the future. A budget is defined on some\n"
" financial accounts and/or analytic accounts (that may represent\n"
" projects, departments, categories of products, etc.)\n"
" </p><p>\n"
" By keeping track of where your money goes, you may be less\n"
" likely to overspend, and more likely to meet your financial\n"
" goals. Forecast a budget by detailing the expected revenue per\n"
" analytic account and monitor its evolution based on the actuals\n"
" realised during that period.\n"
" </p>\n"
" "
msgstr ""
#. module: account_budget
@ -221,6 +234,12 @@ msgstr ""
msgid "Budget Line"
msgstr ""
#. module: account_budget
#: code:addons/account_budget/account_budget.py:119
#, python-format
msgid "The Budget '%s' has no accounts!"
msgstr ""
#. module: account_budget
#: report:account.budget:0
#: view:crossovered.budget:0
@ -349,23 +368,6 @@ msgstr ""
msgid "Budget :"
msgstr ""
#. module: account_budget
#: model:ir.actions.act_window,help:account_budget.act_crossovered_budget_view
msgid "<p>\n"
" A budget is a forecast of your company's income and/or expenses\n"
" expected for a period in the future. A budget is defined on some\n"
" financial accounts and/or analytic accounts (that may represent\n"
" projects, departments, categories of products, etc.)\n"
" </p><p>\n"
" By keeping track of where your money goes, you may be less\n"
" likely to overspend, and more likely to meet your financial\n"
" goals. Forecast a budget by detailing the expected revenue per\n"
" analytic account and monitor its evolution based on the actuals\n"
" realised during that period.\n"
" </p>\n"
" "
msgstr ""
#. module: account_budget
#: report:account.budget:0
#: report:crossovered.budget.report:0

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -75,7 +75,7 @@ msgstr ""
#. module: account_followup
#: report:account_followup.followup.print:0
#: code:addons/account_followup/account_followup.py:259
#: code:addons/account_followup/account_followup.py:258
#, python-format
msgid "Invoice Date"
msgstr ""
@ -101,7 +101,7 @@ msgid "Follow-up Steps"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/account_followup.py:262
#: code:addons/account_followup/account_followup.py:261
#, python-format
msgid "Due Date"
msgstr ""
@ -112,8 +112,8 @@ msgid "Send Follow-Ups"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/account_followup.py:313
#: code:addons/account_followup/account_followup.py:319
#: code:addons/account_followup/account_followup.py:312
#: code:addons/account_followup/account_followup.py:318
#: code:addons/account_followup/report/account_followup_print.py:86
#, python-format
msgid "Error!"
@ -121,7 +121,7 @@ msgstr ""
#. module: account_followup
#: report:account_followup.followup.print:0
#: code:addons/account_followup/account_followup.py:263
#: code:addons/account_followup/account_followup.py:262
#, python-format
msgid "Amount"
msgstr ""
@ -187,7 +187,7 @@ msgid "\n"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/account_followup.py:261
#: code:addons/account_followup/account_followup.py:260
#, python-format
msgid "Reference"
msgstr ""
@ -491,7 +491,7 @@ msgid "Follow Ups"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/account_followup.py:219
#: code:addons/account_followup/account_followup.py:218
#, python-format
msgid "Email not sent because of email address of partner not filled in"
msgstr ""
@ -694,13 +694,13 @@ msgid "unknown"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/account_followup.py:314
#: code:addons/account_followup/account_followup.py:313
#, python-format
msgid "Printed overdue payments report"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/account_followup.py:291
#: code:addons/account_followup/account_followup.py:290
#, python-format
msgid "You became responsible to do the next action for the payment follow-up of"
msgstr ""
@ -729,7 +729,7 @@ msgid "Journal Items"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/account_followup.py:281
#: code:addons/account_followup/account_followup.py:280
#, python-format
msgid "Amount due"
msgstr ""
@ -766,7 +766,7 @@ msgid "Amount Overdue"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/account_followup.py:264
#: code:addons/account_followup/account_followup.py:263
#, python-format
msgid "Lit."
msgstr ""
@ -934,7 +934,7 @@ msgstr ""
#. module: account_followup
#: report:account_followup.followup.print:0
#: field:account_followup.sending.results,description:0
#: code:addons/account_followup/account_followup.py:260
#: code:addons/account_followup/account_followup.py:259
#, python-format
msgid "Description"
msgstr ""
@ -1093,7 +1093,7 @@ msgid "Total credit"
msgstr ""
#. module: account_followup
#: code:addons/account_followup/account_followup.py:313
#: code:addons/account_followup/account_followup.py:312
#, python-format
msgid "The partner does not have any accounting entries to print in the overdue report for the current company."
msgstr ""
@ -1149,7 +1149,7 @@ msgid "If not specified by the latest follow-up level, it will send from the def
msgstr ""
#. module: account_followup
#: code:addons/account_followup/account_followup.py:319
#: code:addons/account_followup/account_followup.py:318
#, python-format
msgid "There is no followup plan defined for the current company."
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -59,12 +59,6 @@ msgstr ""
msgid "Owner Account"
msgstr ""
#. module: account_payment
#: help:account.invoice,amount_to_pay:0
msgid "The amount which should be paid at the current date\n"
"minus the amount which is already in payment order"
msgstr ""
#. module: account_payment
#: field:payment.line,company_id:0
#: field:payment.mode,company_id:0
@ -646,12 +640,23 @@ msgstr ""
msgid "Total"
msgstr ""
#. module: account_payment
#: code:addons/account_payment/wizard/account_payment_order.py:112
#, python-format
msgid "Entry Lines"
msgstr ""
#. module: account_payment
#: view:account.payment.make.payment:0
#: model:ir.actions.act_window,name:account_payment.action_account_payment_make_payment
msgid "Make Payment"
msgstr ""
#. module: account_payment
#: help:account.invoice,amount_to_pay:0
msgid "The amount which should be paid at the current date. "
msgstr ""
#. module: account_payment
#: field:payment.order,date_prefered:0
msgid "Preferred Date"

View File

@ -0,0 +1,60 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * account_report_company
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: account_report_company
#: field:res.partner,display_name:0
msgid "Name"
msgstr ""
#. module: account_report_company
#: field:account.invoice,commercial_partner_id:0
#: help:account.invoice.report,commercial_partner_id:0
msgid "Commercial Entity"
msgstr ""
#. module: account_report_company
#: field:account.invoice.report,commercial_partner_id:0
msgid "Partner Company"
msgstr ""
#. module: account_report_company
#: model:ir.model,name:account_report_company.model_account_invoice
msgid "Invoice"
msgstr ""
#. module: account_report_company
#: view:account.invoice:0
#: view:account.invoice.report:0
#: model:ir.model,name:account_report_company.model_res_partner
msgid "Partner"
msgstr ""
#. module: account_report_company
#: model:ir.model,name:account_report_company.model_account_invoice_report
msgid "Invoices Statistics"
msgstr ""
#. module: account_report_company
#: view:res.partner:0
msgid "True"
msgstr ""
#. module: account_report_company
#: help:account.invoice,commercial_partner_id:0
msgid "The commercial entity that will be used on Journal Entries for this invoice"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -26,7 +26,7 @@ msgid "account.config.settings"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:369
#: code:addons/account_voucher/account_voucher.py:417
#, python-format
msgid "Write-Off"
msgstr ""
@ -110,8 +110,13 @@ msgid "Transaction reference number."
msgstr ""
#. module: account_voucher
#: view:sale.receipt.report:0
msgid "Group by year of Invoice Date"
#: view:account.voucher:0
msgid "Allocation"
msgstr ""
#. module: account_voucher
#: help:account.voucher,currency_help_label:0
msgid "This sentence helps you to know how to specify the payment rate by giving you the direct effect it has"
msgstr ""
#. module: account_voucher
@ -126,7 +131,7 @@ msgid "Voucher Statistics"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1547
#: code:addons/account_voucher/account_voucher.py:1641
#, python-format
msgid "You can not change the journal as you already reconciled some statement lines!"
msgstr ""
@ -220,8 +225,8 @@ msgid "Journal Item"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:508
#: code:addons/account_voucher/account_voucher.py:981
#: code:addons/account_voucher/account_voucher.py:558
#: code:addons/account_voucher/account_voucher.py:1073
#, python-format
msgid "Error!"
msgstr ""
@ -253,7 +258,7 @@ msgid "Cancelled"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1153
#: code:addons/account_voucher/account_voucher.py:1249
#, python-format
msgid "You have to configure account base code and account tax code on the '%s' tax!"
msgstr ""
@ -292,7 +297,7 @@ msgid "Tax"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:879
#: code:addons/account_voucher/account_voucher.py:971
#, python-format
msgid "Invalid Action!"
msgstr ""
@ -346,7 +351,7 @@ msgid "e.g. Invoice SAJ/0042"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1112
#: code:addons/account_voucher/account_voucher.py:1208
#, python-format
msgid "Wrong voucher line"
msgstr ""
@ -365,7 +370,7 @@ msgid "Receipt"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1018
#: code:addons/account_voucher/account_voucher.py:1110
#, python-format
msgid "You should configure the 'Gain Exchange Rate Account' in the accounting settings, to manage automatically the booking of accounting entries related to differences between exchange rates."
msgstr ""
@ -388,7 +393,7 @@ msgstr ""
#. module: account_voucher
#: view:account.voucher:0
#: code:addons/account_voucher/account_voucher.py:211
#: code:addons/account_voucher/account_voucher.py:231
#, python-format
msgid "Supplier"
msgstr ""
@ -409,7 +414,7 @@ msgid "Debit"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1547
#: code:addons/account_voucher/account_voucher.py:1641
#, python-format
msgid "Unable to change journal !"
msgstr ""
@ -432,9 +437,10 @@ msgid "Pro-forma Vouchers"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
#: model:ir.actions.act_window,name:account_voucher.act_journal_voucher_open
msgid "Voucher Entries"
#: code:addons/account_voucher/account_voucher.py:318
#, python-format
msgid "At the operation date, the exchange rate was\n"
"%s = %s"
msgstr ""
#. module: account_voucher
@ -518,7 +524,7 @@ msgid "Are you sure you want to unreconcile this record?"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1153
#: code:addons/account_voucher/account_voucher.py:1249
#, python-format
msgid "No Account Base Code and Account Tax Code!"
msgstr ""
@ -569,15 +575,15 @@ msgid "To Review"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1025
#: code:addons/account_voucher/account_voucher.py:1039
#: code:addons/account_voucher/account_voucher.py:1194
#: code:addons/account_voucher/account_voucher.py:1120
#: code:addons/account_voucher/account_voucher.py:1134
#: code:addons/account_voucher/account_voucher.py:1286
#, python-format
msgid "change"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1014
#: code:addons/account_voucher/account_voucher.py:1106
#, python-format
msgid "You should configure the 'Loss Exchange Rate Account' in the accounting settings, to manage automatically the booking of accounting entries related to differences between exchange rates."
msgstr ""
@ -621,6 +627,7 @@ msgstr ""
#. module: account_voucher
#: field:account.voucher,currency_id:0
#: field:account.voucher.line,currency_id:0
#: model:ir.model,name:account_voucher.model_res_currency
#: field:sale.receipt.report,currency_id:0
msgid "Currency"
msgstr ""
@ -664,7 +671,7 @@ msgid "Cancel Receipt"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:975
#: code:addons/account_voucher/account_voucher.py:1067
#, python-format
msgid "Configuration Error !"
msgstr ""
@ -694,8 +701,8 @@ msgid "Status"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
msgid "Allocation"
#: view:sale.receipt.report:0
msgid "Group by year of Invoice Date"
msgstr ""
#. module: account_voucher
@ -725,7 +732,7 @@ msgid "October"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:976
#: code:addons/account_voucher/account_voucher.py:1068
#, python-format
msgid "Please activate the sequence of selected journal !"
msgstr ""
@ -805,7 +812,7 @@ msgid "Previous Payments ?"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1112
#: code:addons/account_voucher/account_voucher.py:1208
#, python-format
msgid "The invoice you are willing to pay is not valid anymore."
msgstr ""
@ -837,7 +844,7 @@ msgid "Active"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:982
#: code:addons/account_voucher/account_voucher.py:1074
#, python-format
msgid "Please define a sequence on the journal."
msgstr ""
@ -871,6 +878,11 @@ msgstr ""
msgid "Invoices and outstanding transactions"
msgstr ""
#. module: account_voucher
#: field:account.voucher,currency_help_label:0
msgid "Helping Sentence"
msgstr ""
#. module: account_voucher
#: view:sale.receipt.report:0
#: field:sale.receipt.report,price_total:0
@ -965,7 +977,7 @@ msgid "Journal Items"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:508
#: code:addons/account_voucher/account_voucher.py:558
#, python-format
msgid "Please define default credit/debit accounts on the journal \"%s\"."
msgstr ""
@ -1099,6 +1111,12 @@ msgstr ""
msgid "Ref #"
msgstr ""
#. module: account_voucher
#: view:account.voucher:0
#: model:ir.actions.act_window,name:account_voucher.act_journal_voucher_open
msgid "Voucher Entries"
msgstr ""
#. module: account_voucher
#: view:sale.receipt.report:0
#: field:sale.receipt.report,year:0
@ -1159,7 +1177,7 @@ msgid "The amount of the voucher must be the same amount as the one on the state
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:879
#: code:addons/account_voucher/account_voucher.py:971
#, python-format
msgid "Cannot delete voucher(s) which are already opened or paid."
msgstr ""
@ -1217,8 +1235,8 @@ msgid "Open Balance"
msgstr ""
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1014
#: code:addons/account_voucher/account_voucher.py:1018
#: code:addons/account_voucher/account_voucher.py:1106
#: code:addons/account_voucher/account_voucher.py:1110
#, python-format
msgid "Insufficient Configuration!"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -43,6 +43,7 @@ msgstr ""
#. module: analytic
#: view:account.analytic.account:0
#: field:account.analytic.account,date:0
msgid "End Date"
msgstr ""
@ -307,11 +308,6 @@ msgstr ""
msgid "Quantity"
msgstr ""
#. module: analytic
#: field:account.analytic.account,date:0
msgid "Date End"
msgstr ""
#. module: analytic
#: field:account.analytic.account,code:0
msgid "Reference"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -20,11 +20,23 @@ msgstr ""
msgid "or view"
msgstr ""
#. module: analytic_contract_hr_expense
#: view:account.analytic.account:0
msgid "{'required': ['|',('invoice_on_timesheets','=',True),('charge_expenses','=',True)]}"
msgstr ""
#. module: analytic_contract_hr_expense
#: view:account.analytic.account:0
msgid "Nothing to invoice, create"
msgstr ""
#. module: analytic_contract_hr_expense
#: field:account.analytic.account,expense_invoiced:0
#: field:account.analytic.account,expense_to_invoice:0
#: field:account.analytic.account,remaining_expense:0
msgid "unknown"
msgstr ""
#. module: analytic_contract_hr_expense
#: view:account.analytic.account:0
msgid "expenses"
@ -36,22 +48,25 @@ msgid "Analytic Account"
msgstr ""
#. module: analytic_contract_hr_expense
#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129
#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144
#, python-format
msgid "Expenses to Invoice of %s"
msgstr ""
#. module: analytic_contract_hr_expense
#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121
#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136
#, python-format
msgid "Expenses of %s"
msgstr ""
#. module: analytic_contract_hr_expense
#: field:account.analytic.account,expense_invoiced:0
#: field:account.analytic.account,expense_to_invoice:0
#: field:account.analytic.account,remaining_expense:0
msgid "unknown"
#: view:account.analytic.account:0
msgid "Expenses and Timesheet Invoicing Ratio"
msgstr ""
#. module: analytic_contract_hr_expense
#: view:account.analytic.account:0
msgid "{'invisible': [('invoice_on_timesheets','=',False),('charge_expenses','=',False)]}"
msgstr ""
#. module: analytic_contract_hr_expense

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+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: auth_signup
#: view:res.users:0
msgid "A password reset has been requested for this user. An email containing the following link has been sent:"
msgstr ""
#. module: auth_signup
#: field:res.partner,signup_type:0
msgid "Signup Token Type"
@ -27,7 +32,7 @@ msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19
#, python-format
msgid "Confirm Password"
msgstr ""
@ -37,21 +42,31 @@ msgstr ""
msgid "If unchecked, only invited users may sign up."
msgstr ""
#. module: auth_signup
#: view:res.users:0
msgid "Send an invitation email"
msgstr ""
#. module: auth_signup
#: selection:res.users,state:0
msgid "Activated"
msgstr ""
#. module: auth_signup
#: model:ir.model,name:auth_signup.model_base_config_settings
msgid "base.config.settings"
msgstr ""
#. module: auth_signup
#: code:addons/auth_signup/res_users.py:265
#: code:addons/auth_signup/res_users.py:266
#, python-format
msgid "Cannot send email: user has no email address."
msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31
#, python-format
msgid "Reset password"
msgstr ""
@ -68,27 +83,14 @@ msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/js/auth_signup.js:117
#: code:addons/auth_signup/static/src/js/auth_signup.js:120
#, python-format
msgid "Please enter a password and confirm it."
msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:26
#, python-format
msgid "Sign Up"
msgstr ""
#. module: auth_signup
#: selection:res.users,state:0
msgid "New"
msgstr ""
#. module: auth_signup
#: field:res.users,state:0
msgid "Status"
#: view:res.users:0
msgid "Send reset password link by email"
msgstr ""
#. module: auth_signup
@ -101,9 +103,24 @@ msgid "\n"
"<p>Note: If you do not expect this, you can safely ignore this email.</p>"
msgstr ""
#. module: auth_signup
#: view:res.users:0
msgid "An invitation email containing the following subscription link has been sent:"
msgstr ""
#. module: auth_signup
#: field:res.users,state:0
msgid "Status"
msgstr ""
#. module: auth_signup
#: selection:res.users,state:0
msgid "Never Connected"
msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/js/auth_signup.js:111
#: code:addons/auth_signup/static/src/js/auth_signup.js:114
#, python-format
msgid "Please enter a name."
msgstr ""
@ -149,18 +166,13 @@ msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/js/auth_signup.js:114
#: code:addons/auth_signup/static/src/js/auth_signup.js:117
#, python-format
msgid "Please enter a username."
msgstr ""
#. module: auth_signup
#: selection:res.users,state:0
msgid "Active"
msgstr ""
#. module: auth_signup
#: code:addons/auth_signup/res_users.py:269
#: code:addons/auth_signup/res_users.py:270
#, python-format
msgid "Cannot send email: no outgoing email server configured.\n"
"You can configure it under Settings/General Settings."
@ -168,7 +180,7 @@ msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/js/auth_signup.js:174
#: code:addons/auth_signup/static/src/js/auth_signup.js:177
#, python-format
msgid "An email has been sent with credentials to reset your password"
msgstr ""
@ -189,16 +201,11 @@ msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/js/auth_signup.js:170
#: code:addons/auth_signup/static/src/js/auth_signup.js:173
#, python-format
msgid "Please enter a username or email address."
msgstr ""
#. module: auth_signup
#: selection:res.users,state:0
msgid "Resetting Password"
msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:13
@ -218,7 +225,7 @@ msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25
#, python-format
msgid "Log in"
msgstr ""
@ -230,35 +237,35 @@ msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/js/auth_signup.js:108
#: code:addons/auth_signup/static/src/js/auth_signup.js:111
#: code:addons/auth_signup/static/src/js/auth_signup.js:114
#: code:addons/auth_signup/static/src/js/auth_signup.js:117
#: code:addons/auth_signup/static/src/js/auth_signup.js:120
#: code:addons/auth_signup/static/src/js/auth_signup.js:167
#: code:addons/auth_signup/static/src/js/auth_signup.js:123
#: code:addons/auth_signup/static/src/js/auth_signup.js:170
#: code:addons/auth_signup/static/src/js/auth_signup.js:173
#, python-format
msgid "Login"
msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/js/auth_signup.js:94
#: code:addons/auth_signup/static/src/js/auth_signup.js:97
#, python-format
msgid "Invalid signup token"
msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/js/auth_signup.js:120
#: code:addons/auth_signup/static/src/js/auth_signup.js:123
#, python-format
msgid "Passwords do not match; please retype them."
msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/js/auth_signup.js:108
#: code:addons/auth_signup/static/src/js/auth_signup.js:167
#: code:addons/auth_signup/static/src/js/auth_signup.js:111
#: code:addons/auth_signup/static/src/js/auth_signup.js:170
#, python-format
msgid "No database selected !"
msgstr ""
@ -275,7 +282,7 @@ msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30
#, python-format
msgid "Back to Login"
msgstr ""
@ -285,13 +292,16 @@ msgstr ""
msgid "Partner"
msgstr ""
#. module: auth_signup
#: view:res.users:0
msgid "Send reset password instructions by email"
msgstr ""
#. module: auth_signup
#: field:res.partner,signup_token:0
msgid "Signup Token"
msgstr ""
#. module: auth_signup
#. openerp-web
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:26
#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29
#, python-format
msgid "Sign Up"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -25,6 +25,11 @@ msgstr ""
msgid "- In this same \"Search\" view, select the menu \"Save Current Filter\", enter the name (Ex: Create the 01/01/2012) and add the option \"Share with all users\""
msgstr ""
#. module: base_action_rule
#: help:base.action.rule,trg_date_id:0
msgid "When should the condition be triggered. If present, will be checked by the scheduler. If empty, will be checked at creation and update."
msgstr ""
#. module: base_action_rule
#: model:ir.model,name:base_action_rule.model_base_action_rule
msgid "Action Rules"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -239,7 +239,7 @@ msgid "To"
msgstr ""
#. module: base_calendar
#: code:addons/base_calendar/base_calendar.py:1260
#: code:addons/base_calendar/base_calendar.py:1262
#, python-format
msgid "Error!"
msgstr ""
@ -350,9 +350,9 @@ msgstr ""
#. module: base_calendar
#: code:addons/base_calendar/base_calendar.py:399
#: code:addons/base_calendar/base_calendar.py:441
#: code:addons/base_calendar/base_calendar.py:1013
#: code:addons/base_calendar/base_calendar.py:1015
#: code:addons/base_calendar/base_calendar.py:1460
#: code:addons/base_calendar/base_calendar.py:1017
#: code:addons/base_calendar/base_calendar.py:1462
#, python-format
msgid "Warning!"
msgstr ""
@ -509,7 +509,7 @@ msgid "Event alarm information"
msgstr ""
#. module: base_calendar
#: code:addons/base_calendar/base_calendar.py:1015
#: code:addons/base_calendar/base_calendar.py:1017
#, python-format
msgid "Count cannot be negative or 0."
msgstr ""
@ -733,7 +733,7 @@ msgid "Declined"
msgstr ""
#. module: base_calendar
#: code:addons/base_calendar/base_calendar.py:1460
#: code:addons/base_calendar/base_calendar.py:1462
#, python-format
msgid "Group by date is not supported, use the calendar view instead."
msgstr ""
@ -1175,7 +1175,7 @@ msgid "Select Weekdays"
msgstr ""
#. module: base_calendar
#: code:addons/base_calendar/base_calendar.py:1519
#: code:addons/base_calendar/base_calendar.py:1521
#: selection:calendar.attendee,availability:0
#: selection:calendar.event,show_as:0
#: selection:calendar.todo,show_as:0
@ -1421,7 +1421,7 @@ msgid "Weekday"
msgstr ""
#. module: base_calendar
#: code:addons/base_calendar/base_calendar.py:1013
#: code:addons/base_calendar/base_calendar.py:1015
#, python-format
msgid "Interval cannot be negative."
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -239,14 +239,6 @@ msgstr ""
msgid "Some Value"
msgstr ""
#. module: base_import
#. openerp-web
#: code:addons/base_import/static/src/xml/import.xml:231
#, python-format
msgid "The following CSV file shows how to import \n"
" suppliers and their respective contacts"
msgstr ""
#. module: base_import
#. openerp-web
#: code:addons/base_import/static/src/xml/import.xml:109
@ -308,13 +300,6 @@ msgstr ""
msgid "Semicolon"
msgstr ""
#. module: base_import
#. openerp-web
#: code:addons/base_import/static/src/xml/import.xml:233
#, python-format
msgid "Suppliers and their respective contacts"
msgstr ""
#. module: base_import
#. openerp-web
#: code:addons/base_import/static/src/xml/import.xml:179
@ -529,8 +514,10 @@ msgid "Reload data to check changes."
msgstr ""
#. module: base_import
#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly
msgid "base_import.tests.models.char.readonly"
#. openerp-web
#: code:addons/base_import/static/src/xml/import.xml:233
#, python-format
msgid "Customers and their respective contacts"
msgstr ""
#. module: base_import
@ -802,6 +789,14 @@ msgstr ""
msgid "XXX/ID"
msgstr ""
#. module: base_import
#. openerp-web
#: code:addons/base_import/static/src/xml/import.xml:231
#, python-format
msgid "The following CSV file shows how to import \n"
" customers and their respective contacts"
msgstr ""
#. module: base_import
#. openerp-web
#: code:addons/base_import/static/src/xml/import.xml:275
@ -912,6 +907,11 @@ msgid "If you import a file that contains one of the \n"
" depending if it's new or not."
msgstr ""
#. module: base_import
#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly
msgid "base_import.tests.models.char.readonly"
msgstr ""
#. module: base_import
#. openerp-web
#: code:addons/base_import/static/src/xml/import.xml:169

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -21,7 +21,7 @@ msgid "Check Validity"
msgstr ""
#. module: base_vat
#: code:addons/base_vat/base_vat.py:147
#: code:addons/base_vat/base_vat.py:152
#, python-format
msgid "This VAT number does not seem to be valid.\n"
"Note: the expected format is %s"
@ -38,7 +38,7 @@ msgid "Companies"
msgstr ""
#. module: base_vat
#: code:addons/base_vat/base_vat.py:111
#: code:addons/base_vat/base_vat.py:113
#, python-format
msgid "Error!"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -344,7 +344,7 @@ instance.board.AddToDashboard = instance.web.search.Input.extend({
},
load_data:function(){
var board = new instance.web.Model('board.board');
return board.call('list');
return board.call('list', [board.context()]);
},
_x:function() {
if (!instance.webclient) { return $.Deferred().reject(); }

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:36+0000\n"
"PO-Revision-Date: 2013-03-07 08:36+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -26,7 +26,7 @@ msgid "Allows you to configure your incoming mail server, and create leads from
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:881
#: code:addons/crm/crm_lead.py:898
#: selection:crm.case.stage,type:0
#: view:crm.lead:0
#: selection:crm.lead,type:0
@ -79,6 +79,11 @@ msgstr ""
msgid "Delay to close"
msgstr ""
#. module: crm
#: view:crm.lead:0
msgid "Available for mass mailing"
msgstr ""
#. module: crm
#: view:crm.case.stage:0
#: field:crm.case.stage,name:0
@ -175,8 +180,8 @@ msgid "Holds the Chatter summary (number of messages, ...). This summary is dire
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:624
#: code:addons/crm/crm_lead.py:744
#: code:addons/crm/crm_lead.py:640
#: code:addons/crm/crm_lead.py:761
#: code:addons/crm/crm_phonecall.py:280
#, python-format
msgid "Warning!"
@ -277,8 +282,8 @@ msgid "Categories"
msgstr ""
#. module: crm
#: help:crm.lead,opt_out:0
msgid "If opt-out is checked, this contact has refused to receive emails or unsubscribed to a campaign."
#: view:crm.segmentation:0
msgid "Segmentation Test"
msgstr ""
#. module: crm
@ -287,7 +292,7 @@ msgid "Prospect Partner"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:982
#: code:addons/crm/crm_lead.py:1002
#, python-format
msgid "No Subject"
msgstr ""
@ -402,7 +407,7 @@ msgid "Team Leader"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:1032
#: code:addons/crm/crm_lead.py:1052
#, python-format
msgid "%s a call for %s.%s"
msgstr ""
@ -428,7 +433,7 @@ msgid "#Opportunities"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:624
#: code:addons/crm/crm_lead.py:640
#, python-format
msgid "Please select more than one element (lead or opportunity) from the list view."
msgstr ""
@ -507,7 +512,7 @@ msgid "Planned Revenue"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:970
#: code:addons/crm/crm_lead.py:988
#, python-format
msgid "Customer Email"
msgstr ""
@ -562,7 +567,7 @@ msgid "Reminder on Lead: [[object.id ]] [[object.partner_id and 'of ' +object.pa
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:745
#: code:addons/crm/crm_lead.py:762
#, python-format
msgid "No customer name defined. Please fill one of the following fields: Company Name, Contact Name or Email (\"Name <email@address>\")"
msgstr ""
@ -684,7 +689,7 @@ msgid "Statistics Dashboard"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:861
#: code:addons/crm/crm_lead.py:878
#: model:crm.case.stage,name:crm.stage_lead2
#: selection:crm.case.stage,type:0
#: view:crm.lead:0
@ -748,7 +753,7 @@ msgid "Exclusive"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:584
#: code:addons/crm/crm_lead.py:600
#, python-format
msgid "From %s : %s"
msgstr ""
@ -758,6 +763,11 @@ msgstr ""
msgid "Convert to Opportunities"
msgstr ""
#. module: crm
#: view:crm.lead:0
msgid "Leads that did not ask not to be included in mass mailing campaigns"
msgstr ""
#. module: crm
#: view:crm.lead2opportunity.partner:0
#: view:crm.lead2opportunity.partner.mass:0
@ -924,7 +934,7 @@ msgid "Next Action"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:763
#: code:addons/crm/crm_lead.py:780
#, python-format
msgid "<b>Partner</b> set to <em>%s</em>."
msgstr ""
@ -1008,7 +1018,12 @@ msgid "Creation Date"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:698
#: help:crm.lead,opt_out:0
msgid "If opt-out is checked, this contact has refused to receive emails for mass mailing and marketing campaign. Filter 'Available for Mass Mailing' allows users to filter the leads when performing mass mailing."
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:715
#, python-format
msgid "Lead <b>converted into an Opportunity</b>"
msgstr ""
@ -1197,7 +1212,9 @@ msgid "Days to Close"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:1057
#: field:crm.case.section,complete_name:0
#, python-format
msgid "unknown"
msgstr ""
@ -1248,7 +1265,7 @@ msgid "Sales Marketing Department"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:569
#: code:addons/crm/crm_lead.py:585
#, python-format
msgid "Merged lead"
msgstr ""
@ -1269,7 +1286,7 @@ msgid "Segmentation Description"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:565
#: code:addons/crm/crm_lead.py:581
#, python-format
msgid "Merged opportunities"
msgstr ""
@ -1763,6 +1780,12 @@ msgstr ""
msgid "Support Department"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:1060
#, python-format
msgid "Meeting scheduled at '%s'<br> Subject: %s <br> Duration: %s hour(s)"
msgstr ""
#. module: crm
#: view:crm.lead.report:0
msgid "Show only lead"
@ -1817,7 +1840,7 @@ msgid "Leads"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:563
#: code:addons/crm/crm_lead.py:579
#, python-format
msgid "Merged leads"
msgstr ""
@ -1914,7 +1937,6 @@ msgid "Global CC"
msgstr ""
#. module: crm
#: view:crm.lead:0
#: view:crm.phonecall:0
#: model:ir.actions.act_window,name:crm.crm_case_categ_phone0
#: model:ir.ui.menu,name:crm.menu_crm_case_phone
@ -2091,11 +2113,6 @@ msgstr ""
msgid "Attendee information"
msgstr ""
#. module: crm
#: view:crm.segmentation:0
msgid "Segmentation Test"
msgstr ""
#. module: crm
#: view:crm.segmentation:0
msgid "Continue Process"
@ -2680,7 +2697,7 @@ msgid "Stage of case"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:569
#: code:addons/crm/crm_lead.py:585
#, python-format
msgid "Merged opportunity"
msgstr ""
@ -2825,7 +2842,7 @@ msgid "Working Hours"
msgstr ""
#. module: crm
#: code:addons/crm/crm_lead.py:968
#: code:addons/crm/crm_lead.py:986
#: view:crm.lead:0
#: field:crm.lead2opportunity.partner,partner_id:0
#: field:crm.lead2opportunity.partner.mass,partner_id:0

View File

@ -15,7 +15,11 @@
<field name="view_id" ref="crm_case_claims_tree_view"/>
<field name="context">{"search_default_user_id":uid, "stage_type":'claim'}</field>
<field name="search_view_id" ref="crm_claim.view_crm_case_claims_filter"/>
<field name="help">Record and track your customers' claims. Claims may be linked to a sales order or a lot. You can send emails with attachments and keep the full history for a claim (emails sent, intervention type and so on). Claims may automatically be linked to an email address using the mail gateway module.</field>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Record and track your customers' claims. Claims may be linked to a sales order or a lot.You can send emails with attachments and keep the full history for a claim (emails sent, intervention type and so on).Claims may automatically be linked to an email address using the mail gateway module.
</p>
</field>
</record>
<record model="ir.actions.act_window.view" id="action_crm_tag_tree_claim0">

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -288,6 +288,11 @@ msgstr ""
msgid "Next Action Date"
msgstr ""
#. module: crm_claim
#: model:ir.model,name:crm_claim.model_sale_config_settings
msgid "sale.config.settings"
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."
@ -740,11 +745,6 @@ msgstr ""
msgid "Refused stage"
msgstr ""
#. module: crm_claim
#: model:ir.actions.act_window,help:crm_claim.crm_case_categ_claim0
msgid "Record and track your customers' claims. Claims may be linked to a sales order or a lot. You can send emails with attachments and keep the full history for a claim (emails sent, intervention type and so on). Claims may automatically be linked to an email address using the mail gateway module."
msgstr ""
#. module: crm_claim
#: field:crm.claim.report,email:0
msgid "# Emails"
@ -761,8 +761,11 @@ msgid "February"
msgstr ""
#. module: crm_claim
#: model:ir.model,name:crm_claim.model_sale_config_settings
msgid "sale.config.settings"
#: model:ir.actions.act_window,help:crm_claim.crm_case_categ_claim0
msgid "<p class=\"oe_view_nocontent_create\">\n"
" Record and track your customers' claims. Claims may be linked to a sales order or a lot.You can send emails with attachments and keep the full history for a claim (emails sent, intervention type and so on).Claims may automatically be linked to an email address using the mail gateway module.\n"
" </p>\n"
" "
msgstr ""
#. module: crm_claim

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -88,7 +88,11 @@
<field name="view_mode">tree,form</field>
<field name="view_id" ref="view_wiki_tree"/>
<field name="search_view_id" ref="view_wiki_filter"/>
<field name="help">Create web pages</field>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Click to create a new web page.
</p>
</field>
</record>
<menuitem id="menu_page" parent="menu_wiki" name="Pages" action="action_page" sequence="10"/>
<record id="action_category" model="ir.actions.act_window">

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -165,6 +165,11 @@ msgstr ""
msgid "Parent Menu"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
msgstr ""
#. module: document_page
#: field:document.page,create_date:0
msgid "Created on"
@ -191,11 +196,6 @@ msgstr ""
msgid "e.g. Once upon a time..."
msgstr ""
#. module: document_page
#: model:ir.actions.act_window,help:document_page.action_page
msgid "Create web pages"
msgstr ""
#. module: document_page
#: view:document.page.history:0
msgid "Document History"
@ -217,8 +217,11 @@ msgid "History"
msgstr ""
#. module: document_page
#: field:document.page,write_date:0
msgid "Modification Date"
#: model:ir.actions.act_window,help:document_page.action_page
msgid "<p class=\"oe_view_nocontent_create\">\n"
" Click to create a new web page.\n"
" </p>\n"
" "
msgstr ""
#. module: document_page

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -22,8 +22,8 @@ msgid "From"
msgstr ""
#. module: email_template
#: field:mail.compose.message,template_id:0
msgid "Template"
#: view:res.partner:0
msgid "Partners that did not ask not to be included in mass mailing campaigns"
msgstr ""
#. module: email_template
@ -43,9 +43,9 @@ msgid "Email contents (in raw HTML format)"
msgstr ""
#. module: email_template
#: field:email.template,email_to:0
#: field:email_template.preview,email_to:0
msgid "To (Emails)"
#: help:email.template,email_from:0
#: help:email_template.preview,email_from:0
msgid "Sender address (placeholders may be used here). If not set, the default value will be the author's email alias if configured, or email address."
msgstr ""
#. module: email_template
@ -66,29 +66,23 @@ msgstr ""
msgid "Field"
msgstr ""
#. module: email_template
#: help:email.template,email_from:0
#: help:email_template.preview,email_from:0
msgid "Sender address (placeholders may be used here)"
msgstr ""
#. module: email_template
#: view:email.template:0
msgid "Remove context action"
msgstr ""
#. module: email_template
#: help:email.template,mail_server_id:0
#: help:email_template.preview,mail_server_id:0
msgid "Optional preferred server for outgoing mails. If not set, the highest priority one will be used."
msgstr ""
#. module: email_template
#: field:email.template,report_name:0
#: field:email_template.preview,report_name:0
msgid "Report Filename"
msgstr ""
#. module: email_template
#: field:email.template,email_to:0
#: field:email_template.preview,email_to:0
msgid "To (Emails)"
msgstr ""
#. module: email_template
#: view:email.template:0
msgid "Preview"
@ -112,11 +106,16 @@ msgid "Body"
msgstr ""
#. module: email_template
#: code:addons/email_template/email_template.py:244
#: code:addons/email_template/email_template.py:247
#, python-format
msgid "%s (copy)"
msgstr ""
#. module: email_template
#: field:mail.compose.message,template_id:0
msgid "Template"
msgstr ""
#. module: email_template
#: help:email.template,user_signature:0
#: help:email_template.preview,user_signature:0
@ -139,6 +138,11 @@ msgstr ""
msgid "When a relationship field is selected as first field, this field shows the document model the relationship goes to."
msgstr ""
#. module: email_template
#: view:res.partner:0
msgid "Available for mass mailing"
msgstr ""
#. module: email_template
#: model:ir.model,name:email_template.model_email_template
msgid "Email Templates"
@ -151,6 +155,12 @@ msgid "Name to use for the generated report file (may contain placeholders)\n"
"The extension can be omitted and will then come from the report type."
msgstr ""
#. module: email_template
#: code:addons/email_template/email_template.py:234
#, python-format
msgid "Warning"
msgstr ""
#. module: email_template
#: field:email.template,ref_ir_act_window:0
#: field:email_template.preview,ref_ir_act_window:0
@ -222,6 +232,11 @@ msgstr ""
msgid "Using sample document"
msgstr ""
#. module: email_template
#: help:res.partner,opt_out:0
msgid "If opt-out is checked, this contact has refused to receive emails for mass mailing and marketing campaign. Filter 'Available for Mass Mailing' allows users to filter the partners when performing mass mailing."
msgstr ""
#. module: email_template
#: view:email.template:0
#: model:ir.actions.act_window,name:email_template.action_email_template_tree_all
@ -361,7 +376,7 @@ msgid "Attachments"
msgstr ""
#. module: email_template
#: code:addons/email_template/email_template.py:231
#: code:addons/email_template/email_template.py:234
#, python-format
msgid "Deletion of the action record failed."
msgstr ""
@ -390,14 +405,15 @@ msgid "Email Details"
msgstr ""
#. module: email_template
#: code:addons/email_template/email_template.py:196
#: code:addons/email_template/email_template.py:199
#, python-format
msgid "Send Mail (%s)"
msgstr ""
#. module: email_template
#: help:res.partner,opt_out:0
msgid "If checked, this partner will not receive any automated email notifications, such as the availability of invoices."
#: help:email.template,mail_server_id:0
#: help:email_template.preview,mail_server_id:0
msgid "Optional preferred server for outgoing mails. If not set, the highest priority one will be used."
msgstr ""
#. module: email_template
@ -418,9 +434,8 @@ msgid "When a relationship field is selected as first field, this field lets you
msgstr ""
#. module: email_template
#: code:addons/email_template/email_template.py:231
#, python-format
msgid "Warning"
#: view:res.partner:0
msgid "Suppliers"
msgstr ""
#. module: email_template

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -153,7 +153,7 @@ msgid "Incoming Mail Server"
msgstr ""
#. module: fetchmail
#: code:addons/fetchmail/fetchmail.py:164
#: code:addons/fetchmail/fetchmail.py:163
#, python-format
msgid "Connection test failed!"
msgstr ""
@ -174,7 +174,7 @@ msgid "Name"
msgstr ""
#. module: fetchmail
#: code:addons/fetchmail/fetchmail.py:164
#: code:addons/fetchmail/fetchmail.py:163
#, python-format
msgid "Here is what we got instead:\n"
" %s."

View File

@ -591,6 +591,9 @@
<field name="view_mode">tree,graph</field>
<field name="context">{"search_default_groupby_vehicle" : True}</field>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Click to create a new odometer log.
</p>
<p>
Here you can add various odometer entries for all vehicles.
You can also show odometer value for a particular vehicle using

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:39+0000\n"
"PO-Revision-Date: 2013-03-07 08:39+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -586,6 +586,11 @@ msgstr ""
msgid "Refueling"
msgstr ""
#. module: fleet
#: model:fleet.service.type,name:fleet.type_service_45
msgid "Tire Replacement"
msgstr ""
#. module: fleet
#: help:fleet.vehicle,message_summary:0
msgid "Holds the Chatter summary (number of messages, ...). This summary is directly in html format in order to be inserted in kanban views."
@ -765,8 +770,8 @@ msgid "Services for vehicles"
msgstr ""
#. module: fleet
#: view:fleet.vehicle.log.contract:0
msgid "Indicative Cost"
#: model:fleet.service.type,name:fleet.type_service_service_16
msgid "Options"
msgstr ""
#. module: fleet
@ -1122,8 +1127,16 @@ msgid "Cost Type"
msgstr ""
#. module: fleet
#: model:fleet.service.type,name:fleet.type_service_4
msgid "A/C Evaporator Replacement"
#: model:ir.actions.act_window,help:fleet.fleet_vehicle_odometer_act
msgid "<p class=\"oe_view_nocontent_create\">\n"
" Click to create a new odometer log. \n"
" </p>\n"
" <p>\n"
" Here you can add various odometer entries for all vehicles.\n"
" You can also show odometer value for a particular vehicle using\n"
" the search field.\n"
" </p>\n"
" "
msgstr ""
#. module: fleet
@ -1299,8 +1312,8 @@ msgid "Odometer"
msgstr ""
#. module: fleet
#: model:fleet.service.type,name:fleet.type_service_45
msgid "Tire Replacement"
#: model:fleet.service.type,name:fleet.type_service_4
msgid "A/C Evaporator Replacement"
msgstr ""
#. module: fleet
@ -1403,13 +1416,8 @@ msgid "Write here all other information relative to this contract"
msgstr ""
#. module: fleet
#: model:ir.actions.act_window,help:fleet.fleet_vehicle_odometer_act
msgid "<p>\n"
" Here you can add various odometer entries for all vehicles.\n"
" You can also show odometer value for a particular vehicle using\n"
" the search field.\n"
" </p>\n"
" "
#: view:fleet.vehicle.log.contract:0
msgid "Indicative Cost"
msgstr ""
#. module: fleet
@ -1655,11 +1663,6 @@ msgstr ""
msgid "Ignition Coil Replacement"
msgstr ""
#. module: fleet
#: model:fleet.service.type,name:fleet.type_service_service_16
msgid "Options"
msgstr ""
#. module: fleet
#: model:fleet.service.type,name:fleet.type_contract_repairing
msgid "Repairing"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -708,6 +708,12 @@ msgstr ""
msgid "Allow invoicing based on timesheets (the sale application will be installed)"
msgstr ""
#. module: hr
#: code:addons/hr/hr.py:221
#, python-format
msgid "Welcome to %s! Please help him/her take the first steps with OpenERP!"
msgstr ""
#. module: hr
#: view:hr.employee.category:0
msgid "Employees Categories"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -211,6 +211,11 @@
<field name="context">{"default_hr_expense_ok":1}</field>
<field name="domain">[('hr_expense_ok','=',True)]</field>
<field name="search_view_id" ref="product.product_search_form_view"/>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Click to create a new expense category.
</p>
</field>
</record>
<menuitem id="menu_hr_product" name="Expense Categories" parent="hr.menu_hr_configuration" action="hr_expense_product"/>

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -21,6 +21,12 @@ msgstr ""
msgid "Confirmed Expenses"
msgstr ""
#. module: hr_expense
#: code:addons/hr_expense/hr_expense.py:349
#, python-format
msgid "No purchase account found for the product %s (or for his category), please configure one."
msgstr ""
#. module: hr_expense
#: model:ir.model,name:hr_expense.model_hr_expense_line
msgid "Expense Line"
@ -87,6 +93,11 @@ msgstr ""
msgid "Unread Messages"
msgstr ""
#. module: hr_expense
#: selection:hr.expense.expense,state:0
msgid "Waiting Payment"
msgstr ""
#. module: hr_expense
#: field:hr.expense.expense,company_id:0
#: view:hr.expense.report:0
@ -115,11 +126,6 @@ msgstr ""
msgid "Expenses Statistics"
msgstr ""
#. module: hr_expense
#: view:hr.expense.expense:0
msgid "Open Receipt"
msgstr ""
#. module: hr_expense
#: view:hr.expense.report:0
#: field:hr.expense.report,day:0
@ -143,8 +149,10 @@ msgstr ""
#. module: hr_expense
#: code:addons/hr_expense/hr_expense.py:172
#: code:addons/hr_expense/hr_expense.py:181
#: code:addons/hr_expense/hr_expense.py:197
#: code:addons/hr_expense/hr_expense.py:238
#: code:addons/hr_expense/hr_expense.py:240
#: code:addons/hr_expense/hr_expense.py:349
#: code:addons/hr_expense/hr_expense.py:353
#, python-format
msgid "Error!"
msgstr ""
@ -175,6 +183,11 @@ msgstr ""
msgid "The direct manager refuses the sheet.Reset as draft."
msgstr ""
#. module: hr_expense
#: view:hr.expense.expense:0
msgid "Open Accounting Entries"
msgstr ""
#. module: hr_expense
#: help:hr.expense.expense,message_unread:0
msgid "If checked new messages require your attention."
@ -200,14 +213,6 @@ msgstr ""
msgid "Certified honest and conform,"
msgstr ""
#. module: hr_expense
#: help:hr.expense.expense,state:0
msgid "When the expense request is created the status is 'Draft'.\n"
" It is confirmed by the user and request is sent to admin, the status is 'Waiting Confirmation'. \n"
"If the admin accepts it, the status is 'Accepted'.\n"
" If a receipt is made for the expense request, the status is 'Done'."
msgstr ""
#. module: hr_expense
#: help:hr.expense.expense,date_confirm:0
msgid "Date of the confirmation of the sheet expense. It's filled when the button Confirm is pressed."
@ -225,7 +230,7 @@ msgid "Holds the Chatter summary (number of messages, ...). This summary is dire
msgstr ""
#. module: hr_expense
#: code:addons/hr_expense/hr_expense.py:301
#: code:addons/hr_expense/hr_expense.py:453
#, python-format
msgid "Warning"
msgstr ""
@ -250,6 +255,14 @@ msgstr ""
msgid "Average Price"
msgstr ""
#. module: hr_expense
#: help:hr.expense.expense,state:0
msgid "When the expense request is created the status is 'Draft'.\n"
" It is confirmed by the user and request is sent to admin, the status is 'Waiting Confirmation'. \n"
"If the admin accepts it, the status is 'Accepted'.\n"
" If the accounting entries are made for the expense request, the status is 'Waiting Payment'."
msgstr ""
#. module: hr_expense
#: view:hr.expense.expense:0
#: model:process.transition.action,name:hr_expense.process_transition_action_confirm0
@ -332,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer"
msgstr ""
#. module: hr_expense
#: code:addons/hr_expense/hr_expense.py:197
#: code:addons/hr_expense/hr_expense.py:238
#, python-format
msgid "The employee must have a home address."
msgstr ""
@ -387,7 +400,7 @@ msgid "After creating invoice, reimburse expenses"
msgstr ""
#. module: hr_expense
#: code:addons/hr_expense/hr_expense.py:116
#: code:addons/hr_expense/hr_expense.py:121
#, python-format
msgid "Warning!"
msgstr ""
@ -404,9 +417,15 @@ msgid "Validation Date"
msgstr ""
#. module: hr_expense
#: code:addons/hr_expense/hr_expense.py:226
#: code:addons/hr_expense/hr_expense.py:378
#, python-format
msgid "Expense Receipt"
msgid "Expense Account Move"
msgstr ""
#. module: hr_expense
#: code:addons/hr_expense/hr_expense.py:240
#, python-format
msgid "The employee must have a payable account set on his home address."
msgstr ""
#. module: hr_expense
@ -480,7 +499,7 @@ msgid "Free Notes"
msgstr ""
#. module: hr_expense
#: code:addons/hr_expense/hr_expense.py:301
#: code:addons/hr_expense/hr_expense.py:453
#, python-format
msgid "Selected Unit of Measure does not belong to the same category as the product Unit of Measure"
msgstr ""
@ -506,7 +525,12 @@ msgid "Draft"
msgstr ""
#. module: hr_expense
#: code:addons/hr_expense/hr_expense.py:181
#: selection:hr.expense.expense,state:0
msgid "Paid"
msgstr ""
#. module: hr_expense
#: code:addons/hr_expense/hr_expense.py:353
#, python-format
msgid "Please configure Default Expense account for Product purchase: `property_account_expense_categ`."
msgstr ""
@ -527,6 +551,7 @@ msgid "The direct manager approves the sheet"
msgstr ""
#. module: hr_expense
#: view:hr.expense.expense:0
#: field:hr.expense.expense,amount:0
msgid "Total Amount"
msgstr ""
@ -616,6 +641,11 @@ msgstr ""
msgid "Summary"
msgstr ""
#. module: hr_expense
#: model:ir.model,name:hr_expense.model_account_move_line
msgid "Journal Items"
msgstr ""
#. module: hr_expense
#: model:product.template,name:hr_expense.car_travel_product_template
msgid "Car Travel Expenses"
@ -669,7 +699,6 @@ msgid "Unit Price"
msgstr ""
#. module: hr_expense
#: selection:hr.expense.expense,state:0
#: view:hr.expense.report:0
#: selection:hr.expense.report,state:0
msgid "Done"
@ -727,6 +756,14 @@ msgstr ""
msgid "This document must be dated and signed for reimbursement"
msgstr ""
#. module: hr_expense
#: model:ir.actions.act_window,help:hr_expense.hr_expense_product
msgid "<p class=\"oe_view_nocontent_create\">\n"
" Click to create a new expense category. \n"
" </p>\n"
" "
msgstr ""
#. module: hr_expense
#: model:process.transition,note:hr_expense.process_transition_refuseexpense0
msgid "Expense is refused."
@ -830,7 +867,7 @@ msgid "Name"
msgstr ""
#. module: hr_expense
#: code:addons/hr_expense/hr_expense.py:116
#: code:addons/hr_expense/hr_expense.py:121
#, python-format
msgid "You can only delete draft expenses!"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -31,7 +31,7 @@ msgid "Waiting Second Approval"
msgstr ""
#. module: hr_holidays
#: code:addons/hr_holidays/hr_holidays.py:298
#: code:addons/hr_holidays/hr_holidays.py:309
#, python-format
msgid "You cannot modify a leave request that has been approved. Contact a human resource manager."
msgstr ""
@ -252,12 +252,12 @@ msgid "Holds the Chatter summary (number of messages, ...). This summary is dire
msgstr ""
#. module: hr_holidays
#: code:addons/hr_holidays/hr_holidays.py:238
#: code:addons/hr_holidays/hr_holidays.py:249
#: code:addons/hr_holidays/hr_holidays.py:274
#: code:addons/hr_holidays/hr_holidays.py:298
#: code:addons/hr_holidays/hr_holidays.py:421
#: code:addons/hr_holidays/hr_holidays.py:471
#: code:addons/hr_holidays/hr_holidays.py:260
#: code:addons/hr_holidays/hr_holidays.py:285
#: code:addons/hr_holidays/hr_holidays.py:309
#: code:addons/hr_holidays/hr_holidays.py:432
#: code:addons/hr_holidays/hr_holidays.py:482
#, python-format
msgid "Warning!"
msgstr ""
@ -295,7 +295,7 @@ msgid "Sick Leaves"
msgstr ""
#. module: hr_holidays
#: code:addons/hr_holidays/hr_holidays.py:478
#: code:addons/hr_holidays/hr_holidays.py:489
#, python-format
msgid "Leave Request for %s"
msgstr ""
@ -366,7 +366,7 @@ msgid "Wheat"
msgstr ""
#. module: hr_holidays
#: code:addons/hr_holidays/hr_holidays.py:476
#: code:addons/hr_holidays/hr_holidays.py:487
#, python-format
msgid "Allocation for %s"
msgstr ""
@ -386,7 +386,7 @@ msgid "Number of Days"
msgstr ""
#. module: hr_holidays
#: code:addons/hr_holidays/hr_holidays.py:471
#: code:addons/hr_holidays/hr_holidays.py:482
#, python-format
msgid "The feature behind the field 'Remaining Legal Leaves' can only be used when there is only one leave type with the option 'Allow to Override Limit' unchecked. (%s Found). Otherwise, the update is ambiguous as we cannot decide on which leave type the update has to be done. \n"
"You may prefer to use the classic menus 'Leave Requests' and 'Allocation Requests' located in 'Human Resources \\ Leaves' to manage the leave days of the employees if the configuration does not allow to use this field."
@ -476,7 +476,7 @@ msgid "Start Date"
msgstr ""
#. module: hr_holidays
#: code:addons/hr_holidays/hr_holidays.py:421
#: code:addons/hr_holidays/hr_holidays.py:432
#, python-format
msgid "There are not enough %s allocated for employee %s; please create an allocation request for this leave type."
msgstr ""
@ -500,11 +500,6 @@ msgid "<p class=\"oe_view_nocontent_create\">\n"
" "
msgstr ""
#. module: hr_holidays
#: sql_constraint:hr.holidays:0
msgid "The employee or employee category of this request is missing."
msgstr ""
#. module: hr_holidays
#: view:hr.holidays:0
msgid "Category"
@ -607,6 +602,11 @@ msgstr ""
msgid "Active"
msgstr ""
#. module: hr_holidays
#: sql_constraint:hr.holidays:0
msgid "The employee or employee category of this request is missing. Please make sure that your user login is linked to an employee."
msgstr ""
#. module: hr_holidays
#: view:hr.holidays:0
msgid "Add a reason..."
@ -711,7 +711,7 @@ msgid "Validated"
msgstr ""
#. module: hr_holidays
#: code:addons/hr_holidays/hr_holidays.py:238
#: code:addons/hr_holidays/hr_holidays.py:249
#, python-format
msgid "You cannot delete a leave which is in %s state."
msgstr ""
@ -773,7 +773,7 @@ msgid "To Submit"
msgstr ""
#. module: hr_holidays
#: code:addons/hr_holidays/hr_holidays.py:343
#: code:addons/hr_holidays/hr_holidays.py:354
#: view:hr.holidays:0
#: selection:hr.holidays,type:0
#: field:resource.calendar.leaves,holiday_id:0
@ -862,7 +862,7 @@ msgid "Both Approved and Confirmed"
msgstr ""
#. module: hr_holidays
#: code:addons/hr_holidays/hr_holidays.py:440
#: code:addons/hr_holidays/hr_holidays.py:451
#, python-format
msgid "Request approved, waiting second validation."
msgstr ""
@ -878,8 +878,8 @@ msgid "Messages and communication history"
msgstr ""
#. module: hr_holidays
#: code:addons/hr_holidays/hr_holidays.py:249
#: code:addons/hr_holidays/hr_holidays.py:274
#: code:addons/hr_holidays/hr_holidays.py:260
#: code:addons/hr_holidays/hr_holidays.py:285
#: sql_constraint:hr.holidays:0
#, python-format
msgid "The start date must be anterior to the end date."

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -192,11 +192,11 @@ msgid "Notes"
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:866
#: code:addons/hr_payroll/hr_payroll.py:871
#: code:addons/hr_payroll/hr_payroll.py:877
#: code:addons/hr_payroll/hr_payroll.py:894
#: code:addons/hr_payroll/hr_payroll.py:900
#: code:addons/hr_payroll/hr_payroll.py:876
#: code:addons/hr_payroll/hr_payroll.py:882
#: code:addons/hr_payroll/hr_payroll.py:899
#: code:addons/hr_payroll/hr_payroll.py:905
#, python-format
msgid "Error!"
msgstr ""
@ -269,7 +269,7 @@ msgid "Draft Slip"
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:427
#: code:addons/hr_payroll/hr_payroll.py:432
#, python-format
msgid "Normal Working Days paid at 100%"
msgstr ""
@ -301,6 +301,11 @@ msgstr ""
msgid "Total Working Days"
msgstr ""
#. module: hr_payroll
#: constraint:hr.payroll.structure:0
msgid "Error ! You cannot create a recursive Salary Structure."
msgstr ""
#. module: hr_payroll
#: help:hr.payslip.line,code:0
#: help:hr.salary.rule,code:0
@ -407,7 +412,7 @@ msgid "Percentage based on"
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:85
#: code:addons/hr_payroll/hr_payroll.py:90
#, python-format
msgid "%s (copy)"
msgstr ""
@ -455,7 +460,7 @@ msgid "Salary Rules"
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:336
#: code:addons/hr_payroll/hr_payroll.py:341
#, python-format
msgid "Refund: "
msgstr ""
@ -487,7 +492,7 @@ msgid "Fixed Amount"
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:365
#: code:addons/hr_payroll/hr_payroll.py:370
#, python-format
msgid "Warning!"
msgstr ""
@ -626,7 +631,7 @@ msgid "Computation"
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:894
#: code:addons/hr_payroll/hr_payroll.py:899
#, python-format
msgid "Wrong range condition defined for salary rule %s (%s)."
msgstr ""
@ -661,7 +666,7 @@ msgid "If its checked, indicates that all payslips generated from here are refun
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:871
#: code:addons/hr_payroll/hr_payroll.py:876
#, python-format
msgid "Wrong percentage base or quantity defined for salary rule %s (%s)."
msgstr ""
@ -719,7 +724,7 @@ msgid "Percentage (%)"
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:866
#: code:addons/hr_payroll/hr_payroll.py:871
#, python-format
msgid "Wrong quantity defined for salary rule %s (%s)."
msgstr ""
@ -832,7 +837,7 @@ msgid "Contribution"
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:346
#: code:addons/hr_payroll/hr_payroll.py:351
#, python-format
msgid "Refund Payslip"
msgstr ""
@ -899,7 +904,7 @@ msgid "General"
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:669
#: code:addons/hr_payroll/hr_payroll.py:674
#, python-format
msgid "Salary Slip of %s for %s"
msgstr ""
@ -1042,7 +1047,7 @@ msgid "PaySlip Lines By Conribution Register"
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:365
#: code:addons/hr_payroll/hr_payroll.py:370
#, python-format
msgid "You cannot delete a payslip which is not draft or cancelled!"
msgstr ""
@ -1144,7 +1149,7 @@ msgid "Salary Rule Categories Hierarchy"
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:877
#: code:addons/hr_payroll/hr_payroll.py:882
#, python-format
msgid "Wrong python code defined for salary rule %s (%s)."
msgstr ""
@ -1175,7 +1180,7 @@ msgid "The code that can be used in the salary rules"
msgstr ""
#. module: hr_payroll
#: code:addons/hr_payroll/hr_payroll.py:900
#: code:addons/hr_payroll/hr_payroll.py:905
#, python-format
msgid "Wrong python condition defined for salary rule %s (%s)."
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -21,13 +21,13 @@ msgid "Credit Account"
msgstr ""
#. module: hr_payroll_account
#: code:addons/hr_payroll_account/hr_payroll_account.py:103
#: code:addons/hr_payroll_account/hr_payroll_account.py:104
#, python-format
msgid "Payslip of %s"
msgstr ""
#. module: hr_payroll_account
#: code:addons/hr_payroll_account/hr_payroll_account.py:156
#: code:addons/hr_payroll_account/hr_payroll_account.py:157
#, python-format
msgid "The Expense Journal \"%s\" has not properly configured the Credit Account!"
msgstr ""
@ -38,7 +38,7 @@ msgid "Accounting Entry"
msgstr ""
#. module: hr_payroll_account
#: code:addons/hr_payroll_account/hr_payroll_account.py:172
#: code:addons/hr_payroll_account/hr_payroll_account.py:173
#, python-format
msgid "The Expense Journal \"%s\" has not properly configured the Debit Account!"
msgstr ""
@ -85,8 +85,8 @@ msgid "Generate payslips for all selected employees"
msgstr ""
#. module: hr_payroll_account
#: code:addons/hr_payroll_account/hr_payroll_account.py:156
#: code:addons/hr_payroll_account/hr_payroll_account.py:172
#: code:addons/hr_payroll_account/hr_payroll_account.py:157
#: code:addons/hr_payroll_account/hr_payroll_account.py:173
#, python-format
msgid "Configuration Error!"
msgstr ""
@ -108,8 +108,8 @@ msgid "Pay Slip"
msgstr ""
#. module: hr_payroll_account
#: code:addons/hr_payroll_account/hr_payroll_account.py:158
#: code:addons/hr_payroll_account/hr_payroll_account.py:174
#: code:addons/hr_payroll_account/hr_payroll_account.py:159
#: code:addons/hr_payroll_account/hr_payroll_account.py:175
#, python-format
msgid "Adjustment Entry"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -176,10 +176,10 @@ msgid "Costs and Revenues"
msgstr ""
#. module: hr_timesheet
#: code:addons/hr_timesheet/hr_timesheet.py:144
#: code:addons/hr_timesheet/hr_timesheet.py:149
#: code:addons/hr_timesheet/hr_timesheet.py:180
#: code:addons/hr_timesheet/hr_timesheet.py:182
#: code:addons/hr_timesheet/hr_timesheet.py:150
#: code:addons/hr_timesheet/hr_timesheet.py:155
#: code:addons/hr_timesheet/hr_timesheet.py:186
#: code:addons/hr_timesheet/hr_timesheet.py:188
#: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43
#, python-format
msgid "Warning!"
@ -270,7 +270,7 @@ msgid "Specifies employee's designation as a product with type 'service'."
msgstr ""
#. module: hr_timesheet
#: code:addons/hr_timesheet/hr_timesheet.py:182
#: code:addons/hr_timesheet/hr_timesheet.py:188
#, python-format
msgid "No analytic account is defined on the project.\n"
"Please set one or we cannot automatically fill the timesheet."
@ -282,7 +282,7 @@ msgid "Total cost"
msgstr ""
#. module: hr_timesheet
#: code:addons/hr_timesheet/hr_timesheet.py:180
#: code:addons/hr_timesheet/hr_timesheet.py:186
#, python-format
msgid "No 'Analytic Journal' is defined for employee %s \n"
"Define an employee for the selected user and assign an 'Analytic Journal'!"
@ -389,7 +389,7 @@ msgid "August"
msgstr ""
#. module: hr_timesheet
#: code:addons/hr_timesheet/hr_timesheet.py:149
#: code:addons/hr_timesheet/hr_timesheet.py:155
#, python-format
msgid "No analytic journal defined for '%s'.\n"
"You should assign an analytic journal on the employee form."
@ -574,7 +574,7 @@ msgid "Sign Out By Project"
msgstr ""
#. module: hr_timesheet
#: code:addons/hr_timesheet/hr_timesheet.py:144
#: code:addons/hr_timesheet/hr_timesheet.py:150
#, python-format
msgid "Please create an employee for this user, using the menu: Human Resources > Employees."
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -98,7 +98,7 @@ msgid "Profit"
msgstr ""
#. module: hr_timesheet_invoice
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141
#, python-format
msgid "You cannot modify an invoiced analytic line!"
msgstr ""
@ -154,7 +154,7 @@ msgid "Invoiced Amount"
msgstr ""
#. module: hr_timesheet_invoice
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185
#, python-format
msgid "Analytic Account incomplete !"
msgstr ""
@ -229,7 +229,7 @@ msgid "Deadline"
msgstr ""
#. module: hr_timesheet_invoice
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243
#, python-format
msgid "Configuration Error!"
msgstr ""
@ -266,7 +266,7 @@ msgid "Costs to invoice"
msgstr ""
#. module: hr_timesheet_invoice
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243
#, python-format
msgid "Please define income account for product '%s'."
msgstr ""
@ -723,7 +723,7 @@ msgid "Timesheets to invoice"
msgstr ""
#. module: hr_timesheet_invoice
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186
#, python-format
msgid "Contract incomplete. Please fill in the Customer and Pricelist fields."
msgstr ""
@ -839,7 +839,7 @@ msgid "April"
msgstr ""
#. module: hr_timesheet_invoice
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230
#, python-format
msgid "There is no product defined. Please select one or force the product through the wizard."
msgstr ""
@ -855,6 +855,11 @@ msgstr ""
msgid "Invoice is already linked to some of the analytic line(s)!"
msgstr ""
#. module: hr_timesheet_invoice
#: view:hr.timesheet.invoice.create:0
msgid "When reinvoicing costs, the amount on the invoice lines is given by the sale price of the corresponding product (if any, and if its sale price is not 0). You can use the following field to enforce the use of a single product for all the chosen lines in the future invoices."
msgstr ""
#. module: hr_timesheet_invoice
#: field:hr.timesheet.invoice.create,name:0
msgid "Description"
@ -867,8 +872,8 @@ msgid "Units"
msgstr ""
#. module: hr_timesheet_invoice
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140
#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230
#, python-format
msgid "Error!"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -136,8 +136,8 @@ msgid "Based on the timesheet"
msgstr ""
#. module: hr_timesheet_sheet
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398
#, python-format
msgid "You cannot modify an entry in a confirmed timesheet."
msgstr ""
@ -192,8 +192,8 @@ msgid "Please create an employee and associate it with this user."
msgstr ""
#. module: hr_timesheet_sheet
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422
#, python-format
msgid "You cannot enter an attendance date outside the current timesheet dates."
msgstr ""
@ -228,9 +228,9 @@ msgstr ""
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429
#: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38
#, python-format
msgid "Error!"
@ -755,7 +755,7 @@ msgid "Search Account"
msgstr ""
#. module: hr_timesheet_sheet
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429
#, python-format
msgid "You cannot modify an entry in a confirmed timesheet"
msgstr ""
@ -1019,8 +1019,8 @@ msgid "Invoice rate"
msgstr ""
#. module: hr_timesheet_sheet
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402
#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422
#, python-format
msgid "User Error!"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -426,7 +426,7 @@ msgid "Note"
msgstr ""
#. module: lunch
#: code:addons/lunch/lunch.py:250
#: code:addons/lunch/lunch.py:257
#, python-format
msgid "Add"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -21,12 +21,14 @@ msgid "Followers Form"
msgstr ""
#. module: mail
#: model:ir.model,name:mail.model_publisher_warranty_contract
msgid "publisher_warranty.contract"
#: code:addons/mail/mail_thread.py:246
#, python-format
msgid "%s created"
msgstr ""
#. module: mail
#: field:mail.compose.message,author_id:0
#: view:mail.mail:0
#: field:mail.message,author_id:0
msgid "Author"
msgstr ""
@ -53,7 +55,7 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:296
#: code:addons/mail/static/src/xml/mail.xml:313
#, python-format
msgid "more messages"
msgstr ""
@ -97,8 +99,10 @@ msgid "Public"
msgstr ""
#. module: mail
#: view:mail.message:0
msgid "Unread"
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:277
#, python-format
msgid "to"
msgstr ""
#. module: mail
@ -122,6 +126,13 @@ msgstr ""
msgid "Email composition wizard"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:268
#, python-format
msgid "updated document"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail_followers.xml:23
@ -134,6 +145,15 @@ msgstr ""
msgid "Parent"
msgstr ""
#. module: mail
#: help:res.partner,notification_email_send:0
msgid "Policy to receive emails for new messages pushed to your personal Inbox:\n"
"- Never: no emails are sent\n"
"- Incoming Emails only: for messages received by the system via email\n"
"- Incoming Emails and Discussions: for incoming emails along with internal discussions\n"
"- All Messages: for every notification you receive in your Inbox"
msgstr ""
#. module: mail
#: field:mail.group,message_unread:0
#: field:mail.thread,message_unread:0
@ -143,14 +163,7 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:267
#, python-format
msgid "to"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:296
#: code:addons/mail/static/src/xml/mail.xml:313
#, python-format
msgid "show"
msgstr ""
@ -162,7 +175,7 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/js/mail.js:1019
#: code:addons/mail/static/src/js/mail.js:1029
#, python-format
msgid "Do you really want to delete this message?"
msgstr ""
@ -187,14 +200,15 @@ msgid "Warning! \n"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/js/mail_followers.js:159
#, python-format
msgid "followers"
#: field:mail.compose.message,res_id:0
#: field:mail.followers,res_id:0
#: field:mail.message,res_id:0
#: field:mail.wizard.invite,res_id:0
msgid "Related Document ID"
msgstr ""
#. module: mail
#: code:addons/mail/mail_message.py:726
#: code:addons/mail/mail_message.py:737
#, python-format
msgid "Access Denied"
msgstr ""
@ -217,7 +231,7 @@ msgid "Support"
msgstr ""
#. module: mail
#: code:addons/mail/mail_message.py:727
#: code:addons/mail/mail_message.py:738
#, python-format
msgid "The requested operation cannot be completed due to security restrictions. Please contact your system administrator.\n"
"\n"
@ -232,7 +246,7 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:73
#: code:addons/mail/static/src/xml/mail.xml:71
#, python-format
msgid "Attach a File"
msgstr ""
@ -284,8 +298,8 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:98
#: code:addons/mail/static/src/xml/mail.xml:110
#: code:addons/mail/static/src/xml/mail.xml:96
#: code:addons/mail/static/src/xml/mail.xml:108
#, python-format
msgid "uploading"
msgstr ""
@ -326,7 +340,7 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:54
#: code:addons/mail/static/src/xml/mail.xml:53
#, python-format
msgid "Send a message"
msgstr ""
@ -361,7 +375,14 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:264
#: code:addons/mail/static/src/xml/mail.xml:294
#, python-format
msgid "notified"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:274
#, python-format
msgid "logged a note"
msgstr ""
@ -376,13 +397,13 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:295
#: code:addons/mail/static/src/xml/mail.xml:312
#, python-format
msgid "show one more message"
msgstr ""
#. module: mail
#: code:addons/mail/mail_mail.py:74
#: code:addons/mail/mail_mail.py:75
#: code:addons/mail/res_users.py:69
#, python-format
msgid "Invalid Action!"
@ -436,9 +457,13 @@ msgstr ""
msgid "System notification"
msgstr ""
#. module: mail
#: view:mail.message:0
msgid "To Read"
msgstr ""
#. module: mail
#: model:ir.model,name:mail.model_res_partner
#: view:mail.mail:0
msgid "Partner"
msgstr ""
@ -491,9 +516,14 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:128
#: code:addons/mail/static/src/js/mail_followers.js:157
#, python-format
msgid "this document"
msgid "followers"
msgstr ""
#. module: mail
#: view:mail.group:0
msgid "Send a message to the group"
msgstr ""
#. module: mail
@ -506,7 +536,7 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/js/mail_followers.js:155
#: code:addons/mail/static/src/js/mail_followers.js:153
#, python-format
msgid "No followers"
msgstr ""
@ -517,10 +547,8 @@ msgid "Failed"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:154
#, python-format
msgid "Attach a note that will not be send to the followers"
#: view:mail.mail:0
msgid "Cancel Email"
msgstr ""
#. module: mail
@ -549,8 +577,8 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:97
#: code:addons/mail/static/src/xml/mail.xml:109
#: code:addons/mail/static/src/xml/mail.xml:95
#: code:addons/mail/static/src/xml/mail.xml:107
#, python-format
msgid "Delete this attachment"
msgstr ""
@ -563,11 +591,19 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/js/mail_followers.js:157
#: code:addons/mail/static/src/js/mail_followers.js:155
#, python-format
msgid "One follower"
msgstr ""
#. module: mail
#: field:mail.compose.message,model:0
#: field:mail.followers,res_model:0
#: field:mail.message,model:0
#: field:mail.wizard.invite,res_model:0
msgid "Related Document Model"
msgstr ""
#. module: mail
#: field:mail.compose.message,type:0
#: field:mail.message,type:0
@ -587,13 +623,13 @@ msgid "Mail Group"
msgstr ""
#. module: mail
#: selection:res.partner,notification_email_send:0
msgid "Comments and Emails"
#: field:mail.alias,alias_defaults:0
msgid "Default Values"
msgstr ""
#. module: mail
#: field:mail.alias,alias_defaults:0
msgid "Default Values"
#: view:mail.mail:0
msgid "by"
msgstr ""
#. module: mail
@ -615,7 +651,7 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:142
#: code:addons/mail/static/src/xml/mail.xml:140
#, python-format
msgid "<<<"
msgstr ""
@ -635,6 +671,13 @@ msgstr ""
msgid "Message sender, taken from user preferences."
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/js/mail.js:978
#, python-format
msgid "read more"
msgstr ""
#. module: mail
#: code:addons/mail/wizard/invite.py:40
#, python-format
@ -648,16 +691,13 @@ msgid "Parent Message"
msgstr ""
#. module: mail
#: field:mail.compose.message,res_id:0
#: field:mail.followers,res_id:0
#: field:mail.message,res_id:0
#: field:mail.wizard.invite,res_id:0
msgid "Related Document ID"
#: selection:res.partner,notification_email_send:0
msgid "All Messages (discussions, emails, followed system notifications)"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/js/mail_followers.js:254
#: code:addons/mail/static/src/js/mail_followers.js:252
#, python-format
msgid "Warning! \n"
"You won't be notified of any email or discussion on this document. Do you really want to unfollow this document ?"
@ -683,11 +723,6 @@ msgstr ""
msgid "Invite wizard"
msgstr ""
#. module: mail
#: model:ir.model,name:mail.model_mail_thread
msgid "Email Thread"
msgstr ""
#. module: mail
#: view:mail.mail:0
msgid "Advanced"
@ -701,7 +736,7 @@ msgid "Move to Inbox"
msgstr ""
#. module: mail
#: code:addons/mail/wizard/mail_compose_message.py:165
#: code:addons/mail/wizard/mail_compose_message.py:193
#, python-format
msgid "Re:"
msgstr ""
@ -726,7 +761,14 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:320
#: code:addons/mail/static/src/js/mail.js:979
#, python-format
msgid "read less"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:337
#, python-format
msgid "like"
msgstr ""
@ -771,7 +813,7 @@ msgid "on"
msgstr ""
#. module: mail
#: code:addons/mail/mail_message.py:915
#: code:addons/mail/mail_message.py:926
#, python-format
msgid "The following partners chosen as recipients for the email have no email address linked :"
msgstr ""
@ -789,7 +831,7 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:37
#: code:addons/mail/static/src/xml/mail.xml:57
#: code:addons/mail/static/src/xml/mail.xml:55
#, python-format
msgid "Log a note"
msgstr ""
@ -831,7 +873,7 @@ msgid "Send Now"
msgstr ""
#. module: mail
#: code:addons/mail/mail_mail.py:74
#: code:addons/mail/mail_mail.py:75
#, python-format
msgid "Unable to send email, please configure the sender's email address or alias."
msgstr ""
@ -846,16 +888,6 @@ msgstr ""
msgid "Photo"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:56
#: code:addons/mail/static/src/xml/mail.xml:191
#: view:mail.compose.message:0
#: view:mail.wizard.invite:0
#, python-format
msgid "or"
msgstr ""
#. module: mail
#: help:mail.compose.message,vote_user_ids:0
#: help:mail.message,vote_user_ids:0
@ -889,7 +921,7 @@ msgid "Owner"
msgstr ""
#. module: mail
#: code:addons/mail/res_partner.py:49
#: code:addons/mail/res_partner.py:52
#, python-format
msgid "Partner Profile"
msgstr ""
@ -955,13 +987,13 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/js/mail.js:650
#: code:addons/mail/static/src/js/mail.js:654
#, python-format
msgid "Please complete partner's informations"
msgstr ""
#. module: mail
#: code:addons/mail/mail_mail.py:187
#: code:addons/mail/mail_mail.py:190
#, python-format
msgid "<p>Access this document <a href=\"%s\">directly in OpenERP</a></p>"
msgstr ""
@ -976,6 +1008,11 @@ msgstr ""
msgid "Record Thread ID"
msgstr ""
#. module: mail
#: model:ir.model,name:mail.model_publisher_warranty_contract
msgid "publisher_warranty.contract"
msgstr ""
#. module: mail
#: model:ir.ui.menu,name:mail.mail_group_root
msgid "My Groups"
@ -1005,8 +1042,13 @@ msgid "Outgoing"
msgstr ""
#. module: mail
#: selection:res.partner,notification_email_send:0
msgid "All feeds"
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:54
#: code:addons/mail/static/src/xml/mail.xml:191
#: view:mail.compose.message:0
#: view:mail.wizard.invite:0
#, python-format
msgid "or"
msgstr ""
#. module: mail
@ -1044,7 +1086,7 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:294
#: code:addons/mail/static/src/xml/mail.xml:311
#, python-format
msgid "show more message"
msgstr ""
@ -1055,8 +1097,8 @@ msgid "Message subtype gives a more precise type on the message, especially for
msgstr ""
#. module: mail
#: view:mail.mail:0
msgid "by"
#: field:res.partner,notification_email_send:0
msgid "Receive Messages by Email"
msgstr ""
#. module: mail
@ -1103,16 +1145,21 @@ msgstr ""
msgid "Extended Filters..."
msgstr ""
#. module: mail
#: selection:res.partner,notification_email_send:0
msgid "Incoming Emails only"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:278
#: code:addons/mail/static/src/xml/mail.xml:292
#, python-format
msgid "more"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:122
#: code:addons/mail/static/src/xml/mail.xml:120
#, python-format
msgid "To:"
msgstr ""
@ -1159,8 +1206,10 @@ msgid "Summary"
msgstr ""
#. module: mail
#: help:mail.message.subtype,res_model:0
msgid "Model the subtype applies to. If False, this subtype applies to all models."
#: code:addons/mail/mail_mail.py:222
#: code:addons/mail/mail_mail.py:244
#, python-format
msgid "\"Followers of %s\" <%s>"
msgstr ""
#. module: mail
@ -1257,13 +1306,13 @@ msgid "Starred message that goes into the todo mailbox"
msgstr ""
#. module: mail
#: view:mail.mail:0
msgid "Cancel Email"
#: view:mail.group:0
msgid "Topics discussed in this group..."
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:125
#: code:addons/mail/static/src/xml/mail.xml:123
#: view:mail.compose.message:0
#, python-format
msgid "Followers of"
@ -1305,8 +1354,8 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:131
#: code:addons/mail/static/src/xml/mail.xml:278
#: code:addons/mail/static/src/xml/mail.xml:129
#: code:addons/mail/static/src/xml/mail.xml:292
#: view:mail.compose.message:0
#, python-format
msgid "and"
@ -1322,19 +1371,17 @@ msgstr ""
msgid "Creation Month"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:306
#, python-format
msgid "Compose new Message"
msgstr ""
#. module: mail
#: help:mail.compose.message,notified_partner_ids:0
#: help:mail.message,notified_partner_ids:0
msgid "Partners that have a notification pushing this message in their mailboxes"
msgstr ""
#. module: mail
#: view:mail.message:0
msgid "Show already read messages"
msgstr ""
#. module: mail
#: view:mail.message:0
msgid "Content"
@ -1359,6 +1406,13 @@ msgstr ""
msgid "Notified partners"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:126
#, python-format
msgid "this document"
msgstr ""
#. module: mail
#: help:mail.group,public:0
msgid "This group is visible by non members. Invisible groups can add members through the invite button."
@ -1409,7 +1463,7 @@ msgid "Outgoing mail server"
msgstr ""
#. module: mail
#: code:addons/mail/mail_message.py:919
#: code:addons/mail/mail_message.py:930
#, python-format
msgid "Partners email addresses not found"
msgstr ""
@ -1432,8 +1486,8 @@ msgid "Current user has an unread notification linked to this message"
msgstr ""
#. module: mail
#: help:res.partner,notification_email_send:0
msgid "Choose in which case you want to receive an email when you receive new feeds."
#: model:ir.model,name:mail.model_mail_thread
msgid "Email Thread"
msgstr ""
#. module: mail
@ -1472,8 +1526,22 @@ msgid "Set back to Todo"
msgstr ""
#. module: mail
#: view:mail.group:0
msgid "Send a message to the group"
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:154
#, python-format
msgid "Attach a note that will not be sent to the followers"
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:279
#, python-format
msgid "nobody"
msgstr ""
#. module: mail
#: selection:res.partner,notification_email_send:0
msgid "Incoming Emails and Discussions"
msgstr ""
#. module: mail
@ -1482,13 +1550,8 @@ msgid "Name"
msgstr ""
#. module: mail
#: view:mail.group:0
msgid "Topics discussed in this group..."
msgstr ""
#. module: mail
#: field:res.partner,notification_email_send:0
msgid "Receive Feeds by Email"
#: constraint:res.partner:0
msgid "You cannot create recursive Partner hierarchies."
msgstr ""
#. module: mail
@ -1508,7 +1571,7 @@ msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:141
#: code:addons/mail/static/src/xml/mail.xml:139
#, python-format
msgid "others..."
msgstr ""
@ -1538,6 +1601,13 @@ msgstr ""
msgid "Technical field holding the message notifications. Use notified_partner_ids to access notified partners."
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:149
#, python-format
msgid "(no email address)"
msgstr ""
#. module: mail
#: model:ir.ui.menu,name:mail.mail_feeds
#: model:ir.ui.menu,name:mail.mail_feeds_main
@ -1580,16 +1650,13 @@ msgid "Composition mode"
msgstr ""
#. module: mail
#: field:mail.compose.message,model:0
#: field:mail.followers,res_model:0
#: field:mail.message,model:0
#: field:mail.wizard.invite,res_model:0
msgid "Related Document Model"
#: help:mail.message.subtype,res_model:0
msgid "Model the subtype applies to. If False, this subtype applies to all models."
msgstr ""
#. module: mail
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:321
#: code:addons/mail/static/src/xml/mail.xml:338
#, python-format
msgid "unlike"
msgstr ""
@ -1653,8 +1720,10 @@ msgid "HR Policies"
msgstr ""
#. module: mail
#: selection:res.partner,notification_email_send:0
msgid "Emails only"
#. openerp-web
#: code:addons/mail/static/src/xml/mail.xml:323
#, python-format
msgid "Compose new Message"
msgstr ""
#. module: mail

View File

@ -975,8 +975,8 @@ openerp.mail = function (session) {
expender: function () {
this.$('.oe_msg_body:first').expander({
slicePoint: this.options.truncate_limit,
expandText: 'read more',
userCollapseText: 'read less',
expandText: _t('read more'),
userCollapseText: _t('read less'),
detailClass: 'oe_msg_tail',
moreClass: 'oe_mail_expand',
lessClass: 'oe_mail_reduce',

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -433,7 +433,7 @@ msgid "Scheduled Date"
msgstr ""
#. module: mrp
#: code:addons/mrp/procurement.py:124
#: code:addons/mrp/procurement.py:129
#, python-format
msgid "Manufacturing Order <em>%s</em> created."
msgstr ""
@ -600,7 +600,7 @@ msgid "Work Center Load"
msgstr ""
#. module: mrp
#: code:addons/mrp/procurement.py:50
#: code:addons/mrp/procurement.py:55
#, python-format
msgid "No BoM defined for this product !"
msgstr ""
@ -854,7 +854,7 @@ msgid "BoM Type"
msgstr ""
#. module: mrp
#: code:addons/mrp/procurement.py:52
#: code:addons/mrp/procurement.py:57
#, python-format
msgid "Procurement '%s' has an exception: 'No BoM defined for this product !'"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:37+0000\n"
"PO-Revision-Date: 2013-03-07 08:37+0000\n"
"POT-Creation-Date: 2013-06-07 19:36+0000\n"
"PO-Revision-Date: 2013-06-07 19:36+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -62,6 +62,11 @@ msgstr ""
msgid "Followers"
msgstr ""
#. module: note
#: model:note.stage,name:note.note_stage_00
msgid "New"
msgstr ""
#. module: note
#: model:ir.actions.act_window,help:note.action_note_note
msgid "<p class=\"oe_view_nocontent_create\">\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -17,14 +17,14 @@ msgstr ""
#. module: pad
#. openerp-web
#: code:addons/pad/static/src/xml/pad.xml:27
#: code:addons/pad/static/src/xml/pad.xml:18
#, python-format
msgid "&Ntilde;"
msgstr ""
#. module: pad
#. openerp-web
#: code:addons/pad/static/src/xml/pad.xml:10
#: code:addons/pad/static/src/xml/pad.xml:9
#, python-format
msgid "You must configure the etherpad through the menu Settings > Companies > Companies, in the configuration tab of your company."
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -15,8 +15,32 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: plugin
#: code:addons/plugin/plugin_handler.py:105
#, python-format
msgid "Use the Partner button to create a new partner"
msgstr ""
#. module: plugin
#: code:addons/plugin/plugin_handler.py:116
#, python-format
msgid "Mail successfully pushed"
msgstr ""
#. module: plugin
#: model:ir.model,name:plugin.model_plugin_handler
msgid "plugin.handler"
msgstr ""
#. module: plugin
#: code:addons/plugin/plugin_handler.py:108
#, python-format
msgid "Mail successfully pushed, a new %s has been created."
msgstr ""
#. module: plugin
#: code:addons/plugin/plugin_handler.py:102
#, python-format
msgid "Email already pushed"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-03-07 08:38+0000\n"
"PO-Revision-Date: 2013-03-07 08:38+0000\n"
"POT-Creation-Date: 2013-06-07 19:37+0000\n"
"PO-Revision-Date: 2013-06-07 19:37+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"

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