diff --git a/addons/account/account_bank_statement.py b/addons/account/account_bank_statement.py
index 56b30800e65c1..b120da9f3cc03 100644
--- a/addons/account/account_bank_statement.py
+++ b/addons/account/account_bank_statement.py
@@ -920,7 +920,8 @@ def process_reconciliation(self, cr, uid, id, mv_line_dicts, context=None):
move_line_pairs_to_reconcile.append([new_aml_id, counterpart_move_line_id])
# Reconcile
for pair in move_line_pairs_to_reconcile:
- aml_obj.reconcile_partial(cr, uid, pair, context=context)
+ # DO NOT FORWARD PORT
+ aml_obj.reconcile_partial(cr, uid, pair, context=dict(context, bs_move_id=move_id))
# Mark the statement line as reconciled
self.write(cr, uid, id, {'journal_entry_id': move_id}, context=context)
diff --git a/addons/account/account_invoice.py b/addons/account/account_invoice.py
index 14b15eaee2d75..c0a0b29eee81c 100644
--- a/addons/account/account_invoice.py
+++ b/addons/account/account_invoice.py
@@ -20,6 +20,7 @@
##############################################################################
import itertools
+import math
from lxml import etree
from openerp import models, fields, api, _
@@ -807,11 +808,20 @@ def action_move_create(self):
ctx = dict(self._context, lang=inv.partner_id.lang)
+ company_currency = inv.company_id.currency_id
if not inv.date_invoice:
+ # FORWARD-PORT UP TO SAAS-6
+ if inv.currency_id != company_currency and inv.tax_line:
+ raise except_orm(
+ _('Warning!'),
+ _('No invoice date!'
+ '\nThe invoice currency is not the same than the company currency.'
+ ' An invoice date is required to determine the exchange rate to apply. Do not forget to update the taxes!'
+ )
+ )
inv.with_context(ctx).write({'date_invoice': fields.Date.context_today(self)})
date_invoice = inv.date_invoice
- company_currency = inv.company_id.currency_id
# create the analytical lines, one move line per invoice line
iml = inv._get_analytic_lines()
# check if taxes are all computed
@@ -834,6 +844,9 @@ def action_move_create(self):
if (total_fixed + total_percent) > 100:
raise except_orm(_('Error!'), _("Cannot create the invoice.\nThe related payment term is probably misconfigured as it gives a computed amount greater than the total invoiced amount. In order to avoid rounding issues, the latest line of your payment term must be of type 'balance'."))
+ # Force recomputation of tax_amount, since the rate potentially changed between creation
+ # and validation of the invoice
+ inv._recompute_tax_amount()
# one move line per tax line
iml += account_invoice_tax.move_line_get(inv.id)
@@ -1216,6 +1229,18 @@ def pay_and_reconcile(self, cr, uid, ids, pay_amount, pay_account_id, period_id,
return account_invoice.pay_and_reconcile(recs, pay_amount, pay_account_id, period_id, pay_journal_id,
writeoff_acc_id, writeoff_period_id, writeoff_journal_id, name=name)
+ @api.multi
+ def _recompute_tax_amount(self):
+ for invoice in self:
+ if invoice.currency_id != invoice.company_id.currency_id:
+ for line in invoice.tax_line:
+ tax_amount = line.amount_change(
+ line.amount, currency_id=invoice.currency_id.id, company_id=invoice.company_id.id,
+ date_invoice=invoice.date_invoice
+ )['value']['tax_amount']
+ line.write({'tax_amount': tax_amount})
+
+
class account_invoice_line(models.Model):
_name = "account.invoice.line"
_description = "Invoice Line"
@@ -1542,7 +1567,7 @@ def amount_change(self, amount, currency_id=False, company_id=False, date_invoic
currency = self.env['res.currency'].browse(currency_id)
currency = currency.with_context(date=date_invoice or fields.Date.context_today(self))
amount = currency.compute(amount, company.currency_id, round=False)
- tax_sign = (self.tax_amount / self.amount) if self.amount else 1
+ tax_sign = math.copysign(1, (self.tax_amount * self.amount))
return {'value': {'tax_amount': amount * tax_sign}}
@api.v8
diff --git a/addons/account/account_move_line.py b/addons/account/account_move_line.py
index 143c8ff546804..c4042625691f5 100644
--- a/addons/account/account_move_line.py
+++ b/addons/account/account_move_line.py
@@ -1004,6 +1004,12 @@ def reconcile(self, cr, uid, ids, type='auto', writeoff_acc_id=False, writeoff_p
if (not currency_obj.is_zero(cr, uid, account.company_id.currency_id, writeoff)) or \
(account.currency_id and (not currency_obj.is_zero(cr, uid, account.currency_id, currency))):
+ # DO NOT FORWARD PORT
+ if not writeoff_acc_id:
+ if writeoff > 0:
+ writeoff_acc_id = account.company_id.expense_currency_exchange_account_id.id
+ else:
+ writeoff_acc_id = account.company_id.income_currency_exchange_account_id.id
if not writeoff_acc_id:
raise osv.except_osv(_('Warning!'), _('You have to provide an account for the write off/exchange difference entry.'))
if writeoff > 0:
@@ -1057,14 +1063,24 @@ def reconcile(self, cr, uid, ids, type='auto', writeoff_acc_id=False, writeoff_p
'amount_currency': amount_currency_writeoff and amount_currency_writeoff or (account.currency_id.id and currency or 0.0)
})
]
-
- writeoff_move_id = move_obj.create(cr, uid, {
- 'period_id': writeoff_period_id,
- 'journal_id': writeoff_journal_id,
- 'date':date,
- 'state': 'draft',
- 'line_id': writeoff_lines
- })
+ # DO NOT FORWARD PORT
+ # In some exceptional situations (partial payment from a bank statement in foreign
+ # currency), a write-off can be introduced at the very last moment due to currency
+ # conversion. We record it on the bank statement account move.
+ if context.get('bs_move_id'):
+ writeoff_move_id = context['bs_move_id']
+ for l in writeoff_lines:
+ self.create(cr, uid, dict(l[2], move_id=writeoff_move_id), dict(context, novalidate=True))
+ if not move_obj.validate(cr, uid, writeoff_move_id, context=context):
+ raise osv.except_osv(_('Error!'), _('You cannot validate a non-balanced entry.'))
+ else:
+ writeoff_move_id = move_obj.create(cr, uid, {
+ 'period_id': writeoff_period_id,
+ 'journal_id': writeoff_journal_id,
+ 'date':date,
+ 'state': 'draft',
+ 'line_id': writeoff_lines
+ })
writeoff_line_ids = self.search(cr, uid, [('move_id', '=', writeoff_move_id), ('account_id', '=', account_id)])
if account_id == writeoff_acc_id:
diff --git a/addons/account/i18n/bg.po b/addons/account/i18n/bg.po
index 0d09ef6591e99..b46cbc5e80e40 100644
--- a/addons/account/i18n/bg.po
+++ b/addons/account/i18n/bg.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-07-28 15:57+0000\n"
+"PO-Revision-Date: 2016-11-20 13:34+0000\n"
"Last-Translator: Turhan Aydn \n"
"Language-Team: Bulgarian (http://www.transifex.com/odoo/odoo-8/language/bg/)\n"
"MIME-Version: 1.0\n"
@@ -1148,7 +1148,7 @@ msgstr "Добавяне"
#: view:account.move:account.view_move_form
#: view:account.move.line:account.view_move_line_form
msgid "Add an internal note..."
-msgstr ""
+msgstr "Добави вътрешна бележка"
#. module: account
#: field:account.invoice,comment:0
@@ -8207,7 +8207,7 @@ msgstr ""
#. module: account
#: view:account.tax:account.view_tax_form
msgid "Refunds"
-msgstr ""
+msgstr "Обезщетения"
#. module: account
#: selection:account.account,type:0 selection:account.account.template,type:0
diff --git a/addons/account/i18n/bs.po b/addons/account/i18n/bs.po
index 27a0d9e100235..74210db399008 100644
--- a/addons/account/i18n/bs.po
+++ b/addons/account/i18n/bs.po
@@ -3,15 +3,15 @@
# * account
#
# Translators:
-# bluesoft83 , 2015-2016
+# Boško Stojaković , 2015-2016
# FIRST AUTHOR , 2014
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-06-05 14:31+0000\n"
-"Last-Translator: bluesoft83 \n"
+"PO-Revision-Date: 2016-11-21 13:30+0000\n"
+"Last-Translator: Boško Stojaković \n"
"Language-Team: Bosnian (http://www.transifex.com/odoo/odoo-8/language/bs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -2939,7 +2939,7 @@ msgstr "Potvrđen"
#: code:addons/account/static/src/js/account_widgets.js:534
#, python-format
msgid "Congrats, you're all done !"
-msgstr ""
+msgstr "Zahvaljujeme, završili ste!"
#. module: account
#: field:account.account,child_consol_ids:0
@@ -3428,7 +3428,7 @@ msgstr "Porezi kupca"
#. module: account
#: view:website:account.report_overdue_document
msgid "Customer ref:"
-msgstr ""
+msgstr "Kupčeva ref:"
#. module: account
#: model:ir.ui.menu,name:account.menu_account_customer
@@ -3880,12 +3880,12 @@ msgstr "Izračun datuma dospjeća"
#: view:account.invoice:account.view_account_invoice_filter
#: view:account.invoice.report:account.view_account_invoice_report_search
msgid "Due Month"
-msgstr ""
+msgstr "Mjesec dugovanja"
#. module: account
#: model:ir.actions.report.xml,name:account.action_report_print_overdue
msgid "Due Payments"
-msgstr ""
+msgstr "Prekoračena plaćanja"
#. module: account
#: field:account.move.line,date_maturity:0
@@ -4844,14 +4844,14 @@ msgstr "Idi na slijedećeg partnera"
#: code:addons/account/account_move_line.py:552
#, python-format
msgid "Go to the configuration panel"
-msgstr ""
+msgstr "Idite na panel konfiguracije"
#. module: account
#. openerp-web
#: code:addons/account/static/src/xml/account_bank_statement_reconciliation.xml:8
#, python-format
msgid "Good Job!"
-msgstr ""
+msgstr "Dobar posao!"
#. module: account
#. openerp-web
@@ -5722,7 +5722,7 @@ msgstr "Dnevnički zapisi"
#. module: account
#: view:account.move:account.view_account_move_filter
msgid "Journal Entries by Month"
-msgstr ""
+msgstr "Dnevnički zapisi po mjesecima"
#. module: account
#: view:account.move:account.view_account_move_filter
@@ -5848,7 +5848,7 @@ msgstr "Dnevnik za analitiku"
#. module: account
#: view:account.invoice.report:account.view_account_invoice_report_search
msgid "Journal invoices with period in current year"
-msgstr ""
+msgstr "Dnevničke fakture sa periodom trenutne godine"
#. module: account
#: field:account.journal.period,name:0
@@ -9186,7 +9186,7 @@ msgstr "Dobavljači"
#. module: account
#: view:website:account.report_invoice_document
msgid "TIN:"
-msgstr ""
+msgstr "PIB:"
#. module: account
#: view:cash.box.out:account.cash_box_out_form
@@ -11563,7 +11563,7 @@ msgstr ""
#: code:addons/account/static/src/xml/account_bank_statement_reconciliation.xml:45
#, python-format
msgid "You validated"
-msgstr ""
+msgstr "Verifikovali ste"
#. module: account
#: view:account.invoice.refund:account.view_account_invoice_refund
diff --git a/addons/account/i18n/cs.po b/addons/account/i18n/cs.po
index e5ddd711e58ca..9b758f0d4a4e0 100644
--- a/addons/account/i18n/cs.po
+++ b/addons/account/i18n/cs.po
@@ -5,13 +5,14 @@
# Translators:
# FIRST AUTHOR , 2014
# Marek Stopka , 2015
+# Ondřej Skuhravý , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-01-20 13:08+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-10-26 19:47+0000\n"
+"Last-Translator: Ondřej Skuhravý \n"
"Language-Team: Czech (http://www.transifex.com/odoo/odoo-8/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -111,7 +112,7 @@ msgstr " Centralizace"
#: code:addons/account/static/src/js/account_widgets.js:521
#, python-format
msgid " seconds"
-msgstr ""
+msgstr "sekundy"
#. module: account
#: field:analytic.entries.report,nbr:0
@@ -677,7 +678,7 @@ msgstr "Ústřední kniha účtů"
#. module: account
#: view:account.account:account.view_account_form
msgid "Account Code and Name"
-msgstr ""
+msgstr "Název a číslo účtu"
#. module: account
#: model:ir.model,name:account.model_account_common_account_report
@@ -702,7 +703,7 @@ msgstr "Obecný výkaz účtu"
#. module: account
#: field:account.analytic.line,currency_id:0
msgid "Account Currency"
-msgstr ""
+msgstr "Měna účtu"
#. module: account
#: field:account.fiscal.position.account,account_dest_id:0
@@ -782,7 +783,7 @@ msgstr "Účet závazků"
#. module: account
#: view:account.period:account.view_account_period_form
msgid "Account Period"
-msgstr ""
+msgstr "Perioda účtu"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_print_journal
@@ -793,7 +794,7 @@ msgstr "Tisk účetního deníku"
#. module: account
#: view:product.category:account.view_category_property_form
msgid "Account Properties"
-msgstr ""
+msgstr "Vlastnosti účtu"
#. module: account
#: field:res.partner,property_account_receivable:0
@@ -812,7 +813,7 @@ msgstr "Vyrovnání účtu"
#: field:account.financial.report,children_ids:0
#: model:ir.model,name:account.model_account_financial_report
msgid "Account Report"
-msgstr ""
+msgstr "Výpis z účtu"
#. module: account
#: field:accounting.report,account_report_id:0
@@ -824,7 +825,7 @@ msgstr "Výkazy účtů"
#: view:account.financial.report:account.view_account_report_tree_hierarchy
#: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy
msgid "Account Reports Hierarchy"
-msgstr ""
+msgstr "Uspořádání výpisů z účtu"
#. module: account
#: field:account.fiscal.position.account,account_src_id:0
@@ -904,7 +905,7 @@ msgstr "Šablony účtů"
#. module: account
#: view:website:account.report_agedpartnerbalance
msgid "Account Total"
-msgstr ""
+msgstr "Celkový stav účtu"
#. module: account
#: view:account.account:account.view_account_search
@@ -957,7 +958,7 @@ msgstr ""
#. module: account
#: constraint:account.move.line:0
msgid "Account and Period must belong to the same company."
-msgstr ""
+msgstr "Účet a účetní období musí náležet stejné firmě"
#. module: account
#: model:ir.model,name:account.model_account_chart
@@ -987,7 +988,7 @@ msgstr ""
#. module: account
#: view:account.account:account.view_account_form
msgid "Account name"
-msgstr ""
+msgstr "Název účtu"
#. module: account
#: view:website:account.report_analyticjournal
@@ -1002,7 +1003,7 @@ msgstr "Období účtu"
#. module: account
#: model:ir.actions.report.xml,name:account.action_report_vat
msgid "Account tax"
-msgstr ""
+msgstr "Daň "
#. module: account
#: model:ir.model,name:account.model_account_tax_chart
@@ -1063,7 +1064,7 @@ msgstr ""
#. module: account
#: view:account.invoice:account.invoice_form
msgid "Accounting Period"
-msgstr ""
+msgstr "Účetní období"
#. module: account
#: model:ir.model,name:account.model_accounting_report
@@ -1158,7 +1159,7 @@ msgstr "Další informace"
#. module: account
#: view:account.invoice:account.invoice_form
msgid "Additional notes..."
-msgstr ""
+msgstr "Další poznámky ..."
#. module: account
#: field:account.account,adjusted_balance:0
@@ -1267,12 +1268,12 @@ msgstr "Všechny zaúčtované položky"
#. module: account
#: view:website:account.report_trialbalance
msgid "All accounts"
-msgstr ""
+msgstr "Všechny účty"
#. module: account
#: view:website:account.report_generalledger
msgid "All accounts'"
-msgstr ""
+msgstr "Všech účtů"
#. module: account
#: field:account.bank.statement,all_lines_reconciled:0
@@ -1728,7 +1729,7 @@ msgstr "Automatické vyrovnání"
#. module: account
#: selection:account.financial.report,style_overwrite:0
msgid "Automatic formatting"
-msgstr ""
+msgstr "Automatické formátování"
#. module: account
#: field:account.journal,entry_posted:0
@@ -1738,7 +1739,7 @@ msgstr ""
#. module: account
#: view:account.journal:account.view_account_journal_form
msgid "Available Coins"
-msgstr ""
+msgstr "Mince k dispozici"
#. module: account
#: field:account.invoice.report,price_average:0
@@ -1770,13 +1771,13 @@ msgstr ""
#: code:addons/account/account_move_line.py:1324
#, python-format
msgid "Bad Account!"
-msgstr ""
+msgstr "Špatný účet!"
#. module: account
#: code:addons/account/account_invoice.py:819
#, python-format
msgid "Bad Total!"
-msgstr ""
+msgstr "Špatný součet!"
#. module: account
#: field:account.account,balance:0
@@ -3000,7 +3001,7 @@ msgstr ""
#. module: account
#: field:account.fiscal.position,country_group_id:0
msgid "Country Group"
-msgstr ""
+msgstr "Skupina zemí"
#. module: account
#: field:account.invoice.report,country_id:0
@@ -3697,7 +3698,7 @@ msgstr "Popis"
#. module: account
#: view:website:account.report_invoice_document
msgid "Description:"
-msgstr ""
+msgstr "Popis"
#. module: account
#: selection:account.account.type,close_method:0
diff --git a/addons/account/i18n/es.po b/addons/account/i18n/es.po
index ff8505f128d21..95f0403716507 100644
--- a/addons/account/i18n/es.po
+++ b/addons/account/i18n/es.po
@@ -4,12 +4,12 @@
#
# Translators:
# Alejandro Santana , 2015
-# Carles Antolí , 2015
+# Carles Antoli , 2015
# FIRST AUTHOR , 2014
-# Ivan Todorovich , 2015
+# Iván Todorovich , 2015
# Jose Manuel , 2015
-# Juan Cristobal Lopez , 2015
-# Martin Trigaux, 2015
+# Juan Cristobal Lopez Arrieta , 2015
+# Martin Trigaux, 2015-2016
# Pedro M. Baeza , 2015
# ulises aldana , 2015
msgid ""
@@ -17,8 +17,8 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2015-12-06 00:04+0000\n"
-"Last-Translator: ulises aldana \n"
+"PO-Revision-Date: 2016-11-22 12:14+0000\n"
+"Last-Translator: Martin Trigaux\n"
"Language-Team: Spanish (http://www.transifex.com/odoo/odoo-8/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -5538,7 +5538,7 @@ msgstr "Factura validada"
msgid ""
"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' "
"and 'draft' or ''}"
-msgstr "Factura_${(object.number or '').replace('/','_')}_${object.state == 'draft' and 'borrador' or ''}"
+msgstr "Factura_${(object.number or '').replace('/','_')}_${object.state == 'draft' and 'draft' or ''}"
#. module: account
#: view:account.invoice.report:account.view_account_invoice_report_search
diff --git a/addons/account/i18n/es_CR.po b/addons/account/i18n/es_CR.po
index 5a113b18ba61a..2b53890220773 100644
--- a/addons/account/i18n/es_CR.po
+++ b/addons/account/i18n/es_CR.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2015-11-28 08:22+0000\n"
+"PO-Revision-Date: 2016-11-10 16:57+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/odoo/odoo-8/language/es_CR/)\n"
"MIME-Version: 1.0\n"
@@ -251,7 +251,7 @@ msgstr ""
#. module: account
#: view:website:account.report_trialbalance
msgid ": Trial Balance"
-msgstr ""
+msgstr ": Balance de comprobación"
#. module: account
#: model:ir.actions.act_window,help:account.action_account_period
diff --git a/addons/account/i18n/fi.po b/addons/account/i18n/fi.po
index d17c5dda1fd04..aec92f06adf09 100644
--- a/addons/account/i18n/fi.po
+++ b/addons/account/i18n/fi.po
@@ -16,8 +16,8 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-08-03 10:08+0000\n"
-"Last-Translator: Jarmo Kortetjärvi \n"
+"PO-Revision-Date: 2016-10-28 18:25+0000\n"
+"Last-Translator: Miku Laitinen \n"
"Language-Team: Finnish (http://www.transifex.com/odoo/odoo-8/language/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -449,7 +449,7 @@ msgid ""
" draft invoices automatically from purchase orders or receipts.\n"
"
\n"
" "
-msgstr ""
+msgstr "\nKlikkaa luodaksesi uuden toimittajan laskun.\n
\nVoit hallinnoida toimittajan laskua riippuen siitä mitä on ostettu tai vastaanotettu. Odoo voi myös luoda ostotilauksista tai kuiteista luonnoslaskut automaattisesti.\n
"
#. module: account
#: model:ir.actions.act_window,help:account.action_bank_statement_tree
@@ -465,7 +465,7 @@ msgid ""
" the related sale or puchase invoices.\n"
" \n"
" "
-msgstr ""
+msgstr "\n Valitse lisätäksesi pankkitiliotteen.\n
\n Pankin tiliote on yhteenveto kaikista tilitapahtumista tietyltä ajanjaksolta. Nouda tiliote säännöllisesti pankistasi.\n
\n Odoo mahdollistaa tilitapahtumien täsmäyttämisen suoraan ko. myynti- tai ostolaskun kanssa.\n
\n "
#. module: account
#: model:ir.actions.act_window,help:account.action_invoice_tree4
@@ -509,7 +509,7 @@ msgid ""
" account and the counterpart \"Account Payable\".\n"
" \n"
" "
-msgstr ""
+msgstr "\n Valitse jakso ja päiväkirja jonka haluat täyttää.\n
\n Tätä näkymää voi kirjanpitäjä käyttää halutessaan nopeasti lisätä tapahtumia. Jos haluat kirjata toimittajalaskun, aloita lisäämällä kulutilin rivi. Odoo ehdottaa sinulle automaattisesti tähän tiliin liittyvää verotiliä ja vastaavaa maksutiliä.\n
\n "
#. module: account
#: model:ir.actions.act_window,help:account.action_bank_tree
@@ -1626,14 +1626,14 @@ msgstr "Käytä vain jos kumppanilla on verotunnus"
msgid ""
"Apply when the shipping or invoicing country is in this country group, and "
"no position matches the country directly."
-msgstr ""
+msgstr "Käytä kun toimitus tai laskutusmaa on tässä maaryhmässä, eikä mikään arvo vastaa maata suoraan."
#. module: account
#: help:account.fiscal.position,country_id:0
msgid ""
"Apply when the shipping or invoicing country matches. Takes precedence over "
"positions matching on a country group."
-msgstr ""
+msgstr "Käytä kun toimitus tai laskutusmaat ovat samat. Tämä on etusijalla ennen maaryhmän asetuksia."
#. module: account
#: view:validate.account.move:account.validate_account_move_view
@@ -1892,12 +1892,12 @@ msgstr "Pankkitiedot"
#. module: account
#: view:account.statement.operation.template:account.view_account_statement_operation_template_tree
msgid "Bank Reconciliation Move Presets"
-msgstr ""
+msgstr "Pankin täsmäytyssiirron esiasetukset."
#. module: account
#: view:account.statement.operation.template:account.view_account_statement_operation_template_search
msgid "Bank Reconciliation Move preset"
-msgstr ""
+msgstr "Pankin täsmäytyssiirron esiasetus"
#. module: account
#: view:account.bank.statement:account.view_account_bank_statement_filter
@@ -2233,7 +2233,7 @@ msgstr ""
#: code:addons/account/account.py:3455
#, python-format
msgid "Cannot generate an unused journal code."
-msgstr ""
+msgstr "Ei voida luoda käyttämätöntä päiväkirjakoodia."
#. module: account
#: field:account.tax.code,code:0 field:account.tax.code.template,code:0
@@ -2276,7 +2276,7 @@ msgstr "Käteinen ja pankit"
#. module: account
#: field:account.bank.statement,cash_control:0
msgid "Cash control"
-msgstr ""
+msgstr "Käteisvalvonta"
#. module: account
#: field:account.journal,cashbox_line_ids:0
@@ -2286,13 +2286,13 @@ msgstr "Kassakone"
#. module: account
#: model:ir.model,name:account.model_account_cashbox_line
msgid "CashBox Line"
-msgstr ""
+msgstr "Kassakonerivi"
#. module: account
#: field:account.bank.statement,details_ids:0
#: view:account.journal:account.view_account_journal_form
msgid "CashBox Lines"
-msgstr ""
+msgstr "Kassakonerivit"
#. module: account
#: view:product.template:account.product_template_search_view
@@ -2318,7 +2318,7 @@ msgstr "Keskitys"
#. module: account
#: field:account.journal,centralisation:0
msgid "Centralized Counterpart"
-msgstr ""
+msgstr "Keskitetty vastapuoli"
#. module: account
#: view:website:account.report_centraljournal
@@ -2490,7 +2490,7 @@ msgstr "Valitse tämä jos kumppani on alv-velvollinen. Tätä alv-numeroa käyt
#. module: account
#: help:account.account,reconcile:0
msgid "Check this box if this account allows reconciliation of journal items."
-msgstr ""
+msgstr "Valitse jos tämä tili sallii päiväkirjatapahtumien täsmäytyksen"
#. module: account
#: help:account.config.settings,expects_chart_of_accounts:0
@@ -2523,7 +2523,7 @@ msgstr "Valitse tämä, jos et halua tämän verokoodin veroja laskulle."
msgid ""
"Check this box if you want to allow the cancellation the entries related to "
"this journal or of the invoice related to this journal"
-msgstr ""
+msgstr "Valitse tämä, jos haluat sallia tähän päiväkirjaan liittyvien tapahtumien ja laskujen peruutuksen."
#. module: account
#: help:account.journal,entry_posted:0
@@ -2811,12 +2811,12 @@ msgstr "Vertailu"
#: field:account.chart.template,complete_tax_set:0
#: field:wizard.multi.charts.accounts,complete_tax_set:0
msgid "Complete Set of Taxes"
-msgstr ""
+msgstr "Kaikki verot"
#. module: account
#: field:account.config.settings,complete_tax_set:0
msgid "Complete set of taxes"
-msgstr ""
+msgstr "Kaikki verot"
#. module: account
#: code:addons/account/account_invoice.py:402
@@ -2853,7 +2853,7 @@ msgstr "Laskettu saldo"
#. module: account
#: help:account.bank.statement,balance_end_real:0
msgid "Computed using the cash control lines"
-msgstr ""
+msgstr "Laskettu käteisvalvonna rivien perusteella"
#. module: account
#: view:account.config.settings:account.view_account_config_settings
@@ -3353,12 +3353,12 @@ msgstr "Valuuttakurssi"
#. module: account
#: help:wizard.multi.charts.accounts,currency_id:0
msgid "Currency as per company's country."
-msgstr ""
+msgstr "Yrityksen maavaluutta."
#. module: account
#: help:res.partner.bank,currency_id:0
msgid "Currency of the related account journal."
-msgstr ""
+msgstr "Tilin päiväkirjaan liittyvä valuutta."
#. module: account
#: view:website:account.report_analyticjournal
@@ -4250,7 +4250,7 @@ msgstr ""
msgid ""
"Error!\n"
"You cannot create recursive Tax Codes."
-msgstr ""
+msgstr "Virhe!\nEt voi luoda rekursiivisia Verokoodeja."
#. module: account
#: constraint:account.account.template:0
@@ -4264,7 +4264,7 @@ msgstr "Virhe!\nEt voi luoda rekursiivia tilimalleja."
msgid ""
"Error!\n"
"You cannot create recursive accounts."
-msgstr ""
+msgstr "Virhe!\nEt voi luoda itseensä viittaavia tilejä."
#. module: account
#: field:account.account,exchange_rate:0
@@ -4274,7 +4274,7 @@ msgstr "Valuuttakurssi"
#. module: account
#: field:res.company,expects_chart_of_accounts:0
msgid "Expects a Chart of Accounts"
-msgstr ""
+msgstr "Vaatii tilikartan"
#. module: account
#: model:account.account.type,name:account.data_account_type_expense
@@ -4634,7 +4634,7 @@ msgstr "Syötä prosenttimäärä osuutena välillä 0-1."
#. module: account
#: help:account.tax,amount:0
msgid "For taxes of type percentage, enter % ratio between 0-1."
-msgstr ""
+msgstr "Prosenttimääräisen veron arvoksi syötetään %-osuus välillä 0-1."
#. module: account
#: field:account.invoice,period_id:0 field:account.invoice.report,period_id:0
@@ -4815,7 +4815,7 @@ msgstr "Antaa tälle riville järjestyksen laskua näytettäessä."
#: help:account.bank.statement.line,sequence:0
msgid ""
"Gives the sequence order when displaying a list of bank statement lines."
-msgstr ""
+msgstr "Antaa järjestyksen joka näytetään pankkitiliotteen rivien yhteydessä."
#. module: account
#: help:account.invoice.tax,sequence:0
@@ -4834,7 +4834,7 @@ msgstr ""
#: code:addons/account/account_invoice.py:726
#, python-format
msgid "Global taxes defined, but they are not in invoice lines !"
-msgstr ""
+msgstr "Yleisiä veroja määritelty, joita ei ole laskuriveillä!"
#. module: account
#: view:account.partner.reconcile.process:account.account_partner_reconcile_view
@@ -4905,12 +4905,12 @@ msgstr "Ryhmät"
#. module: account
#: field:account.installer,has_default_company:0
msgid "Has Default Company"
-msgstr ""
+msgstr "Oletusyritys on asetettu"
#. module: account
#: field:account.config.settings,has_default_company:0
msgid "Has default company"
-msgstr ""
+msgstr "Oletusyritys on asetettu"
#. module: account
#: help:account.bank.statement,message_summary:0
@@ -5602,12 +5602,12 @@ msgstr ""
#. module: account
#: help:account.journal,default_credit_account_id:0
msgid "It acts as a default account for credit amount"
-msgstr ""
+msgstr "Toimii oletus kredit-tilinä"
#. module: account
#: help:account.journal,default_debit_account_id:0
msgid "It acts as a default account for debit amount"
-msgstr ""
+msgstr "Toimii oletusarvoisena kredit-tilinä"
#. module: account
#: help:account.partner.ledger,amount_currency:0
@@ -5738,7 +5738,7 @@ msgstr "Päiväkirjavientien tarkastus"
#. module: account
#: view:account.entries.report:account.view_account_entries_report_search
msgid "Journal Entries with period in current period"
-msgstr ""
+msgstr "Päiväkirjaviennit joiden jakso on kuluva jakso"
#. module: account
#: view:account.entries.report:account.view_account_entries_report_search
@@ -5854,7 +5854,7 @@ msgstr "Päiväkirja analyyttisille kirjauksille"
#. module: account
#: view:account.invoice.report:account.view_account_invoice_report_search
msgid "Journal invoices with period in current year"
-msgstr ""
+msgstr "Päiväkirjan laskut joiden jakso on kuluvana vuonna"
#. module: account
#: field:account.journal.period,name:0
@@ -6211,7 +6211,7 @@ msgstr "Vastuu"
#. module: account
#: model:account.account.type,name:account.account_type_liability_view1
msgid "Liability View"
-msgstr ""
+msgstr "Vastattavien näkymä"
#. module: account
#: field:account.analytic.journal,line_ids:0 field:account.tax.code,line_ids:0
@@ -6702,7 +6702,7 @@ msgstr "lasku ei ole tulostettavissa"
#. module: account
#: view:website:account.report_agedpartnerbalance
msgid "Not due"
-msgstr ""
+msgstr "Ei erääntynyt"
#. module: account
#: view:website:account.report_centraljournal
@@ -6748,7 +6748,7 @@ msgstr "Muistiinpanot"
#: code:addons/account/static/src/xml/account_move_reconciliation.xml:31
#, python-format
msgid "Nothing more to reconcile"
-msgstr ""
+msgstr "Ei muuta täsmäytettävää"
#. module: account
#: selection:report.account.sales,month:0
@@ -6764,7 +6764,7 @@ msgstr "Numero"
#. module: account
#: view:account.move.line:account.view_account_move_line_filter
msgid "Number (Move)"
-msgstr ""
+msgstr "Numero (siirto)"
#. module: account
#: field:account.payment.term.line,days:0
@@ -6892,7 +6892,7 @@ msgstr "Avaa päiväkirja"
#: code:addons/account/static/src/xml/account_bank_statement_reconciliation.xml:195
#, python-format
msgid "Open balance"
-msgstr ""
+msgstr "Avoin saldo"
#. module: account
#: view:account.move.bank.reconcile:account.view_account_move_bank_reconcile
@@ -7214,7 +7214,7 @@ msgstr "Kumppanin"
#. module: account
#: view:website:account.report_agedpartnerbalance
msgid "Partner's:"
-msgstr ""
+msgstr "Kumppanin:"
#. module: account
#: model:ir.ui.menu,name:account.next_id_22
@@ -7665,7 +7665,7 @@ msgstr "Tulostuspäivämäärä:"
#. module: account
#: view:account.invoice:account.invoice_form
msgid "Pro Forma Invoice"
-msgstr ""
+msgstr "Proformalasku"
#. module: account
#: selection:account.invoice,state:0
@@ -7826,7 +7826,7 @@ msgstr "Ostohyvitys"
#: code:addons/account/account.py:3189
#, python-format
msgid "Purchase Refund Journal"
-msgstr ""
+msgstr "Ostohyvitysten päiväkirja"
#. module: account
#: view:wizard.multi.charts.accounts:account.view_wizard_multi_chart
@@ -7852,7 +7852,7 @@ msgstr "Ostopäiväkirja"
#. module: account
#: field:account.config.settings,purchase_refund_journal_id:0
msgid "Purchase refund journal"
-msgstr ""
+msgstr "Ostohyvitysten päiväkirja"
#. module: account
#: field:account.config.settings,purchase_tax_rate:0
@@ -7909,7 +7909,7 @@ msgstr "Uudelleen avaus"
#. module: account
#: view:account.period:account.view_account_period_form
msgid "Re-Open Period"
-msgstr ""
+msgstr "Avaa jakso uudelleen"
#. module: account
#: view:account.bank.statement:account.view_bank_statement_form2
@@ -8011,14 +8011,14 @@ msgstr "Suorita arvonalennuksella"
#: code:addons/account/wizard/account_reconcile.py:125
#, python-format
msgid "Reconcile Writeoff"
-msgstr ""
+msgstr "Täsmäytä alaskirjaus"
#. module: account
#. openerp-web
#: code:addons/account/static/src/js/account_tour_bank_statement_reconciliation.js:8
#, python-format
msgid "Reconcile the demo bank statement"
-msgstr ""
+msgstr "Täsmäytä demo-pankkitiliote"
#. module: account
#: view:account.entries.report:account.view_account_entries_report_search
@@ -8063,14 +8063,14 @@ msgstr "Suoritustapahtumat"
#. module: account
#: field:account.entries.report,reconcile_id:0
msgid "Reconciliation number"
-msgstr ""
+msgstr "Täsmäytyksen numero"
#. module: account
#: model:ir.actions.client,name:account.action_bank_reconcile
#: model:ir.actions.client,name:account.action_bank_reconcile_bank_statements
#: model:ir.ui.menu,name:account.menu_bank_reconcile_bank_statements
msgid "Reconciliation on Bank Statements"
-msgstr ""
+msgstr "Pankin tiliotteiden täsmäytys"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_partner_reconcile
@@ -8499,7 +8499,7 @@ msgstr "Myyjä"
#. module: account
#: view:account.journal:account.view_account_journal_search
msgid "Search Account Journal"
-msgstr ""
+msgstr "Hae päiväkirjasta"
#. module: account
#: view:account.account.template:account.view_account_template_search
@@ -9245,7 +9245,7 @@ msgstr "Kohdekirjaukset:"
#. module: account
#: view:account.analytic.line:account.view_account_analytic_line_filter
msgid "Tasks Month"
-msgstr ""
+msgstr "Tehtävän kuukausi"
#. module: account
#. openerp-web
@@ -9626,7 +9626,7 @@ msgstr ""
#: code:addons/account/account_bank_statement.py:728
#, python-format
msgid "The bank statement line was already reconciled."
-msgstr ""
+msgstr "Tämä tiliotteen rivi oli jo täsmäytetty"
#. module: account
#: help:account.move.line,statement_id:0
@@ -10145,7 +10145,7 @@ msgstr ""
msgid ""
"This field contains the information related to the numbering of the journal "
"entries of this journal."
-msgstr ""
+msgstr "Tämä kenttä sisältää tietoa päiväkirjan tapahtumien numeroinnista."
#. module: account
#: help:account.tax,domain:0 help:account.tax.template,domain:0
@@ -10203,7 +10203,7 @@ msgstr ""
#: help:account.move,balance:0
msgid ""
"This is a field only used for internal purpose and shouldn't be displayed"
-msgstr ""
+msgstr "Tämä kenttä on vain sisäiseen käyttöön, eikä sitä pitäisi näyttää"
#. module: account
#: help:account.model,name:0
@@ -10480,7 +10480,7 @@ msgstr "Saatavat yhteensä"
#: field:account.invoice.report,residual:0
#: field:account.invoice.report,user_currency_residual:0
msgid "Total Residual"
-msgstr ""
+msgstr "Jäännöksen summa"
#. module: account
#: field:account.bank.statement,total_entry_encoding:0
@@ -10631,7 +10631,7 @@ msgstr "Alkusaldot eivät kelpaa (negatiivinen arvo)."
#: code:addons/account/account_move_line.py:1171
#, python-format
msgid "Unable to change tax!"
-msgstr ""
+msgstr "Veroa ei voitu muuttaa!"
#. module: account
#: selection:account.entries.report,move_line_state:0
@@ -10895,7 +10895,7 @@ msgstr "Vahvista tilisiirto"
#. module: account
#: model:ir.model,name:account.model_validate_account_move_lines
msgid "Validate Account Move Lines"
-msgstr ""
+msgstr "Vahvista kirjanpidon tapahtumarivejä"
#. module: account
#: model:mail.message.subtype,name:account.mt_invoice_validated
@@ -11082,7 +11082,7 @@ msgstr "Arvonalennuksen määrä"
#: code:addons/account/wizard/account_reconcile.py:115
#, python-format
msgid "Write-off"
-msgstr ""
+msgstr "Alaskirjaus"
#. module: account
#: code:addons/account/account.py:2304
@@ -11368,7 +11368,7 @@ msgstr ""
#: code:addons/account/account.py:659
#, python-format
msgid "You cannot remove an account that contains journal items."
-msgstr ""
+msgstr "Et voi poistaa tiliä jolla on jo päiväkirjavientejä"
#. module: account
#: code:addons/account/account.py:664
@@ -11484,7 +11484,7 @@ msgstr "Aseta 'Tilikauden tilinpäätösviennit päiväkirjaan' kuluvalle tilik
#: code:addons/account/static/src/xml/account_bank_statement_reconciliation.xml:68
#, python-format
msgid "You must balance the reconciliation"
-msgstr ""
+msgstr "Suoritus täytyy täsmäyttää"
#. module: account
#. openerp-web
@@ -11686,7 +11686,7 @@ msgstr "Sulje jakso"
#: code:addons/account/static/src/xml/account_bank_statement_reconciliation.xml:45
#, python-format
msgid "reconciliations with the ctrl-enter shortcut."
-msgstr ""
+msgstr "täsmäytyksiä ctrl-enter pikanäppäimellä."
#. module: account
#. openerp-web
diff --git a/addons/account/i18n/gu.po b/addons/account/i18n/gu.po
index 753787a6dbaf5..c01d70b03bb98 100644
--- a/addons/account/i18n/gu.po
+++ b/addons/account/i18n/gu.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2015-11-28 08:22+0000\n"
+"PO-Revision-Date: 2016-10-14 23:28+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Gujarati (http://www.transifex.com/odoo/odoo-8/language/gu/)\n"
"MIME-Version: 1.0\n"
@@ -122,7 +122,7 @@ msgstr ""
#: field:account.config.settings,code_digits:0
#: field:wizard.multi.charts.accounts,code_digits:0
msgid "# of Digits"
-msgstr ""
+msgstr "અંકોની સંખ્યા"
#. module: account
#: view:account.entries.report:account.view_account_entries_report_tree
@@ -147,7 +147,7 @@ msgstr ""
#. module: account
#: field:account.move.line.reconcile,trans_nbr:0
msgid "# of Transaction"
-msgstr ""
+msgstr "વ્યવહાર સંખ્યા"
#. module: account
#: model:email.template,subject:account.email_template_edi_invoice
@@ -158,7 +158,7 @@ msgstr ""
#: code:addons/account/account.py:1861
#, python-format
msgid "%s (Copy)"
-msgstr ""
+msgstr "%s (નકલ)"
#. module: account
#: code:addons/account/account.py:635 code:addons/account/account.py:786
@@ -9098,7 +9098,7 @@ msgstr ""
#. module: account
#: field:account.invoice,amount_untaxed:0
msgid "Subtotal"
-msgstr ""
+msgstr "petasarvalo"
#. module: account
#: view:account.bank.statement:account.view_bank_statement_form2
diff --git a/addons/account/i18n/hi.po b/addons/account/i18n/hi.po
index 9d730e7ab38ee..6121e44c6abab 100644
--- a/addons/account/i18n/hi.po
+++ b/addons/account/i18n/hi.po
@@ -4,13 +4,14 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# Lata Verma , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-08-19 09:27+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"POT-Creation-Date: 2015-10-15 06:40+0000\n"
+"PO-Revision-Date: 2016-09-15 21:07+0000\n"
+"Last-Translator: Lata Verma \n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -45,7 +46,7 @@ msgid ""
"
\n"
" It is also possible to directly pay with Paypal:
\n"
" \n"
-" \n"
+" \n"
" \n"
" % endif\n"
" \n"
@@ -100,47 +101,54 @@ msgid ""
msgstr ""
#. module: account
-#: code:addons/account/account.py:1468
+#: code:addons/account/account.py:1477
#, python-format
msgid " Centralisation"
msgstr ""
+#. module: account
+#. openerp-web
+#: code:addons/account/static/src/js/account_widgets.js:521
+#, python-format
+msgid " seconds"
+msgstr ""
+
#. module: account
#: field:analytic.entries.report,nbr:0
msgid "# Entries"
-msgstr ""
+msgstr "# प्रविष्टियां"
#. module: account
#: field:account.chart.template,code_digits:0
#: field:account.config.settings,code_digits:0
#: field:wizard.multi.charts.accounts,code_digits:0
msgid "# of Digits"
-msgstr ""
+msgstr "अंकों की #"
#. module: account
#: view:account.entries.report:account.view_account_entries_report_tree
msgid "# of Entries"
-msgstr ""
+msgstr "प्रविष्टियों की #"
#. module: account
#: field:account.invoice.report,nbr:0
msgid "# of Invoices"
-msgstr ""
+msgstr "चालान की #"
#. module: account
#: field:account.entries.report,nbr:0
msgid "# of Items"
-msgstr ""
+msgstr "मदों की #"
#. module: account
#: view:account.entries.report:account.view_account_entries_report_tree
msgid "# of Products Qty"
-msgstr ""
+msgstr "उत्पाद मात्रा की #"
#. module: account
#: field:account.move.line.reconcile,trans_nbr:0
msgid "# of Transaction"
-msgstr ""
+msgstr "लेनदेन के #"
#. module: account
#: model:email.template,subject:account.email_template_edi_invoice
@@ -163,25 +171,25 @@ msgstr ""
#. module: account
#: view:website:account.report_partnerbalance
msgid "(Account/Partner) Name"
-msgstr ""
+msgstr "(खाता/साथी)नाम"
#. module: account
#: view:account.chart:account.view_account_chart
msgid ""
"(If you do not select a specific fiscal year, all open fiscal years will be "
"selected.)"
-msgstr ""
+msgstr "(अगर आप विशिष्ट वित्तीय वर्ष नही चुनते हैं, सभी उपवब्ध वित्तीय वर्ष चुने जाएंगे।)"
#. module: account
#: view:account.tax.chart:account.view_account_tax_chart
msgid ""
"(If you do not select a specific period, all open periods will be selected)"
-msgstr ""
+msgstr "(अगर आप कोई एक अवधि नही चुनते हैं, तो सभी उपवब्ध अवधियां चुनी जाएंगी।)"
#. module: account
#: view:account.state.open:account.view_account_state_open
msgid "(Invoice should be unreconciled if you want to open it)"
-msgstr ""
+msgstr "(चालान असंगत होना चाहिए, अगर आप उसे खोलना चाहते हैं।)"
#. module: account
#: view:account.analytic.chart:account.account_analytic_chart_view
@@ -199,52 +207,52 @@ msgstr ""
#: view:account.invoice:account.invoice_form
#: view:account.invoice:account.invoice_supplier_form
msgid "(update)"
-msgstr ""
+msgstr "(सुधार)"
#. module: account
#: view:account.bank.statement:account.view_bank_statement_form2
msgid "+ Transactions"
-msgstr ""
+msgstr "+ लेनदेन"
#. module: account
#: model:account.payment.term,name:account.account_payment_term_15days
#: model:account.payment.term,note:account.account_payment_term_15days
msgid "15 Days"
-msgstr ""
+msgstr "15 दिन"
#. module: account
#: selection:account.config.settings,period:0
#: selection:account.installer,period:0
msgid "3 Monthly"
-msgstr ""
+msgstr "3 मासिक"
#. module: account
#: model:account.payment.term,name:account.account_payment_term
#: model:account.payment.term,note:account.account_payment_term
msgid "30 Days End of Month"
-msgstr ""
+msgstr "30 दिन महीने का अंत"
#. module: account
#: model:account.payment.term,name:account.account_payment_term_net
#: model:account.payment.term,note:account.account_payment_term_net
msgid "30 Net Days"
-msgstr ""
+msgstr "30 अशेष दिन"
#. module: account
#: model:account.payment.term,name:account.account_payment_term_advance
#: model:account.payment.term,note:account.account_payment_term_advance
msgid "30% Advance End 30 Days"
-msgstr ""
+msgstr "30% अग्रिम राशि अंत 30 दिन"
#. module: account
#: view:website:account.report_generalledger
msgid ": General ledger"
-msgstr ""
+msgstr ": सामान्य बहीखाता "
#. module: account
#: view:website:account.report_trialbalance
msgid ": Trial Balance"
-msgstr ""
+msgstr ":परीक्षण शेष"
#. module: account
#: model:ir.actions.act_window,help:account.action_account_period
@@ -256,7 +264,7 @@ msgid ""
" usually corresponds to the periods of the tax declaration.\n"
" \n"
" "
-msgstr ""
+msgstr "\nएक वित्तीय वर्ष जोड़ने के लिए क्लिक करें।\n
\nएक लेखा अवधि आम तौर पर एक महीने या तिमाही होती है। यह\nआम तौर पर कर घोषणा की अवधि से मेल खाती है।\n
"
#. module: account
#: model:ir.actions.act_window,help:account.action_account_journal_form
@@ -272,7 +280,7 @@ msgid ""
" and one for miscellaneous information.\n"
" \n"
" "
-msgstr ""
+msgstr "\nएक पत्रिका को जोड़ने के लिए क्लिक करें।\n
\nएक पत्रिका का प्रयोग व्यापार से संबंधित सभी लेखांकन डेटा को \nरिकॉर्ड करने के लिए किया जाता है। \n
\nएक ठेठ कंपनी भुगतान पद्धति के प्रति एक पत्रिका का उपयोग कर सकते हैं (नकद,\nबैंक खाते, या चेक के द्वारा), एक क्रय पत्रिका, एक विक्रय पत्रिका\nऔर एक विविध जानकारी के लिए।\n
"
#. module: account
#: model:ir.actions.act_window,help:account.action_account_form
@@ -288,7 +296,7 @@ msgid ""
" to disclose a certain amount of information.\n"
" \n"
" "
-msgstr ""
+msgstr "\nएक खाता जोड़ने के लिए क्लिक करें।\n
\nएक खाता एक बहीखाते का हिस्सा है, जो आपकी कम्पनी को \nसभी प्रकार के नामे और श्रेय लेनदेन को पंजीकृत करने की अनुमति देता है।\nकंपनियां दो मुख्य भागों में अपने वार्षिक खातों को पेश करती हैं: \nतुलन पत्र और आय विवरण (लाभ और हानि खाता)।\nकानूनी तौर पर कंपनी के वार्षिक खातों के लिए \nएक निश्चित राशि की जानकारी का खुलासा करना आवश्यक हैं।\n
"
#. module: account
#: model:ir.actions.act_window,help:account.action_account_gain_loss
@@ -303,7 +311,7 @@ msgid ""
" secondary currency set.\n"
" \n"
" "
-msgstr ""
+msgstr "\nएक खाता जोड़ने के लिए क्लिक करें।\n
\nबहु मुद्रा लेनदेन करते समय, विनिमय दर में परिवर्तन की वजह से \nआप कुछ राशि खो या प्राप्त कर सकते हैं। यह मेन्यू, \nआपको आपके उस लाभ और हानि की पूर्वसूचना देगा \nअगर वह लेनदेन आज बंद हो जाते हैं। केवल एक माध्यमिक \nमुद्रा सेट होने के खातों के लिए।\n
"
#. module: account
#: model:ir.actions.act_window,help:account.action_invoice_tree1
@@ -623,58 +631,58 @@ msgstr ""
#. module: account
#: model:ir.model,name:account.model_account_analytic_balance
msgid "Account Analytic Balance"
-msgstr ""
+msgstr "खाते का विश्लेषणात्मक शेष"
#. module: account
#: model:ir.model,name:account.model_account_analytic_chart
msgid "Account Analytic Chart"
-msgstr ""
+msgstr "खाते का विश्लेषणात्मक चार्ट"
#. module: account
#: model:ir.model,name:account.model_account_analytic_cost_ledger
msgid "Account Analytic Cost Ledger"
-msgstr ""
+msgstr "खाते का विश्लेषणात्मक लागत बहीखाता "
#. module: account
#: model:ir.model,name:account.model_account_analytic_cost_ledger_journal_report
msgid "Account Analytic Cost Ledger For Journal Report"
-msgstr ""
+msgstr "खाते का विश्लेषणात्मक लागत बहीखाता जर्नल की रिपोर्ट के लिए"
#. module: account
#: model:ir.model,name:account.model_account_analytic_inverted_balance
msgid "Account Analytic Inverted Balance"
-msgstr ""
+msgstr "खाते का विश्लेषणात्मक उल्टे शेष"
#. module: account
#: model:ir.model,name:account.model_account_analytic_journal_report
msgid "Account Analytic Journal"
-msgstr ""
+msgstr "खाते का विश्लेषणात्मक जर्नल"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_automatic_reconcile
msgid "Account Automatic Reconcile"
-msgstr ""
+msgstr "खाता स्वचालित समाधान"
#. module: account
#: field:account.tax,base_code_id:0
msgid "Account Base Code"
-msgstr ""
+msgstr "खाते का आधार कोड"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_central_journal
#: model:ir.model,name:account.model_account_central_journal
msgid "Account Central Journal"
-msgstr ""
+msgstr "खाता मुख्य जर्नल"
#. module: account
#: view:account.account:account.view_account_form
msgid "Account Code and Name"
-msgstr ""
+msgstr "खाते का कोड और नाम"
#. module: account
#: model:ir.model,name:account.model_account_common_account_report
msgid "Account Common Account Report"
-msgstr ""
+msgstr "खाते की आम खाता रिपोर्ट"
#. module: account
#: model:ir.model,name:account.model_account_common_journal_report
@@ -706,7 +714,7 @@ msgstr ""
#: view:account.move:account.view_move_form
#: model:ir.model,name:account.model_account_move
msgid "Account Entry"
-msgstr ""
+msgstr "खाते में एंट्री"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_general_journal
@@ -1083,7 +1091,7 @@ msgstr ""
#: model:ir.ui.menu,name:account.menu_action_account_form
#: model:ir.ui.menu,name:account.menu_analytic
msgid "Accounts"
-msgstr ""
+msgstr "खाते"
#. module: account
#: view:account.journal:account.view_account_journal_form
@@ -1196,7 +1204,7 @@ msgstr "आज तक आयु प्राप्य"
#. module: account
#: view:website:account.report_agedpartnerbalance
msgid "Aged Trial Balance"
-msgstr ""
+msgstr "पुराना परीक्षण समतोल या बैलेंस"
#. module: account
#: selection:account.balance.report,display_account:0
@@ -1205,7 +1213,7 @@ msgstr ""
#: selection:account.tax,type_tax_use:0
#: selection:account.tax.template,type_tax_use:0
msgid "All"
-msgstr ""
+msgstr "सभी"
#. module: account
#: selection:account.aged.trial.balance,target_move:0
@@ -1227,12 +1235,12 @@ msgstr ""
#: code:addons/account/report/common_report_header.py:67
#, python-format
msgid "All Entries"
-msgstr ""
+msgstr "सब प्रविष्टियां"
#. module: account
#: selection:account.partner.balance,display_partner:0
msgid "All Partners"
-msgstr ""
+msgstr "सब साझेदार "
#. module: account
#: selection:account.aged.trial.balance,target_move:0
@@ -1254,17 +1262,17 @@ msgstr ""
#: code:addons/account/report/common_report_header.py:68
#, python-format
msgid "All Posted Entries"
-msgstr ""
+msgstr "सब विज्ञापित प्रविष्टियां"
#. module: account
#: view:website:account.report_trialbalance
msgid "All accounts"
-msgstr ""
+msgstr "सब खाते"
#. module: account
#: view:website:account.report_generalledger
msgid "All accounts'"
-msgstr ""
+msgstr "सब खाते'"
#. module: account
#: field:account.bank.statement,all_lines_reconciled:0
@@ -1299,7 +1307,7 @@ msgstr ""
#. module: account
#: field:account.journal,update_posted:0
msgid "Allow Cancelling Entries"
-msgstr ""
+msgstr "प्रविष्टियों रद्द करने की अनुमति है"
#. module: account
#: field:account.account,reconcile:0
@@ -1362,7 +1370,7 @@ msgstr ""
#: field:cash.box.out,amount:0 view:website:account.report_invoice_document
#, python-format
msgid "Amount"
-msgstr ""
+msgstr "रकम"
#. module: account
#: view:account.payment.term.line:account.view_payment_term_line_form
@@ -1431,7 +1439,7 @@ msgstr ""
#: field:account.move.line.reconcile.writeoff,analytic_id:0
#: field:account.statement.operation.template,analytic_account_id:0
msgid "Analytic Account"
-msgstr ""
+msgstr "विश्लेषणात्मक खाता"
#. module: account
#: view:account.analytic.chart:account.account_analytic_chart_view
@@ -1595,26 +1603,30 @@ msgstr ""
#. module: account
#: view:account.config.settings:account.view_account_config_settings
msgid "Apply"
-msgstr ""
+msgstr "लागू करें"
#. module: account
#: help:account.fiscal.position,auto_apply:0
-msgid "Apply automatically this fiscal position."
+msgid "Apply automatically this fiscal position if the conditions match."
msgstr ""
#. module: account
-#: help:account.fiscal.position,country_group_id:0
-msgid "Apply only if delivery or invocing country match the group."
+#: help:account.fiscal.position,vat_required:0
+msgid "Apply only if partner has a VAT number."
msgstr ""
#. module: account
-#: help:account.fiscal.position,country_id:0
-msgid "Apply only if delivery or invoicing country match."
+#: help:account.fiscal.position,country_group_id:0
+msgid ""
+"Apply when the shipping or invoicing country is in this country group, and "
+"no position matches the country directly."
msgstr ""
#. module: account
-#: help:account.fiscal.position,vat_required:0
-msgid "Apply only if partner has a VAT number."
+#: help:account.fiscal.position,country_id:0
+msgid ""
+"Apply when the shipping or invoicing country matches. Takes precedence over "
+"positions matching on a country group."
msgstr ""
#. module: account
@@ -1836,7 +1848,7 @@ msgstr ""
#: code:addons/account/account.py:3071
#, python-format
msgid "Bank"
-msgstr ""
+msgstr "बैंक"
#. module: account
#: view:account.config.settings:account.view_account_config_settings
@@ -1851,7 +1863,7 @@ msgstr ""
#: field:account.invoice,partner_bank_id:0
#: field:account.invoice.report,partner_bank_id:0
msgid "Bank Account"
-msgstr ""
+msgstr "बैंक खाता"
#. module: account
#: help:account.invoice,partner_bank_id:0
@@ -1892,7 +1904,7 @@ msgstr ""
#. module: account
#: model:ir.model,name:account.model_account_bank_statement_line
msgid "Bank Statement Line"
-msgstr ""
+msgstr " बैंक विवरण रेखा"
#. module: account
#: model:ir.actions.act_window,name:account.action_bank_statement_tree
@@ -2104,7 +2116,7 @@ msgstr ""
#: view:account.invoice:account.invoice_form
#: view:account.invoice:account.invoice_supplier_form
msgid "Cancel Invoice"
-msgstr ""
+msgstr "रद्द चालान"
#. module: account
#: view:account.invoice.cancel:account.account_invoice_cancel_view
@@ -2568,6 +2580,13 @@ msgstr ""
msgid "Choose Fiscal Year"
msgstr ""
+#. module: account
+#. openerp-web
+#: code:addons/account/static/src/js/account_widgets.js:1297
+#, python-format
+msgid "Choose counterpart"
+msgstr ""
+
#. module: account
#: view:account.automatic.reconcile:account.account_automatic_reconcile_view1
#: view:account.bank.statement:account.view_bank_statement_form
@@ -2677,7 +2696,7 @@ msgstr "स्तंभ लेबल"
#. module: account
#: field:account.move.line.reconcile.writeoff,comment:0
msgid "Comment"
-msgstr ""
+msgstr "टिप्पणी "
#. module: account
#: view:website:account.report_invoice_document
@@ -2688,7 +2707,7 @@ msgstr ""
#: field:account.invoice,commercial_partner_id:0
#: help:account.invoice.report,commercial_partner_id:0
msgid "Commercial Entity"
-msgstr ""
+msgstr "व्यावसायिक इकाई"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_common_menu
@@ -2775,7 +2794,7 @@ msgstr ""
#. module: account
#: help:account.journal,company_id:0
msgid "Company related to this journal"
-msgstr ""
+msgstr "इस पत्रिका से संबंधित कंपनी"
#. module: account
#: view:accounting.report:account.accounting_report_view
@@ -2975,8 +2994,8 @@ msgstr ""
#. module: account
#: field:account.fiscal.position,country_id:0
-msgid "Countries"
-msgstr ""
+msgid "Country"
+msgstr "देश"
#. module: account
#: field:account.fiscal.position,country_group_id:0
@@ -3029,6 +3048,13 @@ msgstr ""
msgid "Create Refund"
msgstr ""
+#. module: account
+#. openerp-web
+#: code:addons/account/static/src/js/account_widgets.js:1294
+#, python-format
+msgid "Create Write-off"
+msgstr ""
+
#. module: account
#: selection:account.invoice.refund,filter_refund:0
msgid "Create a draft refund"
@@ -3129,7 +3155,7 @@ msgstr ""
#: field:validate.account.move.lines,create_uid:0
#: field:wizard.multi.charts.accounts,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: account
#: field:account.account,create_date:0
@@ -3218,7 +3244,7 @@ msgstr ""
#: field:validate.account.move.lines,create_date:0
#: field:wizard.multi.charts.accounts,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: account
#: help:account.addtmpl.wizard,cparent_id:0
@@ -3304,7 +3330,7 @@ msgstr ""
#: view:website:account.report_salepurchasejournal
#: field:wizard.multi.charts.accounts,currency_id:0
msgid "Currency"
-msgstr ""
+msgstr "मुद्रा"
#. module: account
#: selection:account.move.line,centralisation:0
@@ -3447,7 +3473,7 @@ msgstr "साथी"
#: view:website:account.report_salepurchasejournal
#, python-format
msgid "Date"
-msgstr ""
+msgstr "तिथि"
#. module: account
#: view:account.bank.statement:account.view_bank_statement_form
@@ -3491,7 +3517,7 @@ msgstr ""
#: help:account.bank.statement,message_last_post:0
#: help:account.invoice,message_last_post:0
msgid "Date of the last message posted on the record."
-msgstr ""
+msgstr "आखिरी अंकित संदेश की तारीख़।"
#. module: account
#: help:res.partner,last_reconciliation_date:0
@@ -3869,7 +3895,7 @@ msgstr "नियत तारीख"
#. module: account
#: view:account.period:account.view_account_period_form
msgid "Duration"
-msgstr ""
+msgstr "अवधि"
#. module: account
#: code:addons/account/account.py:3197
@@ -3972,7 +3998,7 @@ msgstr ""
#. module: account
#: field:account.config.settings,date_stop:0
msgid "End date"
-msgstr ""
+msgstr "समाप्ति तिथि"
#. module: account
#: code:addons/account/wizard/account_fiscalyear_close.py:41
@@ -4015,7 +4041,7 @@ msgstr ""
#: field:account.move,line_id:0
#: model:ir.actions.act_window,name:account.action_move_line_form
msgid "Entries"
-msgstr ""
+msgstr "प्रविष्टियां"
#. module: account
#: view:account.entries.report:account.view_account_entries_report_graph
@@ -4102,7 +4128,7 @@ msgstr ""
#. module: account
#: field:account.journal,sequence_id:0
msgid "Entry Sequence"
-msgstr ""
+msgstr "प्रवेश अनुक्रम"
#. module: account
#: view:account.subscription:account.view_subscription_search
@@ -4275,7 +4301,7 @@ msgstr ""
#. module: account
#: view:account.entries.report:account.view_account_entries_report_search
msgid "Extended Filters..."
-msgstr ""
+msgstr "विस्तारित फिल्टर्स"
#. module: account
#. openerp-web
@@ -4560,7 +4586,7 @@ msgstr ""
#: field:account.bank.statement,message_follower_ids:0
#: field:account.invoice,message_follower_ids:0
msgid "Followers"
-msgstr ""
+msgstr "फ़ॉलोअर्स"
#. module: account
#: help:account.tax.template,amount:0
@@ -4741,7 +4767,7 @@ msgstr ""
#: model:ir.actions.act_window,name:account.action_account_subscription_generate
#: model:ir.ui.menu,name:account.menu_generate_subscription
msgid "Generate Entries"
-msgstr ""
+msgstr "प्रविष्टियां उत्पन्न करें"
#. module: account
#: field:account.subscription.generate,date:0
@@ -4858,7 +4884,7 @@ msgstr ""
#: view:account.treasury.report:account.view_account_treasury_report_search
#: view:analytic.entries.report:account.view_analytic_entries_report_search
msgid "Group By"
-msgstr ""
+msgstr "वर्गीकरण का आधार"
#. module: account
#: field:account.journal,group_invoice_lines:0
@@ -4969,7 +4995,7 @@ msgstr ""
#: field:validate.account.move,id:0 field:validate.account.move.lines,id:0
#: field:wizard.multi.charts.accounts,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: account
#: field:account.journal.period,icon:0
@@ -5227,7 +5253,7 @@ msgstr ""
#: field:product.category,property_account_income_categ:0
#: field:product.template,property_account_income:0
msgid "Income Account"
-msgstr ""
+msgstr "आय खाता"
#. module: account
#: field:account.chart.template,property_account_income:0
@@ -5691,7 +5717,7 @@ msgstr ""
#: model:ir.ui.menu,name:account.menu_action_move_journal_line_form
#: model:ir.ui.menu,name:account.menu_finance_entries
msgid "Journal Entries"
-msgstr ""
+msgstr "जर्नल प्रविष्टियां"
#. module: account
#: view:account.move:account.view_account_move_filter
@@ -5929,11 +5955,18 @@ msgstr ""
msgid "Keep empty to use the period of the validation(invoice) date."
msgstr ""
+#. module: account
+#. openerp-web
+#: code:addons/account/static/src/js/account_widgets.js:1299
+#, python-format
+msgid "Keep open"
+msgstr ""
+
#. module: account
#. openerp-web
#: field:account.statement.operation.template,label:0
-#: code:addons/account/static/src/js/account_widgets.js:75
-#: code:addons/account/static/src/js/account_widgets.js:80
+#: code:addons/account/static/src/js/account_widgets.js:74
+#: code:addons/account/static/src/js/account_widgets.js:79
#: view:website:account.report_journal
#: view:website:account.report_salepurchasejournal
#, python-format
@@ -5954,7 +5987,7 @@ msgstr ""
#: field:account.bank.statement,message_last_post:0
#: field:account.invoice,message_last_post:0
msgid "Last Message Date"
-msgstr ""
+msgstr "अंतिम संदेश की तारीख"
#. module: account
#: field:account.account,write_uid:0
@@ -6041,7 +6074,7 @@ msgstr ""
#: field:validate.account.move.lines,write_uid:0
#: field:wizard.multi.charts.accounts,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: account
#: field:account.account,write_date:0
@@ -6128,7 +6161,7 @@ msgstr ""
#: field:validate.account.move.lines,write_date:0
#: field:wizard.multi.charts.accounts,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: account
#: field:res.partner,last_reconciliation_date:0
@@ -6205,7 +6238,7 @@ msgstr ""
#. module: account
#: field:account.journal,loss_account_id:0
msgid "Loss Account"
-msgstr ""
+msgstr "हानि लेखा"
#. module: account
#: field:account.config.settings,expense_currency_exchange_account_id:0
@@ -6334,7 +6367,7 @@ msgstr "संदेश"
#: help:account.bank.statement,message_ids:0
#: help:account.invoice,message_ids:0
msgid "Messages and communication history"
-msgstr ""
+msgstr "संदेश और संचार इतिहास"
#. module: account
#: view:account.tax:account.view_tax_form
@@ -6385,7 +6418,7 @@ msgstr ""
#: view:analytic.entries.report:account.view_analytic_entries_report_search
#: field:report.account.sales,month:0 field:report.account_type.sales,month:0
msgid "Month"
-msgstr ""
+msgstr "माह"
#. module: account
#: field:report.aged.receivable,name:0
@@ -6692,7 +6725,7 @@ msgstr ""
#. module: account
#: field:account.account.template,note:0
msgid "Note"
-msgstr ""
+msgstr "टिप्पणी "
#. module: account
#: view:account.account.template:account.view_account_template_form
@@ -7715,7 +7748,7 @@ msgstr ""
#. module: account
#: field:account.journal,profit_account_id:0
msgid "Profit Account"
-msgstr ""
+msgstr "लाभ-लेखा"
#. module: account
#: model:ir.ui.menu,name:account.menu_account_report_pl
@@ -8284,7 +8317,7 @@ msgstr ""
#: view:account.invoice:account.invoice_supplier_form
#: view:account.invoice:account.invoice_tree
msgid "Responsible"
-msgstr ""
+msgstr "जिम्मेदार"
#. module: account
#: selection:account.financial.report,sign:0
@@ -8327,6 +8360,12 @@ msgstr ""
msgid "Round per line"
msgstr ""
+#. module: account
+#: code:addons/account/account_bank_statement.py:899
+#, python-format
+msgid "Rounding error from currency conversion"
+msgstr ""
+
#. module: account
#: view:account.subscription:account.view_subscription_search
#: selection:account.subscription,state:0
@@ -9618,6 +9657,20 @@ msgid ""
"The commercial entity that will be used on Journal Entries for this invoice"
msgstr ""
+#. module: account
+#: constraint:account.config.settings:0
+msgid ""
+"The company of the gain exchange rate account must be the same than the "
+"company selected."
+msgstr ""
+
+#. module: account
+#: constraint:account.config.settings:0
+msgid ""
+"The company of the loss exchange rate account must be the same than the "
+"company selected."
+msgstr ""
+
#. module: account
#: help:account.tax,type:0
msgid "The computation method for the tax amount."
@@ -9647,6 +9700,11 @@ msgid ""
"The fiscal position will determine taxes and accounts used for the partner."
msgstr ""
+#. module: account
+#: view:account.config.settings:account.view_account_config_settings
+msgid "The fiscal year is created when installing a Chart of Account."
+msgstr ""
+
#. module: account
#: constraint:account.aged.trial.balance:0 constraint:account.balance.report:0
#: constraint:account.central.journal:0
@@ -9959,29 +10017,41 @@ msgid "This Year"
msgstr ""
#. module: account
-#: help:res.partner,property_account_payable:0
+#: help:product.template,property_account_expense:0
msgid ""
-"This account will be used instead of the default one as the payable account "
-"for the current partner"
+"This account will be used for invoices instead of the default one to value "
+"expenses for the current product."
msgstr ""
#. module: account
-#: help:res.partner,property_account_receivable:0
+#: help:product.template,property_account_income:0
msgid ""
-"This account will be used instead of the default one as the receivable "
-"account for the current partner"
+"This account will be used for invoices instead of the default one to value "
+"sales for the current product."
msgstr ""
#. module: account
#: help:product.category,property_account_expense_categ:0
-#: help:product.template,property_account_expense:0
-msgid "This account will be used to value outgoing stock using cost price."
+msgid "This account will be used for invoices to value expenses."
msgstr ""
#. module: account
#: help:product.category,property_account_income_categ:0
-#: help:product.template,property_account_income:0
-msgid "This account will be used to value outgoing stock using sale price."
+msgid "This account will be used for invoices to value sales."
+msgstr ""
+
+#. module: account
+#: help:res.partner,property_account_payable:0
+msgid ""
+"This account will be used instead of the default one as the payable account "
+"for the current partner"
+msgstr ""
+
+#. module: account
+#: help:res.partner,property_account_receivable:0
+msgid ""
+"This account will be used instead of the default one as the receivable "
+"account for the current partner"
msgstr ""
#. module: account
@@ -10298,7 +10368,7 @@ msgstr ""
#. openerp-web
#: code:addons/account/static/src/xml/account_bank_statement_reconciliation.xml:36
#, python-format
-msgid "Tip : Hit ctrl-enter to validate the whole sheet."
+msgid "Tip : Hit ctrl-enter to reconcile all balanced items."
msgstr ""
#. module: account
@@ -10644,7 +10714,7 @@ msgstr ""
#: field:account.bank.statement,message_unread:0
#: field:account.invoice,message_unread:0
msgid "Unread Messages"
-msgstr ""
+msgstr "अपठित संदेश"
#. module: account
#: field:account.account,unrealized_gain_loss:0
@@ -11052,6 +11122,13 @@ msgid ""
"In order to proceed, you first need to deselect the %s transactions."
msgstr ""
+#. module: account
+#. openerp-web
+#: code:addons/account/static/src/js/account_widgets.js:1050
+#, python-format
+msgid "last"
+msgstr ""
+
#. module: account
#: help:account.move.line,blocked:0
msgid ""
@@ -11060,13 +11137,21 @@ msgid ""
msgstr ""
#. module: account
-#: code:addons/account/account_move_line.py:1220
+#: code:addons/account/account_move_line.py:1246
#, python-format
msgid "You can not add/modify entries in a closed period %s of journal %s."
msgstr ""
#. module: account
-#: code:addons/account/account.py:1047
+#: code:addons/account/wizard/account_open_closed_fiscalyear.py:42
+#, python-format
+msgid ""
+"You can not cancel closing entries if the 'End of Year Entries Journal' "
+"period is closed."
+msgstr ""
+
+#. module: account
+#: code:addons/account/account.py:1057
#, python-format
msgid "You can not re-open a period which belongs to closed fiscal year"
msgstr ""
@@ -11112,7 +11197,7 @@ msgid ""
msgstr ""
#. module: account
-#: code:addons/account/account.py:2273
+#: code:addons/account/account.py:2293
#, python-format
msgid ""
"You can specify year, month and date in the name of the model using the following labels:\n"
@@ -11619,7 +11704,7 @@ msgstr ""
#. module: account
#: view:res.partner:account.view_partner_property_form
msgid "the parent company"
-msgstr ""
+msgstr "मूल कंपनी"
#. module: account
#: view:account.installer:account.view_account_configuration_installer
diff --git a/addons/account/i18n/hr.po b/addons/account/i18n/hr.po
index bc33cad5cff17..9768ae52383d7 100644
--- a/addons/account/i18n/hr.po
+++ b/addons/account/i18n/hr.po
@@ -12,8 +12,8 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-08-19 14:38+0000\n"
-"Last-Translator: Ana-Maria Olujić \n"
+"PO-Revision-Date: 2016-09-29 12:33+0000\n"
+"Last-Translator: Bole \n"
"Language-Team: Croatian (http://www.transifex.com/odoo/odoo-8/language/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1610,7 +1610,7 @@ msgstr "Primjeni"
#. module: account
#: help:account.fiscal.position,auto_apply:0
msgid "Apply automatically this fiscal position if the conditions match."
-msgstr ""
+msgstr "Automatski primjeni ovu fiskalnu poziciju nako uvijeti odgovaraju."
#. module: account
#: help:account.fiscal.position,vat_required:0
@@ -1735,7 +1735,7 @@ msgstr "Automatsko oblikovanje"
#. module: account
#: field:account.journal,entry_posted:0
msgid "Autopost Created Moves"
-msgstr ""
+msgstr "Automatski proknjiži kreirane stavke"
#. module: account
#: view:account.journal:account.view_account_journal_form
@@ -4074,7 +4074,7 @@ msgstr ""
#: view:website:account.report_journal
#: view:website:account.report_salepurchasejournal
msgid "Entries Sorted By:"
-msgstr ""
+msgstr "Sortirano po"
#. module: account
#: field:account.print.journal,sort_selection:0
@@ -4460,7 +4460,7 @@ msgstr "Fiskalna pozicija"
#. module: account
#: view:website:account.report_invoice_document
msgid "Fiscal Position Remark:"
-msgstr ""
+msgstr "Komentar fiskalne pozicije:"
#. module: account
#: view:account.fiscal.position.template:account.view_account_position_template_form
@@ -6698,7 +6698,7 @@ msgstr "Ne ispisuje se na fakturi"
#. module: account
#: view:website:account.report_agedpartnerbalance
msgid "Not due"
-msgstr ""
+msgstr "Nije dospjelo"
#. module: account
#: view:website:account.report_centraljournal
@@ -6710,7 +6710,7 @@ msgstr ""
#: view:website:account.report_partnerledgerother
#: view:website:account.report_trialbalance
msgid "Not filtered"
-msgstr ""
+msgstr "Nije filtrirano"
#. module: account
#: code:addons/account/report/common_report_header.py:92
@@ -7210,7 +7210,7 @@ msgstr "Partneri"
#. module: account
#: view:website:account.report_agedpartnerbalance
msgid "Partner's:"
-msgstr ""
+msgstr "Partnerovo:"
#. module: account
#: model:ir.ui.menu,name:account.next_id_22
@@ -7300,7 +7300,7 @@ msgstr "Redak uvjeta plaćanja"
#. module: account
#: view:website:account.report_invoice_document
msgid "Payment Term:"
-msgstr ""
+msgstr "Uvjet plaćanja:"
#. module: account
#: field:account.invoice,payment_term:0
@@ -7379,7 +7379,7 @@ msgstr "Postotak"
#. module: account
#: selection:account.statement.operation.template,amount_type:0
msgid "Percentage of open balance"
-msgstr ""
+msgstr "Postotak otvorenog iznosa"
#. module: account
#: selection:account.statement.operation.template,amount_type:0
@@ -7430,7 +7430,7 @@ msgstr "Period :"
#: view:website:account.report_analyticcostledgerquantity
#: view:website:account.report_analyticjournal
msgid "Period From:"
-msgstr ""
+msgstr "Period od:"
#. module: account
#: field:account.aged.trial.balance,period_length:0
@@ -7453,7 +7453,7 @@ msgstr "Suma razdoblja"
#: view:website:account.report_analyticcostledgerquantity
#: view:website:account.report_analyticjournal
msgid "Period To:"
-msgstr ""
+msgstr "Period do:"
#. module: account
#: field:account.subscription,period_type:0
@@ -7910,7 +7910,7 @@ msgstr "Ponovno otvaranje razdoblja"
#. module: account
#: view:account.bank.statement:account.view_bank_statement_form2
msgid "Real Closing Balance"
-msgstr ""
+msgstr "Stvarni saldo zatvaranja"
#. module: account
#: field:account.invoice.refund,description:0 field:cash.box.in,name:0
@@ -8059,7 +8059,7 @@ msgstr "Transakcije zatvaranja"
#. module: account
#: field:account.entries.report,reconcile_id:0
msgid "Reconciliation number"
-msgstr ""
+msgstr "Broj zatvaranja"
#. module: account
#: model:ir.actions.client,name:account.action_bank_reconcile
@@ -8137,7 +8137,7 @@ msgstr "Referenca/Opis"
#. module: account
#: view:website:account.report_invoice_document
msgid "Reference:"
-msgstr ""
+msgstr "Vezna oznaka:"
#. module: account
#: view:account.invoice:account.invoice_form
@@ -9241,7 +9241,7 @@ msgstr ""
#. module: account
#: view:account.analytic.line:account.view_account_analytic_line_filter
msgid "Tasks Month"
-msgstr ""
+msgstr "Zadaci po mjesecu"
#. module: account
#. openerp-web
diff --git a/addons/account/i18n/id.po b/addons/account/i18n/id.po
index 69ce4e04c50b8..cc3fbaa2f2589 100644
--- a/addons/account/i18n/id.po
+++ b/addons/account/i18n/id.po
@@ -8,13 +8,13 @@
# Iman Sulaiman , 2015
# Mohamad Dadi Nurdiansah , 2015
# oon arfiandwi , 2015
-# Wahyu Setiawan , 2015
+# Wahyu Setiawan , 2015-2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2015-12-25 13:42+0000\n"
+"PO-Revision-Date: 2016-10-10 09:10+0000\n"
"Last-Translator: Wahyu Setiawan \n"
"Language-Team: Indonesian (http://www.transifex.com/odoo/odoo-8/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -1461,7 +1461,7 @@ msgstr "Akuntansi Analitik"
#: model:ir.actions.act_window,name:account.action_account_analytic_account_form
#: model:ir.ui.menu,name:account.account_analytic_def_account
msgid "Analytic Accounts"
-msgstr "Anda harus membuat struktur account analitik tergantung pada kebutuhan Anda untuk menganalisis biaya dan pendapatan. Dalam Odoo, analitik account juga digunakan untuk melacak pelanggan kontrak."
+msgstr "Akun Analisis"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_analytic_balance
@@ -4092,19 +4092,19 @@ msgstr "Entri tidak dari akun yang sama atau sudah didamaikan!"
#. module: account
#: model:ir.model,name:account.model_account_statement_from_invoice_lines
msgid "Entries by Statement from Invoices"
-msgstr "Entri oleh pernyataan dari faktur"
+msgstr "Masukan oleh pernyataan dari faktur"
#. module: account
#: code:addons/account/account_analytic_line.py:148
#: code:addons/account/account_move_line.py:1069
#, python-format
msgid "Entries: "
-msgstr "Entri:"
+msgstr "Masukan:"
#. module: account
#: field:account.subscription.line,move_id:0
msgid "Entry"
-msgstr "Ayat"
+msgstr "Masukan"
#. module: account
#: code:addons/account/account_move_line.py:942
diff --git a/addons/account/i18n/it.po b/addons/account/i18n/it.po
index d90c8c122db71..3a299c5e45d92 100644
--- a/addons/account/i18n/it.po
+++ b/addons/account/i18n/it.po
@@ -3,6 +3,7 @@
# * account
#
# Translators:
+# Augustina Ntow Brisaa , 2016
# FIRST AUTHOR , 2014
# Giacomo Grasso , 2016
# Lorenzo Battistini , 2015
@@ -13,8 +14,8 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-08-11 16:43+0000\n"
-"Last-Translator: Paolo Valier\n"
+"PO-Revision-Date: 2016-09-07 17:58+0000\n"
+"Last-Translator: Augustina Ntow Brisaa \n"
"Language-Team: Italian (http://www.transifex.com/odoo/odoo-8/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -101,7 +102,7 @@ msgid ""
" * The 'Open' status is used when user create invoice,a invoice number is generated.Its in open status till user does not pay invoice.\n"
" * The 'Paid' status is set automatically when the invoice is paid. Its related journal entries may or may not be reconciled.\n"
" * The 'Cancelled' status is used when user cancel invoice."
-msgstr ""
+msgstr "Lo stato 'Bozze' viene usato quando l'utente codifica una fattura nuova e non confermata.\nLa 'Pro-forma' , quando la fattura e' sullo stato Pro-forma, la fattura non ha il numero di fattura.\nLo stato 'Aperto' viene usato quando l'utente crea una fattura, il numero di fattura viene prodotto. Rimarrà in uno stato aperto fino a quando l'utente non paga la fattura.\nLo stato 'Pagato' viene automaticamente impostato, quando la fattura viene pagata. I suoi contenuti di giornale potrebbero o potrebbero non essere riconciliati. "
#. module: account
#: code:addons/account/account.py:1477
@@ -331,7 +332,7 @@ msgid ""
" the bottom of each invoice.\n"
" \n"
" "
-msgstr ""
+msgstr "Clicca per creare una fattura cliente. \n\nLa fattura elettronica di Odoo permette di facilitare e velocizzare la raccolta dei pagamenti del cliente. Il cliente riceve la fattura per e-mail e può pagare online e/o importarlo nel proprio sistema.\n\nLe discussioni con il tuo cliente sono automaticamente mostrate in fondo a ciascuna fattura."
#. module: account
#: model:ir.actions.act_window,help:account.action_invoice_tree3
diff --git a/addons/account/i18n/ja.po b/addons/account/i18n/ja.po
index 5b1d69568f58f..fb66d8734e9c2 100644
--- a/addons/account/i18n/ja.po
+++ b/addons/account/i18n/ja.po
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-08-07 02:29+0000\n"
+"PO-Revision-Date: 2016-11-26 06:02+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Japanese (http://www.transifex.com/odoo/odoo-8/language/ja/)\n"
"MIME-Version: 1.0\n"
@@ -575,7 +575,7 @@ msgstr "期間は会計に関連する活動を記録すべき会計エントリ
#: code:addons/account/account_bank_statement.py:736
#, python-format
msgid "A selected move line was already reconciled."
-msgstr ""
+msgstr "選択された仕訳明細は既に消込済です。"
#. module: account
#: sql_constraint:account.fiscal.position.tax:0
@@ -2036,7 +2036,7 @@ msgstr ""
#. module: account
#: model:ir.filters,name:account.filter_invoice_salespersons
msgid "By Salespersons"
-msgstr ""
+msgstr "販売担当者ごと"
#. module: account
#: help:account.fiscal.position,active:0
@@ -2188,7 +2188,7 @@ msgstr ""
#: code:addons/account/account.py:1550
#, python-format
msgid "Cannot create moves for different companies."
-msgstr ""
+msgstr "異なる会社の口座には、資金移動できません。"
#. module: account
#: code:addons/account/account_invoice.py:830
@@ -7660,7 +7660,7 @@ msgstr ""
#. module: account
#: view:account.invoice:account.invoice_form
msgid "Pro Forma Invoice"
-msgstr ""
+msgstr "見積送状"
#. module: account
#: selection:account.invoice,state:0
@@ -11128,7 +11128,7 @@ msgstr ""
#: code:addons/account/static/src/js/account_widgets.js:1050
#, python-format
msgid "last"
-msgstr ""
+msgstr "ラスト"
#. module: account
#: help:account.move.line,blocked:0
@@ -11599,7 +11599,7 @@ msgstr "日数"
#. module: account
#: view:account.config.settings:account.view_account_config_settings
msgid "e.g. sales@odoo.com"
-msgstr ""
+msgstr "例: sales@odoo.com"
#. module: account
#: view:account.config.settings:account.view_account_config_settings
diff --git a/addons/account/i18n/mk.po b/addons/account/i18n/mk.po
index e4a187b81feb3..506589586853f 100644
--- a/addons/account/i18n/mk.po
+++ b/addons/account/i18n/mk.po
@@ -3,7 +3,7 @@
# * account
#
# Translators:
-# Aleksandar Vangelovski , 2015
+# Aleksandar Vangelovski , 2015-2016
# Anica Milanova, 2015
# FIRST AUTHOR , 2014
msgid ""
@@ -11,8 +11,8 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-04-18 13:40+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-11-17 14:07+0000\n"
+"Last-Translator: Aleksandar Vangelovski \n"
"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-8/language/mk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -376,7 +376,7 @@ msgid ""
" goes out of the cash box.\n"
" \n"
" "
-msgstr "\n Кликнете за да креирате нов готовински лог.\n
\n Касата ви дозволува да ги управувате готовинските записи во вашите дневници за продажба. Оваа карактеристика во обезбедува лесен начин да ги следите готовинските плаќања на дневна основа. Може да ги внесете монетите кои ги имате во касата, и потоа да ги објавите записите кога парите влегуваат или излегуваат од касата.\n
\n "
+msgstr "\n Кликнете за да креирате нов готовински лог.\n
\n Касата ви дозволува да ги управувате готовинските записи во вашите дневници за продажба. Оваа карактеристика во обезбедува лесен начин да ги следите готовинските плаќања на дневна основа. Може да ги внесете монетите кои ги имате во касата, и потоа да ги прокнижите записите кога парите влегуваат или излегуваат од касата.\n
\n "
#. module: account
#: model:ir.actions.act_window,help:account.action_account_statement_operation_template
@@ -417,7 +417,7 @@ msgid ""
" entries to automate the postings in the system.\n"
" \n"
" "
-msgstr "\n Кликнете за да дефинирате нов повторувачки внес.\n
\n Повторувачкиот внес се појавува на основа на повторување од специфичен датум,\n на пр. кој кореспондира со потпишување на договорот или\n спогодбата со купувачот или добавувачот. Може да креирате такви\n внесови за да ги автоматизирате објавите во системот.\n
\n "
+msgstr "\n Кликнете за да дефинирате нов повторувачки внес.\n
\n Повторувачкиот внес се појавува на основа на повторување од специфичен датум,\n на пр. кој кореспондира со потпишување на договорот или\n спогодбата со купувачот или добавувачот. Може да креирате такви\n внесови за да ги автоматизирате книжењата во системот.\n
\n "
#. module: account
#: model:ir.actions.act_window,help:account.action_tax_code_list
@@ -5209,7 +5209,7 @@ msgstr "За да ја затворите фискалната година, н
#, python-format
msgid ""
"In order to close a period, you must first post related journal entries."
-msgstr "Со цел да затворите период, мора првин да ги објавите поврзаните внесови на картицата."
+msgstr "Со цел да затворите период, мора прво да ги искнижите поврзаните внесови во дневникот."
#. module: account
#: code:addons/account/account_bank_statement.py:436
@@ -7553,7 +7553,7 @@ msgstr "Ве молиме верификувајте ја цената од фа
#. module: account
#: view:account.move:account.view_move_form
msgid "Post"
-msgstr "Објави"
+msgstr "Книжи"
#. module: account
#: model:ir.actions.act_window,name:account.action_validate_account_move
@@ -7562,7 +7562,7 @@ msgstr "Објави"
#: view:validate.account.move:account.validate_account_move_view
#: view:validate.account.move.lines:account.validate_account_move_line_view
msgid "Post Journal Entries"
-msgstr "Објави внесови во дневник"
+msgstr "Книжи внесови во дневник"
#. module: account
#: view:account.entries.report:account.view_account_entries_report_search
@@ -8323,7 +8323,7 @@ msgstr "Одговорен"
#. module: account
#: selection:account.financial.report,sign:0
msgid "Reverse balance sign"
-msgstr ""
+msgstr "Преобрати знак на салдо"
#. module: account
#: view:account.chart.template:account.view_account_chart_template_seacrh
@@ -10022,14 +10022,14 @@ msgstr "Оваа година"
msgid ""
"This account will be used for invoices instead of the default one to value "
"expenses for the current product."
-msgstr ""
+msgstr "Оваа сметка ќе биде користена за фактури наместо примарната за да се вреднат трошоците наменети за тековниот производ."
#. module: account
#: help:product.template,property_account_income:0
msgid ""
"This account will be used for invoices instead of the default one to value "
"sales for the current product."
-msgstr ""
+msgstr "Оваа сметка ќе биде користена за фактури наместо примарната за да се вреднуваат продажбите наменети за тековниот производ."
#. module: account
#: help:product.category,property_account_expense_categ:0
diff --git a/addons/account/i18n/nb.po b/addons/account/i18n/nb.po
index 4112e55bfd8f5..80d0880175297 100644
--- a/addons/account/i18n/nb.po
+++ b/addons/account/i18n/nb.po
@@ -4,14 +4,15 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# Håvard Line <071203line@gmail.com>, 2016
# Roy Edvard Ellingsen , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-05-04 09:47+0000\n"
-"Last-Translator: Roy Edvard Ellingsen \n"
+"PO-Revision-Date: 2016-10-12 09:18+0000\n"
+"Last-Translator: Håvard Line <071203line@gmail.com>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/odoo/odoo-8/language/nb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -104,7 +105,7 @@ msgstr ""
#: code:addons/account/account.py:1477
#, python-format
msgid " Centralisation"
-msgstr ""
+msgstr "Sentralisering"
#. module: account
#. openerp-web
@@ -128,7 +129,7 @@ msgstr "antall siffer"
#. module: account
#: view:account.entries.report:account.view_account_entries_report_tree
msgid "# of Entries"
-msgstr "# av Poster"
+msgstr "Oppføringer"
#. module: account
#: field:account.invoice.report,nbr:0
@@ -178,7 +179,7 @@ msgstr "(Konto/Partner) navn"
msgid ""
"(If you do not select a specific fiscal year, all open fiscal years will be "
"selected.)"
-msgstr ""
+msgstr "(hvis du ikke velger regnskapsår, blir alle åpne regnkapsår valgt automatisk.)"
#. module: account
#: view:account.tax.chart:account.view_account_tax_chart
@@ -972,7 +973,7 @@ msgstr "Kontoplan"
#. module: account
#: view:account.account:account.view_account_form
msgid "Account code"
-msgstr "Konto nummer"
+msgstr "Kontonummer"
#. module: account
#: model:ir.model,name:account.model_account_move_line_reconcile
@@ -3428,7 +3429,7 @@ msgstr "Kundeavgifter"
#. module: account
#: view:website:account.report_overdue_document
msgid "Customer ref:"
-msgstr ""
+msgstr "Kundereferanse:"
#. module: account
#: model:ir.ui.menu,name:account.menu_account_customer
diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po
index 7e27e565833fa..c1b0f01cd6837 100644
--- a/addons/account/i18n/pt.po
+++ b/addons/account/i18n/pt.po
@@ -5,15 +5,16 @@
# Translators:
# Daniel Santos , 2014
# Diogo Duarte , 2015
-# Manuela Silva , 2015
+# Manuela Silva , 2015
+# Pedro Castro Silva , 2016
# Ricardo Martins , 2015
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2015-11-28 08:22+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-08-29 15:48+0000\n"
+"Last-Translator: Pedro Castro Silva \n"
"Language-Team: Portuguese (http://www.transifex.com/odoo/odoo-8/language/pt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -113,7 +114,7 @@ msgstr " Centralização"
#: code:addons/account/static/src/js/account_widgets.js:521
#, python-format
msgid " seconds"
-msgstr ""
+msgstr "segundos"
#. module: account
#: field:analytic.entries.report,nbr:0
diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po
index 5558d5d63c4f4..c76c1209fbdfa 100644
--- a/addons/account/i18n/pt_BR.po
+++ b/addons/account/i18n/pt_BR.po
@@ -3,12 +3,14 @@
# * account
#
# Translators:
+# Chico Venancio , 2016
# Clemilton Clementino , 2015
# danimaribeiro , 2015
# danimaribeiro , 2015
# FIRST AUTHOR , 2014
# francisco alexandre bezerra da silva , 2015
-# grazziano , 2016
+# grazziano , 2016
+# grazziano , 2016
# Luiz Carlos de Lima , 2015
# Mateus Lopes , 2015
# Rodrigo Macedo , 2015
@@ -17,8 +19,8 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-08-03 23:10+0000\n"
-"Last-Translator: grazziano \n"
+"PO-Revision-Date: 2016-11-17 01:09+0000\n"
+"Last-Translator: grazziano \n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/odoo/odoo-8/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -95,7 +97,7 @@ msgid ""
" \n"
"\n"
" "
-msgstr "\n\n\n\n
Olá ${object.partner_id.name},
\n\n
A nova fatura está disponível para você:
\n\n
\n Referências
\n Número da fatura: ${object.number}
\n Itotal de nvoice: ${object.amount_total} ${object.currency_id.name}
\n Data da fatura: ${object.date_invoice}
\n% if object.origin:\n Código de encomenda: ${object.origin}
\n% endif\n% if object.user_id:\n Seu contato: ${object.user_id.name}\n% endif\n
\n\n% if object.paypal_url:\n
\n
Também é possível pagar diretamente com Paypal:
\n
\n\n\n% endif\n\n
\n
Se você tem alguma dúvida, não hesite em contactar-nos.
\n
obrigado por escolher ${object.company_id.name or 'us'}!
\n
\n
\n
\n
\n${object.company_id.name}
\n\n
\n
\n% if object.company_id.street:\n${object.company_id.street}
\n% endif\n% if object.company_id.street2:\n${object.company_id.street2}
\n% endif\n% if object.company_id.city or object.company_id.zip:\n${object.company_id.zip} ${object.company_id.city}
\n% endif\n% if object.company_id.country_id:\n${object.company_id.state_id and ('%s, ' % object.company_id.state_id.name) or ''} ${object.company_id.country_id.name or ''}
\n% endif\n\n% if object.company_id.phone:\n
\nTelefone: ${object.company_id.phone}\n
\n% endif\n% if object.company_id.website:\n
\n%endif\n
\n
\n
\n "
+msgstr "\n\n\n\n
Olá ${object.partner_id.name},
\n\n
A nova fatura está disponível para você:
\n\n
\n Referências
\n Número da fatura: ${object.number}
\n Itotal de nvoice: ${object.amount_total} ${object.currency_id.name}
\n Data da fatura: ${object.date_invoice}
\n% if object.origin:\n Código de encomenda: ${object.origin}
\n% endif\n% if object.user_id:\n Seu contato: ${object.user_id.name}\n% endif\n
\n\n% if object.paypal_url:\n
\n
Também é possível pagar diretamente com Paypal:
\n
\n\n\n% endif\n\n
\n
Se você tem alguma dúvida, não hesite em contactar-nos.
\n
obrigado por escolher ${object.company_id.name or 'us'}!
\n
\n
\n
\n
\n${object.company_id.name}
\n\n
\n
\n% if object.company_id.street:\n${object.company_id.street}
\n% endif\n% if object.company_id.street2:\n${object.company_id.street2}
\n% endif\n% if object.company_id.city or object.company_id.zip:\n${object.company_id.zip} ${object.company_id.city}
\n% endif\n% if object.company_id.country_id:\n${object.company_id.state_id and ('%s, ' % object.company_id.state_id.name) or ''} ${object.company_id.country_id.name or ''}
\n% endif\n\n% if object.company_id.phone:\n
\nTelefone: ${object.company_id.phone}\n
\n% endif\n% if object.company_id.website:\n
\n%endif\n
\n
\n
\n "
#. module: account
#: help:account.invoice,state:0
@@ -1888,7 +1890,7 @@ msgstr "Contas Bancárias"
#. module: account
#: view:res.partner:account.view_partner_property_form
msgid "Bank Details"
-msgstr "Detalhes Bancário"
+msgstr "Detalhes Bancários"
#. module: account
#: view:account.statement.operation.template:account.view_account_statement_operation_template_tree
@@ -2262,7 +2264,7 @@ msgstr "Controle de Caixa"
#: model:ir.actions.act_window,name:account.action_view_bank_statement_tree
#: model:ir.ui.menu,name:account.journal_cash_move_lines
msgid "Cash Registers"
-msgstr "Caixa Registradoras"
+msgstr "Caixas"
#. module: account
#: view:account.bank.statement:account.view_bank_statement_form2
@@ -3682,7 +3684,7 @@ msgstr "Definir Lançamentos Recorrentes"
#. module: account
#: view:cash.box.out:account.cash_box_out_form
msgid "Describe why you take money from the cash register:"
-msgstr "Descreva por que você está tirando dinheiro do caixa:"
+msgstr "Descreva por que você está retirando dinheiro do caixa:"
#. module: account
#. openerp-web
@@ -4331,7 +4333,7 @@ msgstr "Fevereiro"
#. module: account
#: view:cash.box.in:account.cash_box_in_form
msgid "Fill in this form if you put money in the cash register:"
-msgstr "Preencha o formulário, se você colocar dinheiro na caixa registradora:"
+msgstr "Preencha este formulário, para colocar dinheiro no caixa:"
#. module: account
#. openerp-web
@@ -4618,7 +4620,7 @@ msgid ""
"reconciliation functionality, Odoo makes its own search for entries to "
"reconcile in a series of accounts. It finds entries for each partner where "
"the amounts correspond."
-msgstr "Para uma fatura a ser considerada como pago, as entradas de fatura deve ser conciliado com suas contrapartidas, geralmente pagamentos. Com a funcionalidade de reconciliação automática, Odoo faz a sua própria busca de entradas para conciliar em uma série de contas. Ele encontra entradas para cada um dos parceiros, onde os valores correspondem."
+msgstr "Para uma fatura a ser considerada como paga, as entradas de fatura devem ser conciliadas com suas contrapartidas, geralmente pagamentos. Com a funcionalidade de reconciliação automática, Odoo faz a sua própria busca de entradas para conciliar em uma série de contas. Ele encontra entradas para cada um dos parceiros, onde os valores correspondem."
#. module: account
#: help:account.journal,with_last_closing_balance:0
@@ -6823,7 +6825,7 @@ msgid ""
" to modify them. The invoices will receive a unique\n"
" number and journal items will be created in your chart\n"
" of accounts."
-msgstr "Uma vez que as faturas provisórias são confirmados, você não será capaz de\n modificá-las. A fatura receberá um número exclusivo e itens de\n diário serão criados em seu plano de contas."
+msgstr "Uma vez que as faturas provisórias são confirmadas, você não será capaz de\nmodificá-las. A fatura receberá um número exclusivo e itens de\ndiário serão criados em seu plano de contas."
#. module: account
#: field:account.partner.ledger,page_split:0
@@ -7869,7 +7871,7 @@ msgstr "Compras"
#: view:cash.box.in:account.cash_box_in_form
#: model:ir.actions.act_window,name:account.action_cash_box_in
msgid "Put Money In"
-msgstr "Colocar dinheiro em"
+msgstr "Colocar Dinheiro"
#. module: account
#: field:account.tax,python_compute:0 selection:account.tax,type:0
@@ -8071,7 +8073,7 @@ msgstr "Número da Reconciliação"
#: model:ir.actions.client,name:account.action_bank_reconcile_bank_statements
#: model:ir.ui.menu,name:account.menu_bank_reconcile_bank_statements
msgid "Reconciliation on Bank Statements"
-msgstr "Reconciliaçã em Demonstrativos Bancários"
+msgstr "Reconciliação em Demonstrativos Bancários"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_partner_reconcile
@@ -9199,7 +9201,7 @@ msgstr "TIN:"
#: view:cash.box.out:account.cash_box_out_form
#: model:ir.actions.act_window,name:account.action_cash_box_out
msgid "Take Money Out"
-msgstr "Efetuar um Saque"
+msgstr "Retirar Dinheiro"
#. module: account
#. openerp-web
diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po
index 5d931337a9e49..7599c9ae0128b 100644
--- a/addons/account/i18n/ro.po
+++ b/addons/account/i18n/ro.po
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-05-31 14:19+0000\n"
+"PO-Revision-Date: 2016-10-31 20:21+0000\n"
"Last-Translator: Dorin Hongu \n"
"Language-Team: Romanian (http://www.transifex.com/odoo/odoo-8/language/ro/)\n"
"MIME-Version: 1.0\n"
@@ -3054,7 +3054,7 @@ msgstr "Creați Rambursare"
#: code:addons/account/static/src/js/account_widgets.js:1294
#, python-format
msgid "Create Write-off"
-msgstr ""
+msgstr "Crează pierdere"
#. module: account
#: selection:account.invoice.refund,filter_refund:0
diff --git a/addons/account/i18n/ru.po b/addons/account/i18n/ru.po
index 402fcf112fb6d..ed5f2557115dd 100644
--- a/addons/account/i18n/ru.po
+++ b/addons/account/i18n/ru.po
@@ -3,7 +3,7 @@
# * account
#
# Translators:
-# Alexey Bilkevich , 2015
+# Алексей Билькевич (belskiy) , 2015
# FIRST AUTHOR , 2014
# Ivan , 2015
# Vladlen Bolshakov , 2015
@@ -13,7 +13,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-06-25 12:38+0000\n"
+"PO-Revision-Date: 2016-10-09 14:55+0000\n"
"Last-Translator: Эдуард Манятовский\n"
"Language-Team: Russian (http://www.transifex.com/odoo/odoo-8/language/ru/)\n"
"MIME-Version: 1.0\n"
@@ -11130,7 +11130,7 @@ msgstr ""
#: code:addons/account/static/src/js/account_widgets.js:1050
#, python-format
msgid "last"
-msgstr ""
+msgstr "последний"
#. module: account
#: help:account.move.line,blocked:0
diff --git a/addons/account/i18n/sq.po b/addons/account/i18n/sq.po
index 2f58fceacf414..6dab6793e3dda 100644
--- a/addons/account/i18n/sq.po
+++ b/addons/account/i18n/sq.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-08-02 12:45+0000\n"
+"PO-Revision-Date: 2016-08-24 11:20+0000\n"
"Last-Translator: Martin Fan <554795028@qq.com>\n"
"Language-Team: Albanian (http://www.transifex.com/odoo/odoo-8/language/sq/)\n"
"MIME-Version: 1.0\n"
@@ -207,12 +207,12 @@ msgstr ""
#: view:account.invoice:account.invoice_form
#: view:account.invoice:account.invoice_supplier_form
msgid "(update)"
-msgstr ""
+msgstr "(përditëso)"
#. module: account
#: view:account.bank.statement:account.view_bank_statement_form2
msgid "+ Transactions"
-msgstr ""
+msgstr "+ Transaksione"
#. module: account
#: model:account.payment.term,name:account.account_payment_term_15days
@@ -2853,7 +2853,7 @@ msgstr ""
#: view:account.config.settings:account.view_account_config_settings
#: model:ir.ui.menu,name:account.menu_finance_configuration
msgid "Configuration"
-msgstr ""
+msgstr "Konfigurimi"
#. module: account
#: code:addons/account/wizard/pos_box.py:57
@@ -6753,7 +6753,7 @@ msgstr ""
#. module: account
#: field:account.invoice,number:0 field:account.move,name:0
msgid "Number"
-msgstr ""
+msgstr "Numër"
#. module: account
#: view:account.move.line:account.view_account_move_line_filter
@@ -10428,7 +10428,7 @@ msgstr ""
#: view:website:account.report_salepurchasejournal
#, python-format
msgid "Total"
-msgstr ""
+msgstr "Total"
#. module: account
#: view:account.invoice:account.invoice_tree
diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po
index 8e9545ba578fb..6ed4bf9d2a535 100644
--- a/addons/account/i18n/sv.po
+++ b/addons/account/i18n/sv.po
@@ -8,13 +8,14 @@
# FIRST AUTHOR , 2014
# Kristoffer Grundström , 2015-2016
# lasch a , 2015
+# Mikael Åkerberg , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-08-10 11:06+0000\n"
-"Last-Translator: Anders Wallenquist \n"
+"PO-Revision-Date: 2016-10-03 13:38+0000\n"
+"Last-Translator: Mikael Åkerberg \n"
"Language-Team: Swedish (http://www.transifex.com/odoo/odoo-8/language/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1779,7 +1780,7 @@ msgstr "Fel konto!"
#: code:addons/account/account_invoice.py:819
#, python-format
msgid "Bad Total!"
-msgstr ""
+msgstr "Fel Total!"
#. module: account
#: field:account.account,balance:0
@@ -10482,7 +10483,7 @@ msgstr "Totalt kvarvarande"
#. module: account
#: field:account.bank.statement,total_entry_encoding:0
msgid "Total Transactions"
-msgstr ""
+msgstr "Totalt transaktioner"
#. module: account
#: field:account.invoice.report,price_total:0
diff --git a/addons/account/i18n/th.po b/addons/account/i18n/th.po
index 8cc4f37c6d4d8..0246a6f6814f0 100644
--- a/addons/account/i18n/th.po
+++ b/addons/account/i18n/th.po
@@ -13,7 +13,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-08-11 03:58+0000\n"
+"PO-Revision-Date: 2016-10-23 12:52+0000\n"
"Last-Translator: Khwunchai Jaengsawang \n"
"Language-Team: Thai (http://www.transifex.com/odoo/odoo-8/language/th/)\n"
"MIME-Version: 1.0\n"
@@ -4001,7 +4001,7 @@ msgstr "สิ้นสุดงวดบัญชี:"
#. module: account
#: field:account.config.settings,date_stop:0
msgid "End date"
-msgstr ""
+msgstr "วันสิ้นสุด"
#. module: account
#: code:addons/account/wizard/account_fiscalyear_close.py:41
@@ -8967,7 +8967,7 @@ msgstr "เริ่มงวดบัญชี:"
#. module: account
#: field:account.config.settings,date_start:0
msgid "Start date"
-msgstr ""
+msgstr "วันเริ่มต้น"
#. module: account
#: field:account.period,date_start:0
diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po
index e51ca2dead45e..101137cd52ee5 100644
--- a/addons/account/i18n/tr.po
+++ b/addons/account/i18n/tr.po
@@ -3,19 +3,20 @@
# * account
#
# Translators:
-# AYHAN KIZILTAN , 2016
+# Ayhan KIZILTAN , 2016
# DD FS , 2016
# FIRST AUTHOR , 2014
# gezgin biri , 2015
# Murat Kaplan , 2015-2016
# Muzaffer YILDIRIM , 2016
+# thermodynamic thermodynamic , 2016
# Tolga Han Duyuler , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-06-22 03:22+0000\n"
+"PO-Revision-Date: 2016-10-22 12:32+0000\n"
"Last-Translator: Murat Kaplan \n"
"Language-Team: Turkish (http://www.transifex.com/odoo/odoo-8/language/tr/)\n"
"MIME-Version: 1.0\n"
@@ -631,7 +632,7 @@ msgstr "Hesap"
#. module: account
#: model:ir.model,name:account.model_account_aged_trial_balance
msgid "Account Aged Trial balance Report"
-msgstr "Yaşlandırılmış Geçici Mizan Raporu"
+msgstr "Geçici Mizan Yaşlandırma"
#. module: account
#: model:ir.model,name:account.model_account_analytic_balance
@@ -1181,7 +1182,7 @@ msgstr "Gelişmiş Ayarlar"
#: model:ir.actions.report.xml,name:account.action_report_aged_partner_balance
#: model:ir.ui.menu,name:account.menu_aged_trial_balance
msgid "Aged Partner Balance"
-msgstr "Gecikmiş İş Ortağı Bakiyesi"
+msgstr "İş Ortağı Bakiye Yaşlandırma"
#. module: account
#: view:account.aged.trial.balance:account.account_aged_balance_view
@@ -1192,7 +1193,7 @@ msgid ""
"Odoo then calculates a table of credit balance by period. So if you request "
"an interval of 30 days Odoo generates an analysis of creditors for the past "
"month, past two months, and so on."
-msgstr "İş Ortağı Gecikmiş Bakiyesi, alacaklarınızın belirli aralıklarla yapılan daha ayrıntılı bir raporudur. Bu rapor açıldığında, Odoo firma adını, mali dönemi ve sonra araştırılacak zaman aralığını (gün olarak) sorar. Sonra Odoo döneme göre alacak bakiyelerini bir tablo olarak hesaplar. Yani 30 günlük bir aralıkta isterseniz, Odoo geçen ayın, geçen iki ayın vb alacaklrın bir analizini oluşturur."
+msgstr "İş Ortağı Yaşlandırılmış Bakiyesi, alacaklarınızın belirli aralıklarla yapılan daha ayrıntılı bir raporudur. Bu rapor açıldığında, Odoo firma adını, mali dönemi ve sonra araştırılacak zaman aralığını (gün olarak) sorar. Sonra Odoo döneme göre alacak bakiyelerini bir tablo olarak hesaplar. Yani 30 günlük bir aralıkta isterseniz, Odoo geçen ayın, geçen iki ayın vb alacaklrın bir analizini oluşturur."
#. module: account
#: model:ir.actions.act_window,name:account.action_aged_receivable_graph
@@ -1625,14 +1626,14 @@ msgstr "Yalnızca iş ortağının bir KDV numarası varsa uygula."
msgid ""
"Apply when the shipping or invoicing country is in this country group, and "
"no position matches the country directly."
-msgstr ""
+msgstr "Nakliye veya faturalama ülke bu ülke grubunda olduğunu ve hiçbir pozisyon doğrudan ülkeyi eşleştiğinde uygulayın."
#. module: account
#: help:account.fiscal.position,country_id:0
msgid ""
"Apply when the shipping or invoicing country matches. Takes precedence over "
"positions matching on a country group."
-msgstr ""
+msgstr "Nakliye veya faturalama ülke bu ülke grubunda olduğunu ve hiçbir pozisyon doğrudan ülkeyi eşleştiğinde uygulayın."
#. module: account
#: view:validate.account.move:account.validate_account_move_view
@@ -4055,7 +4056,7 @@ msgstr "Girişler"
#: model:ir.actions.act_window,name:account.action_account_entries_report_all
#: model:ir.ui.menu,name:account.menu_action_account_entries_report_all
msgid "Entries Analysis"
-msgstr "Girişlerin Analizi"
+msgstr "Kayıtların Analizi"
#. module: account
#: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form
@@ -6615,7 +6616,7 @@ msgstr "Bu Şirket için Mali Yıl Tanımlanmamış"
#. module: account
#: field:account.move.line,blocked:0
msgid "No Follow-up"
-msgstr "İzleme Yok"
+msgstr "Takip Yok"
#. module: account
#: code:addons/account/account_invoice.py:799
diff --git a/addons/account/i18n/uk.po b/addons/account/i18n/uk.po
index 35d10fcc536ae..9f9d6f8d6868a 100644
--- a/addons/account/i18n/uk.po
+++ b/addons/account/i18n/uk.po
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-08-15 16:37+0000\n"
+"PO-Revision-Date: 2016-11-18 16:15+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Ukrainian (http://www.transifex.com/odoo/odoo-8/language/uk/)\n"
"MIME-Version: 1.0\n"
@@ -627,7 +627,7 @@ msgstr "Рахунок"
#. module: account
#: model:ir.model,name:account.model_account_aged_trial_balance
msgid "Account Aged Trial balance Report"
-msgstr ""
+msgstr "Звіт сальдо розрахунків по періодам"
#. module: account
#: model:ir.model,name:account.model_account_analytic_balance
@@ -693,12 +693,12 @@ msgstr "Загальний звіт аккаунта журнал"
#. module: account
#: model:ir.model,name:account.model_account_common_partner_report
msgid "Account Common Partner Report"
-msgstr ""
+msgstr "Звіт про партнера"
#. module: account
#: model:ir.model,name:account.model_account_common_report
msgid "Account Common Report"
-msgstr ""
+msgstr "Типовий звіт по рахунку"
#. module: account
#: field:account.analytic.line,currency_id:0
@@ -709,7 +709,7 @@ msgstr "Валюта Рахунку"
#: field:account.fiscal.position.account,account_dest_id:0
#: field:account.fiscal.position.account.template,account_dest_id:0
msgid "Account Destination"
-msgstr ""
+msgstr "Рахунок призначення"
#. module: account
#: view:account.move:account.view_move_form
@@ -738,14 +738,14 @@ msgstr ""
#. module: account
#: field:account.invoice.report,account_line_id:0
msgid "Account Line"
-msgstr ""
+msgstr "Рядок рахунку"
#. module: account
#: view:account.fiscal.position:account.view_account_position_form
#: field:account.fiscal.position,account_ids:0
#: field:account.fiscal.position.template,account_ids:0
msgid "Account Mapping"
-msgstr ""
+msgstr "Співставлення рахунків"
#. module: account
#: field:account.use.model,model:0
@@ -768,7 +768,7 @@ msgstr "Назва рахунку"
#. module: account
#: field:account.bank.accounts.wizard,acc_name:0
msgid "Account Name."
-msgstr ""
+msgstr "Назва рахунку."
#. module: account
#: model:ir.model,name:account.model_account_partner_ledger
@@ -813,7 +813,7 @@ msgstr "Звірка рахунку"
#: field:account.financial.report,children_ids:0
#: model:ir.model,name:account.model_account_financial_report
msgid "Account Report"
-msgstr ""
+msgstr "Звіт по рахунку"
#. module: account
#: field:accounting.report,account_report_id:0
@@ -1043,7 +1043,7 @@ msgstr "Бухгалтерський облік та фінанси"
#: view:account.installer:account.view_account_configuration_installer
#: view:wizard.multi.charts.accounts:account.view_wizard_multi_chart
msgid "Accounting Application Configuration"
-msgstr ""
+msgstr "Налаштування програми обліку"
#. module: account
#: view:account.move:account.view_move_form
@@ -1069,7 +1069,7 @@ msgstr "Звітний Період"
#. module: account
#: model:ir.model,name:account.model_accounting_report
msgid "Accounting Report"
-msgstr ""
+msgstr "Звіт бухобліку"
#. module: account
#: model:ir.ui.menu,name:account.final_accounting_reports
@@ -1079,7 +1079,7 @@ msgstr "Звіти по бухобліку"
#. module: account
#: view:res.partner:account.view_partner_property_form
msgid "Accounting-related settings are managed on"
-msgstr ""
+msgstr "Налаштування пов’язані з бухобліком вказуються на"
#. module: account
#: view:account.account:account.view_account_search
@@ -1102,13 +1102,13 @@ msgstr "Дозволені рахунки (порожнє — без контр
#. module: account
#: model:ir.model,name:account.model_account_fiscal_position_account
msgid "Accounts Fiscal Position"
-msgstr ""
+msgstr "Схема оподаткування для рахунків"
#. module: account
#: view:account.fiscal.position:account.view_account_position_form
#: view:account.fiscal.position.template:account.view_account_position_template_form
msgid "Accounts Mapping"
-msgstr ""
+msgstr "Співставлення рахунків"
#. module: account
#: view:account.journal:account.view_account_journal_form
@@ -1159,7 +1159,7 @@ msgstr "Додаткова інформація"
#. module: account
#: view:account.invoice:account.invoice_form
msgid "Additional notes..."
-msgstr ""
+msgstr "Додаткові примітки..."
#. module: account
#: field:account.account,adjusted_balance:0
@@ -1588,7 +1588,7 @@ msgstr ""
#: field:account.tax,python_applicable:0
#: field:account.tax.template,python_applicable:0
msgid "Applicable Code"
-msgstr ""
+msgstr "Придатний код"
#. module: account
#: view:account.tax:account.view_tax_form
@@ -1614,7 +1614,7 @@ msgstr ""
#. module: account
#: help:account.fiscal.position,vat_required:0
msgid "Apply only if partner has a VAT number."
-msgstr ""
+msgstr "Застосовувати, якщо у партнера вказано ІПН"
#. module: account
#: help:account.fiscal.position,country_group_id:0
@@ -1887,12 +1887,12 @@ msgstr "Деталі Банку"
#. module: account
#: view:account.statement.operation.template:account.view_account_statement_operation_template_tree
msgid "Bank Reconciliation Move Presets"
-msgstr ""
+msgstr "Шаблони проведень для виписки"
#. module: account
#: view:account.statement.operation.template:account.view_account_statement_operation_template_search
msgid "Bank Reconciliation Move preset"
-msgstr ""
+msgstr "Шаблон проведень для виписки"
#. module: account
#: view:account.bank.statement:account.view_account_bank_statement_filter
@@ -4325,7 +4325,7 @@ msgstr "February"
#. module: account
#: view:cash.box.in:account.cash_box_in_form
msgid "Fill in this form if you put money in the cash register:"
-msgstr ""
+msgstr "Заповніть цю форму, якщо ви поклали гроші в касу:"
#. module: account
#. openerp-web
@@ -5622,14 +5622,14 @@ msgstr ""
#. module: account
#: help:account.invoice,sent:0
msgid "It indicates that the invoice has been sent."
-msgstr ""
+msgstr "Це означає, що рахунок був надісланий."
#. module: account
#. openerp-web
#: code:addons/account/static/src/xml/account_bank_statement_reconciliation.xml:43
#, python-format
msgid "It took you"
-msgstr ""
+msgstr "Ви витратили"
#. module: account
#: selection:account.financial.report,style_overwrite:0
@@ -5939,7 +5939,7 @@ msgstr ""
#. module: account
#: help:account.invoice,date_invoice:0
msgid "Keep empty to use the current date"
-msgstr ""
+msgstr "Залишіть пустим для використання поточної дати"
#. module: account
#: view:account.tax.template:account.view_account_tax_template_form
@@ -6759,7 +6759,7 @@ msgstr "Number"
#. module: account
#: view:account.move.line:account.view_account_move_line_filter
msgid "Number (Move)"
-msgstr ""
+msgstr "Номер (проводка)"
#. module: account
#: field:account.payment.term.line,days:0
@@ -6827,7 +6827,7 @@ msgstr ""
#. module: account
#: field:wizard.multi.charts.accounts,only_one_chart_template:0
msgid "Only One Chart Template Available"
-msgstr ""
+msgstr "Тільки один план рахунків в наявності"
#. module: account
#: code:addons/account/account.py:3392 code:addons/account/res_config.py:305
@@ -7323,7 +7323,7 @@ msgstr "Платежі"
#. module: account
#: field:res.company,paypal_account:0
msgid "Paypal Account"
-msgstr ""
+msgstr "Рахунок Paypal"
#. module: account
#: field:account.invoice,paypal_url:0
@@ -7333,7 +7333,7 @@ msgstr ""
#. module: account
#: field:account.config.settings,paypal_account:0
msgid "Paypal account"
-msgstr ""
+msgstr "Рахунок Paypal"
#. module: account
#: help:account.config.settings,paypal_account:0
@@ -7435,7 +7435,7 @@ msgstr ""
#: field:account.aged.trial.balance,period_length:0
#: view:website:account.report_agedpartnerbalance
msgid "Period Length (days)"
-msgstr ""
+msgstr "Тривалість періоду (днів)"
#. module: account
#: field:account.period,name:0
@@ -8535,7 +8535,7 @@ msgstr ""
#. module: account
#: view:account.move:account.view_account_move_filter
msgid "Search Move"
-msgstr ""
+msgstr "Пошук проведення"
#. module: account
#: view:account.period:account.view_account_period_search
@@ -8545,12 +8545,12 @@ msgstr ""
#. module: account
#: view:account.tax.template:account.view_account_tax_template_search
msgid "Search Tax Templates"
-msgstr ""
+msgstr "Пошук шаблону податків"
#. module: account
#: view:account.tax:account.view_account_tax_search
msgid "Search Taxes"
-msgstr ""
+msgstr "Пошук податків"
#. module: account
#: view:account.tax.code.template:account.view_tax_code_template_search
@@ -8614,7 +8614,7 @@ msgstr ""
#: code:addons/account/static/src/js/account_widgets.js:975
#, python-format
msgid "Select Partner"
-msgstr ""
+msgstr "Оберіть партнера"
#. module: account
#: view:account.analytic.balance:account.account_analytic_balance_view
@@ -8829,7 +8829,7 @@ msgstr "Скорочено"
#: code:addons/account/static/src/xml/account_bank_statement_reconciliation.xml:35
#, python-format
msgid "Show more... ("
-msgstr ""
+msgstr "Показати більше... ("
#. module: account
#: help:account.partner.reconcile.process,progress:0
@@ -9261,7 +9261,7 @@ msgstr "ПДВ"
#: code:addons/account/account.py:3379
#, python-format
msgid "Tax %.2f%%"
-msgstr ""
+msgstr "Податок %.2f%%"
#. module: account
#: field:account.invoice.tax,account_id:0
@@ -9278,7 +9278,7 @@ msgstr "Сума податків"
#: view:account.tax:account.view_account_tax_search
#: field:account.tax,type_tax_use:0
msgid "Tax Application"
-msgstr ""
+msgstr "Дія податку"
#. module: account
#: field:res.company,tax_calculation_rounding_method:0
@@ -9395,7 +9395,7 @@ msgstr "Шаблон податку"
#. module: account
#: field:account.chart.template,tax_template_ids:0
msgid "Tax Template List"
-msgstr ""
+msgstr "Список шаблонів податків"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_tax_template_form
@@ -9460,13 +9460,13 @@ msgstr "Податки"
#. module: account
#: model:ir.model,name:account.model_account_fiscal_position_tax
msgid "Taxes Fiscal Position"
-msgstr ""
+msgstr "Схема оподаткування для податків"
#. module: account
#: view:account.fiscal.position:account.view_account_position_form
#: view:account.fiscal.position.template:account.view_account_position_template_form
msgid "Taxes Mapping"
-msgstr ""
+msgstr "Співставлення податків"
#. module: account
#: view:account.vat.declaration:account.view_account_vat_declaration
@@ -9699,7 +9699,7 @@ msgstr ""
#: help:res.partner,property_account_position:0
msgid ""
"The fiscal position will determine taxes and accounts used for the partner."
-msgstr ""
+msgstr "Схема оподаткування визначає податки та рахунки проведень для партнера."
#. module: account
#: view:account.config.settings:account.view_account_config_settings
@@ -9790,12 +9790,12 @@ msgstr ""
#. module: account
#: help:account.invoice,account_id:0
msgid "The partner account used for this invoice."
-msgstr ""
+msgstr "Рахунок розрахунків з партером для цього рахунку-фактури."
#. module: account
#: help:account.invoice,reference:0
msgid "The partner reference of this invoice."
-msgstr ""
+msgstr "Референс на документ партнера."
#. module: account
#: code:addons/account/account_invoice.py:513
@@ -10046,14 +10046,14 @@ msgstr ""
msgid ""
"This account will be used instead of the default one as the payable account "
"for the current partner"
-msgstr ""
+msgstr "Цей рахунок буде використовуватися як типовий рахунок кредитора."
#. module: account
#: help:res.partner,property_account_receivable:0
msgid ""
"This account will be used instead of the default one as the receivable "
"account for the current partner"
-msgstr ""
+msgstr "Цей рахунок буде використовуватися як типовий рахунок дебітора."
#. module: account
#: help:account.config.settings,module_account_budget:0
@@ -10169,7 +10169,7 @@ msgid ""
"This field is used to record the third party name when importing bank "
"statement in electronic format, when the partner doesn't exist yet in the "
"database (or cannot be found)."
-msgstr ""
+msgstr "Це поле служить для запису назви партнера під час імпорту банківської виписки, коли партнера ще не створено в базі даних."
#. module: account
#: help:account.partner.reconcile.process,next_partner_id:0
@@ -10679,7 +10679,7 @@ msgstr "Одиниця виміру"
#: code:addons/account/report/account_partner_balance.py:125
#, python-format
msgid "Unknown Partner"
-msgstr ""
+msgstr "Невідомий партнер"
#. module: account
#: view:account.invoice:account.view_account_invoice_filter
@@ -10998,7 +10998,7 @@ msgstr ""
#: code:addons/account/static/src/js/account_widgets.js:533
#, python-format
msgid "Whew, that was fast !"
-msgstr ""
+msgstr "Ого, це було швидко!"
#. module: account
#: field:account.central.journal,amount_currency:0
@@ -11016,13 +11016,13 @@ msgstr "Ц валюті"
#: selection:account.partner.balance,display_partner:0
#: selection:account.report.general.ledger,display_account:0
msgid "With balance is not equal to 0"
-msgstr ""
+msgstr "З балансом не рівним нулю"
#. module: account
#: view:website:account.report_generalledger
#: view:website:account.report_trialbalance
msgid "With balance not equal to zero"
-msgstr ""
+msgstr "З балансом не рівним нулю"
#. module: account
#: selection:account.balance.report,display_account:0
@@ -11031,7 +11031,7 @@ msgstr ""
#: view:website:account.report_generalledger
#: view:website:account.report_trialbalance
msgid "With movements"
-msgstr ""
+msgstr "З проведеннями"
#. module: account
#: view:account.statement.operation.template:account.view_account_statement_operation_template_search
@@ -11088,7 +11088,7 @@ msgstr ""
#. module: account
#: sql_constraint:account.move.line:0
msgid "Wrong credit or debit value in accounting entry !"
-msgstr ""
+msgstr "Невідне значення кредиту чи дебету у записі!"
#. module: account
#: sql_constraint:account.model.line:0
@@ -11510,7 +11510,7 @@ msgstr ""
#: code:addons/account/wizard/account_report_aged_partner_balance.py:57
#, python-format
msgid "You must set a period length greater than 0."
-msgstr ""
+msgstr "Ви повинні вказати довжину періоду більшу ніж 0."
#. module: account
#: code:addons/account/wizard/account_report_aged_partner_balance.py:59
diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po
index 904d1195fa886..2dacbaad17b81 100644
--- a/addons/account/i18n/zh_CN.po
+++ b/addons/account/i18n/zh_CN.po
@@ -20,7 +20,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-07-08 12:57+0000\n"
+"PO-Revision-Date: 2016-11-04 08:33+0000\n"
"Last-Translator: Jeffery Chenn \n"
"Language-Team: Chinese (China) (http://www.transifex.com/odoo/odoo-8/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
@@ -133,7 +133,7 @@ msgstr "# 分录"
#: field:account.config.settings,code_digits:0
#: field:wizard.multi.charts.accounts,code_digits:0
msgid "# of Digits"
-msgstr "# 数字"
+msgstr "# 数字位数"
#. module: account
#: view:account.entries.report:account.view_account_entries_report_tree
@@ -199,7 +199,7 @@ msgstr "(如果您不选择会计期间,所有开放的期间将被选择)
#. module: account
#: view:account.state.open:account.view_account_state_open
msgid "(Invoice should be unreconciled if you want to open it)"
-msgstr "(如果您想打开它发票要反调节)"
+msgstr "(如果您想打开发票,它应当是未调节的)"
#. module: account
#: view:account.analytic.chart:account.account_analytic_chart_view
@@ -952,12 +952,12 @@ msgstr "科目类型"
#. module: account
#: model:ir.model,name:account.model_account_unreconcile
msgid "Account Unreconcile"
-msgstr "科目未调节"
+msgstr "会计取消调节"
#. module: account
#: model:ir.model,name:account.model_account_unreconcile_reconcile
msgid "Account Unreconcile Reconcile"
-msgstr "科目未调节调节"
+msgstr "会计取消调节调节"
#. module: account
#: model:ir.model,name:account.model_account_vat_declaration
@@ -1068,7 +1068,7 @@ msgstr "会计信息"
#. module: account
#: field:account.installer,charts:0
msgid "Accounting Package"
-msgstr "会计包"
+msgstr "会计科目表"
#. module: account
#: view:account.invoice:account.invoice_form
@@ -2177,7 +2177,7 @@ msgstr "不能 %s 草稿或形式发票或取消 发票"
msgid ""
"Cannot %s invoice which is already reconciled, invoice should be "
"unreconciled first. You can only refund this invoice."
-msgstr "不能 %s 已经调节的发票, 发票必须被首先反调节。只能退还这张发票。"
+msgstr "不能 %s 已经调节的发票, 发票必须被首先取消调节。只能退还这张发票。"
#. module: account
#: code:addons/account/account_move_line.py:1299
@@ -2357,12 +2357,12 @@ msgstr "更改为"
#: field:account.tax.template,chart_template_id:0
#: field:wizard.multi.charts.accounts,chart_template_id:0
msgid "Chart Template"
-msgstr "表模板"
+msgstr "会计科目表模板"
#. module: account
#: model:ir.actions.act_window,name:account.open_account_charts_modules
msgid "Chart Templates"
-msgstr "表模板"
+msgstr "会计科目表模板"
#. module: account
#: field:account.aged.trial.balance,chart_account_id:0
@@ -2727,7 +2727,7 @@ msgstr "共通报告"
#. module: account
#: field:account.bank.statement.line,name:0
msgid "Communication"
-msgstr "沟通"
+msgstr "联络方式"
#. module: account
#: model:ir.model,name:account.model_res_company
@@ -3357,7 +3357,7 @@ msgstr "汇率"
#. module: account
#: help:wizard.multi.charts.accounts,currency_id:0
msgid "Currency as per company's country."
-msgstr "币按公司所在的国家。"
+msgstr "设公司所在国家的币种。"
#. module: account
#: help:res.partner.bank,currency_id:0
@@ -6674,7 +6674,7 @@ msgstr "没有匹配的结果"
#: help:account.chart.template,code_digits:0
#: help:wizard.multi.charts.accounts,code_digits:0
msgid "No. of Digits to use for account code"
-msgstr "科目代码使用数字"
+msgstr "科目代码使用数字位数"
#. module: account
#: help:account.config.settings,code_digits:0
@@ -8643,7 +8643,7 @@ msgstr "选择要关闭的会计年度"
msgid ""
"Select a configuration package to setup automatically your\n"
" taxes and chart of accounts."
-msgstr "选择一个适合的科目表"
+msgstr "选择一个适合的科目表\n以便让odoo帮您自动化处理会计科目。"
#. module: account
#: help:account.change.currency,currency_id:0
@@ -10742,20 +10742,20 @@ msgstr "未实现收入和损失"
#: view:account.unreconcile:account.account_unreconcile_view
#: view:account.unreconcile.reconcile:account.account_unreconcile_reconcile_view
msgid "Unreconcile"
-msgstr "未调节"
+msgstr "取消调节"
#. module: account
#: model:ir.actions.act_window,name:account.action_account_unreconcile
#: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile
#: model:ir.actions.act_window,name:account.action_account_unreconcile_select
msgid "Unreconcile Entries"
-msgstr "未调节分录"
+msgstr "取消调节分录"
#. module: account
#: view:account.unreconcile:account.account_unreconcile_view
#: view:account.unreconcile.reconcile:account.account_unreconcile_reconcile_view
msgid "Unreconcile Transactions"
-msgstr "未调节交易"
+msgstr "取消调节交易"
#. module: account
#: selection:account.account.type,close_method:0
@@ -11225,7 +11225,7 @@ msgstr "可以在凭证模版的名称上使用年月日变量\n\n%(year)s:本
msgid ""
"You cannot cancel an invoice which is partially paid. You need to "
"unreconcile related payment entries first."
-msgstr "已部分付款的发票,不能取消。请先反调节相关的付款分录。"
+msgstr "已部分付款的发票,不能取消。请先取消调节相关的付款分录。"
#. module: account
#: code:addons/account/account.py:691
@@ -11345,7 +11345,7 @@ msgstr "不可修改一个已确认的分录,只可变动一些无特别要求
msgid ""
"You cannot do this modification on a reconciled entry. You can just change some non legal fields or you must unreconcile first.\n"
"%s."
-msgstr "已调节的记录不能修改。仅能编辑非正式字段 或 先撤销调节. \n%s"
+msgstr "已调节的记录不能修改。仅能编辑非正式字段 或 先取消调节. \n%s"
#. module: account
#: code:addons/account/account.py:1352
@@ -11389,7 +11389,7 @@ msgid ""
"You cannot unreconcile journal items if they has been generated by the"
" opening/closing "
"fiscal year process."
-msgstr "你不能反调节由开启/关闭会计年度过程生成的分类账项目。"
+msgstr "你不能取消调节由开启/关闭会计年度过程生成的分类账项目。"
#. module: account
#: code:addons/account/account_move_line.py:1173
diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po
index a51085ef12175..9c1466ce50762 100644
--- a/addons/account/i18n/zh_TW.po
+++ b/addons/account/i18n/zh_TW.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-10-15 06:40+0000\n"
-"PO-Revision-Date: 2016-06-13 10:11+0000\n"
+"PO-Revision-Date: 2016-10-19 06:41+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/odoo/odoo-8/language/zh_TW/)\n"
"MIME-Version: 1.0\n"
@@ -1853,7 +1853,7 @@ msgstr "銀行"
#. module: account
#: view:account.config.settings:account.view_account_config_settings
msgid "Bank & Cash"
-msgstr ""
+msgstr "銀行和現金"
#. module: account
#: field:account.bank.accounts.wizard,bank_account_id:0
diff --git a/addons/account_accountant/i18n/af.po b/addons/account_accountant/i18n/af.po
new file mode 100644
index 0000000000000..99ba321de36e1
--- /dev/null
+++ b/addons/account_accountant/i18n/af.po
@@ -0,0 +1,23 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_accountant
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-05-18 11:24+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Afrikaans (http://www.transifex.com/odoo/odoo-8/language/af/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: af\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_accountant
+#: model:ir.actions.client,name:account_accountant.action_client_account_menu
+msgid "Open Accounting Menu"
+msgstr ""
diff --git a/addons/account_accountant/i18n/es_BO.po b/addons/account_accountant/i18n/es_BO.po
new file mode 100644
index 0000000000000..432a2aa127a5c
--- /dev/null
+++ b/addons/account_accountant/i18n/es_BO.po
@@ -0,0 +1,23 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_accountant
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-05-18 11:24+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-8/language/es_BO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_BO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_accountant
+#: model:ir.actions.client,name:account_accountant.action_client_account_menu
+msgid "Open Accounting Menu"
+msgstr ""
diff --git a/addons/account_accountant/i18n/es_CL.po b/addons/account_accountant/i18n/es_CL.po
new file mode 100644
index 0000000000000..fe29f34b1d5ba
--- /dev/null
+++ b/addons/account_accountant/i18n/es_CL.po
@@ -0,0 +1,23 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_accountant
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-05-18 11:24+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-8/language/es_CL/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_CL\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_accountant
+#: model:ir.actions.client,name:account_accountant.action_client_account_menu
+msgid "Open Accounting Menu"
+msgstr ""
diff --git a/addons/account_accountant/i18n/gu.po b/addons/account_accountant/i18n/gu.po
new file mode 100644
index 0000000000000..3ee51245d7bde
--- /dev/null
+++ b/addons/account_accountant/i18n/gu.po
@@ -0,0 +1,23 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_accountant
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-05-18 11:24+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Gujarati (http://www.transifex.com/odoo/odoo-8/language/gu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: gu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_accountant
+#: model:ir.actions.client,name:account_accountant.action_client_account_menu
+msgid "Open Accounting Menu"
+msgstr ""
diff --git a/addons/account_analytic_analysis/i18n/bg.po b/addons/account_analytic_analysis/i18n/bg.po
index 1b44a913d85a5..29fd667d0063f 100644
--- a/addons/account_analytic_analysis/i18n/bg.po
+++ b/addons/account_analytic_analysis/i18n/bg.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-07-28 15:56+0000\n"
+"PO-Revision-Date: 2016-11-20 14:20+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Bulgarian (http://www.transifex.com/odoo/odoo-8/language/bg/)\n"
"MIME-Version: 1.0\n"
@@ -636,7 +636,7 @@ msgstr ""
#. module: account_analytic_analysis
#: field:account.analytic.account,recurring_interval:0
msgid "Repeat Every"
-msgstr ""
+msgstr "Повтори всеки"
#. module: account_analytic_analysis
#: help:account.analytic.account,recurring_interval:0
@@ -819,7 +819,7 @@ msgstr ""
#. module: account_analytic_analysis
#: selection:account.analytic.account,recurring_rule_type:0
msgid "Week(s)"
-msgstr ""
+msgstr "Седмица(ци)"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
diff --git a/addons/account_analytic_analysis/i18n/es_BO.po b/addons/account_analytic_analysis/i18n/es_BO.po
new file mode 100644
index 0000000000000..ba15c3eda9f60
--- /dev/null
+++ b/addons/account_analytic_analysis/i18n/es_BO.po
@@ -0,0 +1,877 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_analytic_analysis
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-09-25 08:35+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-8/language/es_BO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_BO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_analytic_analysis
+#: model:email.template,body_html:account_analytic_analysis.account_analytic_cron_email_template
+msgid ""
+"\n"
+"Hello ${object.name},\n"
+"\n"
+"% macro account_table(values):\n"
+"\n"
+" \n"
+" Customer | \n"
+" Contract | \n"
+" Dates | \n"
+" Prepaid Units | \n"
+" Contact | \n"
+"
\n"
+" % for partner, accounts in values:\n"
+" % for account in accounts:\n"
+" \n"
+" ${partner.name} | \n"
+" ${account.name} | \n"
+" ${account.date_start} to ${account.date and account.date or '???'} | \n"
+" \n"
+" % if account.quantity_max != 0.0:\n"
+" ${account.remaining_hours}/${account.quantity_max} units\n"
+" % endif\n"
+" | \n"
+" ${account.partner_id.phone or ''}, ${account.partner_id.email or ''} | \n"
+"
\n"
+" % endfor\n"
+" % endfor\n"
+"
\n"
+"% endmacro \n"
+"\n"
+"% if \"new\" in ctx[\"data\"]:\n"
+" The following contracts just expired:
\n"
+" ${account_table(ctx[\"data\"][\"new\"].iteritems())}\n"
+"% endif\n"
+"\n"
+"% if \"old\" in ctx[\"data\"]:\n"
+" The following expired contracts are still not processed:
\n"
+" ${account_table(ctx[\"data\"][\"old\"].iteritems())}\n"
+"% endif\n"
+"\n"
+"% if \"future\" in ctx[\"data\"]:\n"
+" The following contracts will expire in less than one month:
\n"
+" ${account_table(ctx[\"data\"][\"future\"].iteritems())}\n"
+"% endif\n"
+"\n"
+"\n"
+" You can check all contracts to be renewed using the menu:\n"
+"
\n"
+"\n"
+" - Sales / Invoicing / Contracts to Renew
\n"
+"
\n"
+"\n"
+" Thanks,\n"
+"
\n"
+"\n"
+"\n"
+"-- \n"
+"Odoo Automatic Email\n"
+"
\n"
+"\n"
+" "
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,toinvoice_total:0
+msgid " Sum of everything that could be invoiced for this contract."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: model:ir.actions.act_window,help:account_analytic_analysis.template_of_contract_action
+msgid ""
+"\n"
+" Click here to create a template of contract.\n"
+"
\n"
+" Templates are used to prefigure contract/project that \n"
+" can be selected by the salespeople to quickly configure the\n"
+" terms and conditions of the contract.\n"
+"
\n"
+" "
+msgstr ""
+
+#. module: account_analytic_analysis
+#: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue_all
+msgid ""
+"\n"
+" Click to create a new contract.\n"
+"
\n"
+" Use contracts to follow tasks, issues, timesheets or invoicing based on\n"
+" work done, expenses and/or sales orders. Odoo will automatically manage\n"
+" the alerts for the renewal of the contracts to the right salesperson.\n"
+"
\n"
+" "
+msgstr ""
+
+#. module: account_analytic_analysis
+#: model:ir.actions.act_window,help:account_analytic_analysis.action_sales_order
+msgid ""
+"\n"
+" Click to create a quotation that can be converted into a sales\n"
+" order.\n"
+"
\n"
+" Use sale orders to track everything that should be invoiced\n"
+" at a fix price on a contract.\n"
+"
\n"
+" "
+msgstr ""
+
+#. module: account_analytic_analysis
+#: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue
+msgid ""
+"\n"
+" Click to define a new contract.\n"
+"
\n"
+" You will find here the contracts to be renewed because the\n"
+" end date is passed or the working effort is higher than the\n"
+" maximum authorized one.\n"
+"
\n"
+" Odoo automatically sets contracts to be renewed in a pending\n"
+" state. After the negociation, the salesman should close or renew\n"
+" pending contracts.\n"
+"
\n"
+" "
+msgstr ""
+
+#. module: account_analytic_analysis
+#: model:ir.actions.act_window,help:account_analytic_analysis.action_hr_tree_invoiced_all
+msgid ""
+"\n"
+" You will find here timesheets and purchases you did for\n"
+" contracts that can be reinvoiced to the customer. If you want\n"
+" to record new activities to invoice, you should use the timesheet\n"
+" menu instead.\n"
+"
\n"
+" "
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "Account Analytic Lines"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Account Manager"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:sale.config.settings,group_template_required:0
+msgid ""
+"Allows you to set the template field as required when creating an analytic "
+"account or a contract."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.invoice.line,analytic_account_id:0
+#: field:account_analytic_analysis.summary.month,account_id:0
+#: field:account_analytic_analysis.summary.user,account_id:0
+#: model:ir.model,name:account_analytic_analysis.model_account_analytic_account
+msgid "Analytic Account"
+msgstr "Cuenta analítica"
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,ca_theorical:0
+msgid ""
+"Based on the costs you had on the project, what would have been the revenue "
+"if all these costs have been invoiced at the normal sale price provided by "
+"the pricelist."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Cancelled"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Cancelled contracts"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Closed"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Closed contracts"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,remaining_hours_to_invoice:0
+msgid ""
+"Computed using the formula: Expected on timesheets - Total invoiced on "
+"timesheets"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,real_margin:0
+msgid "Computed using the formula: Invoiced Amount - Total Costs."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,revenue_per_hour:0
+msgid "Computed using the formula: Invoiced Amount / Total Time"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,remaining_ca:0
+msgid "Computed using the formula: Max Invoice Price - Invoiced Amount."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,remaining_hours:0
+msgid "Computed using the formula: Maximum Time - Total Worked Time"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,theorical_margin:0
+msgid "Computed using the formula: Theoretical Revenue - Total Costs"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,real_margin_rate:0
+msgid "Computes using the formula: (Real Margin / Total Costs) * 100."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Contract"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: model:ir.actions.act_window,name:account_analytic_analysis.template_of_contract_action
+#: model:ir.ui.menu,name:account_analytic_analysis.menu_template_of_contract_action
+msgid "Contract Template"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: model:email.template,subject:account_analytic_analysis.account_analytic_cron_email_template
+msgid "Contract expiration reminder ${user.company_id.name}"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue_all
+#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue_all
+msgid "Contracts"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Contracts assigned to a customer."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Contracts in progress (open, draft)"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Contracts not assigned"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Contracts that are not assigned to an account manager."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue
+#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue
+msgid "Contracts to Renew"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.invoice.line,create_uid:0
+msgid "Created by"
+msgstr "Creado por"
+
+#. module: account_analytic_analysis
+#: field:account.analytic.invoice.line,create_date:0
+msgid "Created on"
+msgstr "Creado en"
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Customer Contracts"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,last_worked_date:0
+msgid "Date of Last Cost/Work"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,last_worked_invoiced_date:0
+msgid "Date of Last Invoiced Cost"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,recurring_next_date:0
+msgid "Date of Next Invoice"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,last_worked_date:0
+msgid "Date of the latest work done on this account."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: selection:account.analytic.account,recurring_rule_type:0
+msgid "Day(s)"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.invoice.line,name:0
+msgid "Description"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "End Month"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "End date is in the next month"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "End date passed or prepaid unit consumed"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: code:addons/account_analytic_analysis/account_analytic_analysis.py:681
+#, python-format
+msgid "Error!"
+msgstr "¡Error!"
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,hours_qtt_est:0
+msgid "Estimation of Hours to Invoice"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,remaining_total:0
+msgid ""
+"Expectation of remaining income for this contract. Computed as the sum of "
+"remaining subtotals which, in turn, are computed as the maximum between "
+"'(Estimation - Invoiced)' and 'To Invoice' amounts"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "Expected"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Expired or consumed"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Expiring soon"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,fix_price_invoices:0
+msgid "Fixed Price"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,recurring_invoices:0
+msgid "Generate recurring invoices automatically"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Group By"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user
+msgid "Hours Summary by User"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_month
+msgid "Hours summary by month"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.invoice.line,id:0
+#: field:account_analytic_analysis.summary.month,id:0
+#: field:account_analytic_analysis.summary.user,id:0
+msgid "ID"
+msgstr "ID"
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,ca_to_invoice:0
+msgid ""
+"If invoice from analytic account, the remaining amount you can invoice to "
+"the customer based on the total costs."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,last_invoice_date:0
+msgid "If invoice from the costs, this is the date of the latest invoiced."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,last_worked_invoiced_date:0
+msgid ""
+"If invoice from the costs, this is the date of the latest work or cost that "
+"have been invoiced."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "In Progress"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,recurring_invoice_line_ids:0
+msgid "Invoice Lines"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,recurring_rule_type:0
+msgid "Invoice automatically repeat at specified interval"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "Invoiced"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,ca_invoiced:0
+msgid "Invoiced Amount"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,hours_qtt_invoiced:0
+msgid "Invoiced Time"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "Invoicing"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,last_invoice_date:0
+msgid "Last Invoice Date"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.invoice.line,write_uid:0
+msgid "Last Updated by"
+msgstr "Última actualización de"
+
+#. module: account_analytic_analysis
+#: field:account.analytic.invoice.line,write_date:0
+msgid "Last Updated on"
+msgstr "Última actualización en"
+
+#. module: account_analytic_analysis
+#: model:res.groups,name:account_analytic_analysis.group_template_required
+msgid "Mandatory use of templates in contracts"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:sale.config.settings,group_template_required:0
+msgid "Mandatory use of templates."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,month_ids:0
+#: field:account_analytic_analysis.summary.month,month:0
+msgid "Month"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: selection:account.analytic.account,recurring_rule_type:0
+msgid "Month(s)"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: code:addons/account_analytic_analysis/account_analytic_analysis.py:676
+#, python-format
+msgid "No Customer Defined!"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "No order to invoice, create"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "Nothing to invoice, create"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,hours_qtt_non_invoiced:0
+msgid ""
+"Number of time (hours/days) (from journal of type 'general') that can be "
+"invoiced if you invoice based on analytic account."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,hours_qtt_invoiced:0
+msgid ""
+"Number of time (hours/days) that can be invoiced plus those that already "
+"have been invoiced."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,hours_quantity:0
+msgid ""
+"Number of time you spent on the analytic account (from timesheet). It "
+"computes quantities on all journal of type 'general'."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,invoice_on_timesheets:0
+msgid "On Timesheets"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,is_overdue_quantity:0
+msgid "Overdue Quantity"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Parent"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Partner"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Pending contracts"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: code:addons/account_analytic_analysis/account_analytic_analysis.py:682
+#, python-format
+msgid "Please define a sale journal for the company \"%s\"."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Pricelist"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.invoice.line,product_id:0
+msgid "Product"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.invoice.line,quantity:0
+msgid "Quantity"
+msgstr "Cantidad"
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,real_margin:0
+msgid "Real Margin"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,real_margin_rate:0
+msgid "Real Margin Rate (%)"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,recurring_rule_type:0
+msgid "Recurrency"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "Recurring Invoices"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "Remaining"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,remaining_ca:0
+msgid "Remaining Revenue"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,fix_price_to_invoice:0
+#: field:account.analytic.account,remaining_hours:0
+#: field:account.analytic.account,remaining_hours_to_invoice:0
+#: field:account.analytic.account,timesheet_ca_invoiced:0
+msgid "Remaining Time"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,recurring_interval:0
+msgid "Repeat Every"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,recurring_interval:0
+msgid "Repeat every (Days/Week/Month/Year)"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,revenue_per_hour:0
+msgid "Revenue per Time (real)"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: code:addons/account_analytic_analysis/account_analytic_analysis.py:550
+#, python-format
+msgid "Sales Order Lines to Invoice of %s"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+#: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order
+msgid "Sales Orders"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Start Month"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Status"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.invoice.line,price_subtotal:0
+msgid "Sub Total"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,fix_price_to_invoice:0
+msgid "Sum of quotations for this contract."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,timesheet_ca_invoiced:0
+msgid "Sum of timesheet lines invoiced for this contract."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "Template"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,theorical_margin:0
+msgid "Theoretical Margin"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,ca_theorical:0
+msgid "Theoretical Revenue"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_all
+#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_all
+msgid "Time & Materials to Invoice"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "Timesheets"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: code:addons/account_analytic_analysis/account_analytic_analysis.py:659
+#, python-format
+msgid "Timesheets to Invoice of %s"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "To Invoice"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
+msgid "To Renew"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "Total"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,total_cost:0
+msgid "Total Costs"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,est_total:0
+msgid "Total Estimation"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,invoiced_total:0
+msgid "Total Invoiced"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,remaining_total:0
+msgid "Total Remaining"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account_analytic_analysis.summary.month,unit_amount:0
+#: field:account_analytic_analysis.summary.user,unit_amount:0
+msgid "Total Time"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,hours_quantity:0
+msgid "Total Worked Time"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,ca_invoiced:0
+msgid "Total customer invoiced amount for this account."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: help:account.analytic.account,total_cost:0
+msgid ""
+"Total of costs for this account. It includes real costs (from invoices) and "
+"indirect costs, like time spent on timesheets."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,toinvoice_total:0
+msgid "Total to Invoice"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,ca_to_invoice:0
+msgid "Uninvoiced Amount"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,hours_qtt_non_invoiced:0
+msgid "Uninvoiced Time"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.invoice.line,price_unit:0
+msgid "Unit Price"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.invoice.line,uom_id:0
+msgid "Unit of Measure"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "Units Consumed"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "Units Remaining"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: field:account.analytic.account,user_ids:0
+#: field:account_analytic_analysis.summary.user,user:0
+msgid "User"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: selection:account.analytic.account,recurring_rule_type:0
+msgid "Week(s)"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid ""
+"When reinvoicing costs, Odoo 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
+#: selection:account.analytic.account,recurring_rule_type:0
+msgid "Year(s)"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: code:addons/account_analytic_analysis/account_analytic_analysis.py:676
+#, python-format
+msgid "You must first select a Customer for Contract %s!"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "or view"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: model:res.groups,comment:account_analytic_analysis.group_template_required
+msgid ""
+"the field template of the analytic accounts and contracts will be required."
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid ""
+"{'required': "
+"[('type','=','contract'),'|','|',('fix_price_invoices','=',True), "
+"('invoice_on_timesheets', '=', True), ('recurring_invoices', '=', True)]}"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_template_required
+msgid ""
+"{'required': [('type','=','contract')], 'invisible': [('type','in',['view', "
+"'normal','template'])]}"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "⇒ Invoice"
+msgstr ""
+
+#. module: account_analytic_analysis
+#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
+msgid "⇒ create invoices"
+msgstr ""
diff --git a/addons/account_analytic_analysis/i18n/fa.po b/addons/account_analytic_analysis/i18n/fa.po
index 1fda1378f007f..b0c3a5dd7534f 100644
--- a/addons/account_analytic_analysis/i18n/fa.po
+++ b/addons/account_analytic_analysis/i18n/fa.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-07-22 23:08+0000\n"
+"PO-Revision-Date: 2016-08-28 19:53+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Persian (http://www.transifex.com/odoo/odoo-8/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -729,7 +729,7 @@ msgstr "برای بازبینی"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
msgid "Total"
-msgstr ""
+msgstr "جمع کل:"
#. module: account_analytic_analysis
#: field:account.analytic.account,total_cost:0
diff --git a/addons/account_analytic_analysis/i18n/fi.po b/addons/account_analytic_analysis/i18n/fi.po
index bd01d0d4ef496..5ab95a66d1356 100644
--- a/addons/account_analytic_analysis/i18n/fi.po
+++ b/addons/account_analytic_analysis/i18n/fi.po
@@ -5,14 +5,14 @@
# Translators:
# FIRST AUTHOR , 2014
# Jarmo Kortetjärvi , 2015-2016
-# Kari Lindgren , 2015
+# Kari Lindgren , 2015-2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-03-17 08:32+0000\n"
-"Last-Translator: Jarmo Kortetjärvi \n"
+"PO-Revision-Date: 2016-09-07 08:15+0000\n"
+"Last-Translator: Kari Lindgren \n"
"Language-Team: Finnish (http://www.transifex.com/odoo/odoo-8/language/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -128,7 +128,7 @@ msgid ""
" at a fix price on a contract.\n"
" \n"
" "
-msgstr ""
+msgstr "\n Valitse luodaksesi tarjouksen, joka voidaan muuntaa myyntitilaukseksi.\n
\n Käytä myyntitilauksia seurataksesi kaikkia laskuja jotka pitäisi laskuttaa kiinteällä hinnalla.\n
\n "
#. module: account_analytic_analysis
#: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue
@@ -190,7 +190,7 @@ msgid ""
"Based on the costs you had on the project, what would have been the revenue "
"if all these costs have been invoiced at the normal sale price provided by "
"the pricelist."
-msgstr ""
+msgstr "Perustuu projektin kustannuksille: mikä olisi ollut tulo, jos kaikki kulut olisi laskutettu hintalistan listahinnalla."
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
@@ -434,14 +434,14 @@ msgstr "Jos laskutetaan analyyttisiltä tileiltä, jäljellä oleva määrä, jo
#. module: account_analytic_analysis
#: help:account.analytic.account,last_invoice_date:0
msgid "If invoice from the costs, this is the date of the latest invoiced."
-msgstr ""
+msgstr "Jos laskutetaan kuluista, tämä on viimeisimmän kulun laskutuspäivä."
#. module: account_analytic_analysis
#: help:account.analytic.account,last_worked_invoiced_date:0
msgid ""
"If invoice from the costs, this is the date of the latest work or cost that "
"have been invoiced."
-msgstr ""
+msgstr "Jos laskutetaan kuluista, tämä on viimeisimpien töiden tai kulujen laskutuspäivä."
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
@@ -542,7 +542,7 @@ msgstr ""
msgid ""
"Number of time (hours/days) that can be invoiced plus those that already "
"have been invoiced."
-msgstr ""
+msgstr "Aika (tuntia/päivää) joka voidaan laskuttaa plus jo laskutetut työt."
#. module: account_analytic_analysis
#: help:account.analytic.account,hours_quantity:0
@@ -654,7 +654,7 @@ msgstr "Liikevaihto todellisen ajan mukaan"
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:550
#, python-format
msgid "Sales Order Lines to Invoice of %s"
-msgstr ""
+msgstr "Myyntitilausrivit jotka laskutetaan %s:sta"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
diff --git a/addons/account_analytic_analysis/i18n/fr.po b/addons/account_analytic_analysis/i18n/fr.po
index abf2ce8303bf4..5070652b900c2 100644
--- a/addons/account_analytic_analysis/i18n/fr.po
+++ b/addons/account_analytic_analysis/i18n/fr.po
@@ -6,6 +6,7 @@
# Adriana Ierfino , 2015
# Agathe Mollé , 2015
# Christophe CHAUVET , 2016
+# cri cca , 2016
# FIRST AUTHOR , 2014
# Halim , 2015
# Lionel Sausin , 2015
@@ -17,8 +18,8 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-06 14:23+0000\n"
-"Last-Translator: Christophe CHAUVET \n"
+"PO-Revision-Date: 2016-08-21 20:29+0000\n"
+"Last-Translator: cri cca \n"
"Language-Team: French (http://www.transifex.com/odoo/odoo-8/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -90,7 +91,7 @@ msgid ""
"\n"
"\n"
" "
-msgstr ""
+msgstr "\nHello ${object.name},\n\n% macro account_table(values):\n\n\nClient | \nContrat | \nDates | \nUnités pré-payées | \nContact | \n
\n% pour les partenaires, comptes en valeur :\n% pour compte dans les comptes :\n\n${partner.name} | \n${account.name} | \n${account.date_start} to ${account.date and account.date or '???'} | \n\n% if account.quantity_max != 0.0:\n${account.remaining_hours}/${account.quantity_max} units\n% endif\n | \n${account.partner_id.phone or ''}, ${account.partner_id.email or ''} | \n
\n% endfor\n% endfor\n
\n% endmacro \n% if \"new\" in ctx[\"data\"]:\nLe contrat suivant vient d'arriver à échéance :
\n${account_table(ctx[\"data\"][\"new\"].iteritems())}\n% endif\n% if \"old\" in ctx[\"data\"]:\nLes contrats échus suivants ne sont toujours pas traités :
\n${account_table(ctx[\"data\"][\"old\"].iteritems())}\n% endif\n% if \"future\" in ctx[\"data\"]:\nLes contrats suivants vont expirer dans moins d'un mois : \n
\n${account_table(ctx[\"data\"][\"future\"].iteritems())}\n% endif\n\nVous pouvez contrôler tous les contrats à renouveler en utilisant le menu :\n
\n\n- Ventes / Facturation / Contrats à renouveler
\n
\n\nMerci\n
\n\n-- \nOdoo Message automatique\n
"
#. module: account_analytic_analysis
#: help:account.analytic.account,toinvoice_total:0
@@ -108,7 +109,7 @@ msgid ""
" terms and conditions of the contract.\n"
" \n"
" "
-msgstr ""
+msgstr "\n Cliquer ici pour créer un modèle de contrat.\n
\n Les modèles sont utilisés pour pré-configurer les contrats/projets qui \n peuvent être choisis par les vendeurs pour configurer rapidement les\n clauses d'un contrat.\n
\n "
#. module: account_analytic_analysis
#: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue_all
@@ -121,7 +122,7 @@ msgid ""
" the alerts for the renewal of the contracts to the right salesperson.\n"
" \n"
" "
-msgstr ""
+msgstr "\n Cliquez pour créer un nouveau contrat.\n
\nUtilisez les contrats pour suivre les tâches, problèmes, feuilles de temps ou factures basées sur le travail effectué, les dépenses et ou les commandes. Odoo gérera automatiquement les alertes pour le renouvellement des contrats au bon vendeur.\n
\n "
#. module: account_analytic_analysis
#: model:ir.actions.act_window,help:account_analytic_analysis.action_sales_order
@@ -134,7 +135,7 @@ msgid ""
" at a fix price on a contract.\n"
" \n"
" "
-msgstr ""
+msgstr "\nCliquez pour créer une offre qui peut être transformée en vente.\n
\nUtilisez les commandes clients pour suivre tout ce qui devrait être facturé à un prix fixe sur un contrat.\n
"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue
@@ -151,7 +152,7 @@ msgid ""
" pending contracts.\n"
" \n"
" "
-msgstr ""
+msgstr "\nCliquer pour ajouter un nouveau contrat. \n
\nVous trouverez ici les contrats qui sont à renouveler car leur échéance est dépassée ou dont la charge de travail a déjà dépassé le maximum autorisé.
\nOdoo placera automatiquement les contrats à renouveler en statut \"en attente\". Après négociation, le vendeur devrait fermer ou renouveler les contrats en attente.
\n "
#. module: account_analytic_analysis
#: model:ir.actions.act_window,help:account_analytic_analysis.action_hr_tree_invoiced_all
@@ -163,7 +164,7 @@ msgid ""
" menu instead.\n"
" \n"
" "
-msgstr ""
+msgstr "\n Vous trouverez ici les feuilles de temps et les achats que vous avez effectués pour\n des contrats que vous pouvez refacturer au client. Pour\n enregistrer de nouvelles activités à facturer, utiliser plutôt le menu\n des feuilles de temps.\n
\n "
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
@@ -381,7 +382,7 @@ msgid ""
"Expectation of remaining income for this contract. Computed as the sum of "
"remaining subtotals which, in turn, are computed as the maximum between "
"'(Estimation - Invoiced)' and 'To Invoice' amounts"
-msgstr ""
+msgstr "Attendu du solde à encaisser pour ce contrat. Calculé comme la somme des sous-totaux restants qui, a leur tour, sont calculés comme le maximum entre les montants '(Estimation - Facturé)' et 'A facturer'"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
@@ -435,7 +436,7 @@ msgstr "ID"
msgid ""
"If invoice from analytic account, the remaining amount you can invoice to "
"the customer based on the total costs."
-msgstr ""
+msgstr "En cas de facturation depuis le compte analytique, montant restant que vous pouvez facturer au client, basé sur le total des coûts"
#. module: account_analytic_analysis
#: help:account.analytic.account,last_invoice_date:0
@@ -447,7 +448,7 @@ msgstr "Si facturé à partir des coûts, correspond à la date de la dernière
msgid ""
"If invoice from the costs, this is the date of the latest work or cost that "
"have been invoiced."
-msgstr ""
+msgstr "En cas de facturation des coûts, il s'agit de la date de la dernière prestation ou du dernier coût facturé"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
@@ -541,21 +542,21 @@ msgstr "Rien à facturer, créer"
msgid ""
"Number of time (hours/days) (from journal of type 'general') that can be "
"invoiced if you invoice based on analytic account."
-msgstr ""
+msgstr "Nombre d'unités de temps (heure/jour) (du journal de type 'général') qui peuvent être facturées si vous facturez sur la base de l'analytique."
#. module: account_analytic_analysis
#: help:account.analytic.account,hours_qtt_invoiced:0
msgid ""
"Number of time (hours/days) that can be invoiced plus those that already "
"have been invoiced."
-msgstr ""
+msgstr "Nombre d'unités de temps (heure/jour) qui peuvent être facturées, plus celles déjà facturées."
#. module: account_analytic_analysis
#: help:account.analytic.account,hours_quantity:0
msgid ""
"Number of time you spent on the analytic account (from timesheet). It "
"computes quantities on all journal of type 'general'."
-msgstr ""
+msgstr "Temps total passé pour ce compte analytique (à partir des feuilles de temps). Il est calculé à partir des quantités de tout journal de type 'général'."
#. module: account_analytic_analysis
#: field:account.analytic.account,invoice_on_timesheets:0
@@ -654,7 +655,7 @@ msgstr "Répéter chaque (Jour/Semaine/Mois/Année)"
#. module: account_analytic_analysis
#: field:account.analytic.account,revenue_per_hour:0
msgid "Revenue per Time (real)"
-msgstr ""
+msgstr "Revenu par unité de temps (réel)"
#. module: account_analytic_analysis
#: code:addons/account_analytic_analysis/account_analytic_analysis.py:550
@@ -781,7 +782,7 @@ msgstr "Montant total facturé au client pour ce compte"
msgid ""
"Total of costs for this account. It includes real costs (from invoices) and "
"indirect costs, like time spent on timesheets."
-msgstr ""
+msgstr "Total des coûts pour ce compte. Il inclut les coûts réels (provenant des factures) et les coûts indirects, comme le temps passé sur les feuilles de temps."
#. module: account_analytic_analysis
#: field:account.analytic.account,toinvoice_total:0
@@ -836,7 +837,7 @@ msgid ""
" 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 ""
+msgstr "Lorsque Odoo refacture les coûts, il utilise la liste de prix du contrat qui utilise le prix défini pour le produit (par exemple les produits définis sur la feuille de temps de chaque employé)."
#. module: account_analytic_analysis
#: selection:account.analytic.account,recurring_rule_type:0
diff --git a/addons/account_analytic_analysis/i18n/it.po b/addons/account_analytic_analysis/i18n/it.po
index a431a01fb8622..fd8413d08a01a 100644
--- a/addons/account_analytic_analysis/i18n/it.po
+++ b/addons/account_analytic_analysis/i18n/it.po
@@ -3,6 +3,7 @@
# * account_analytic_analysis
#
# Translators:
+# cri cca , 2016
# FIRST AUTHOR , 2014
# Paolo Valier, 2016
msgid ""
@@ -10,7 +11,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-05-19 06:18+0000\n"
+"PO-Revision-Date: 2016-08-25 19:15+0000\n"
"Last-Translator: Paolo Valier\n"
"Language-Team: Italian (http://www.transifex.com/odoo/odoo-8/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -88,7 +89,7 @@ msgstr ""
#. module: account_analytic_analysis
#: help:account.analytic.account,toinvoice_total:0
msgid " Sum of everything that could be invoiced for this contract."
-msgstr ""
+msgstr " Somma di tutto quello che può essere fatturato per questo contratto."
#. module: account_analytic_analysis
#: model:ir.actions.act_window,help:account_analytic_analysis.template_of_contract_action
@@ -325,7 +326,7 @@ msgstr "Data dell'ultimo Costo Fatturato"
#. module: account_analytic_analysis
#: field:account.analytic.account,recurring_next_date:0
msgid "Date of Next Invoice"
-msgstr ""
+msgstr "Data della Prossima Fattura"
#. module: account_analytic_analysis
#: help:account.analytic.account,last_worked_date:0
@@ -350,7 +351,7 @@ msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
msgid "End date is in the next month"
-msgstr ""
+msgstr "La data di termine è nel prossimo mese"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
diff --git a/addons/account_analytic_analysis/i18n/ja.po b/addons/account_analytic_analysis/i18n/ja.po
index 7bceda5a14d36..4f20706987c42 100644
--- a/addons/account_analytic_analysis/i18n/ja.po
+++ b/addons/account_analytic_analysis/i18n/ja.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-08-01 10:43+0000\n"
+"PO-Revision-Date: 2016-09-24 05:07+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Japanese (http://www.transifex.com/odoo/odoo-8/language/ja/)\n"
"MIME-Version: 1.0\n"
@@ -284,7 +284,7 @@ msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
msgid "Contracts not assigned"
-msgstr ""
+msgstr "未割当の契約"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
@@ -340,7 +340,7 @@ msgstr ""
#. module: account_analytic_analysis
#: field:account.analytic.invoice.line,name:0
msgid "Description"
-msgstr ""
+msgstr "説明"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
@@ -389,7 +389,7 @@ msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
msgid "Expiring soon"
-msgstr ""
+msgstr "契約期間終了間近"
#. module: account_analytic_analysis
#: field:account.analytic.account,fix_price_invoices:0
@@ -637,7 +637,7 @@ msgstr "残時間"
#. module: account_analytic_analysis
#: field:account.analytic.account,recurring_interval:0
msgid "Repeat Every"
-msgstr ""
+msgstr "繰返し周期"
#. module: account_analytic_analysis
#: help:account.analytic.account,recurring_interval:0
@@ -820,7 +820,7 @@ msgstr "ユーザ"
#. module: account_analytic_analysis
#: selection:account.analytic.account,recurring_rule_type:0
msgid "Week(s)"
-msgstr ""
+msgstr "週"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
diff --git a/addons/account_analytic_analysis/i18n/pl.po b/addons/account_analytic_analysis/i18n/pl.po
index 1f84463a877c3..95f40c3179d43 100644
--- a/addons/account_analytic_analysis/i18n/pl.po
+++ b/addons/account_analytic_analysis/i18n/pl.po
@@ -3,13 +3,14 @@
# * account_analytic_analysis
#
# Translators:
+# zbik2607 , 2016
# FIRST AUTHOR , 2014
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-08-04 14:44+0000\n"
+"PO-Revision-Date: 2016-10-14 09:10+0000\n"
"Last-Translator: zbik2607 \n"
"Language-Team: Polish (http://www.transifex.com/odoo/odoo-8/language/pl/)\n"
"MIME-Version: 1.0\n"
@@ -250,7 +251,7 @@ msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
msgid "Contract"
-msgstr ""
+msgstr "Kontrakt"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.template_of_contract_action
@@ -283,12 +284,12 @@ msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
msgid "Contracts not assigned"
-msgstr ""
+msgstr "Kontrakty nie przypisane"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
msgid "Contracts that are not assigned to an account manager."
-msgstr ""
+msgstr "Kontrakty nie przypisane do Menedżera"
#. module: account_analytic_analysis
#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue
@@ -393,7 +394,7 @@ msgstr ""
#. module: account_analytic_analysis
#: field:account.analytic.account,fix_price_invoices:0
msgid "Fixed Price"
-msgstr ""
+msgstr "Cena niezależna"
#. module: account_analytic_analysis
#: field:account.analytic.account,recurring_invoices:0
@@ -403,7 +404,7 @@ msgstr ""
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
msgid "Group By"
-msgstr "Pogrupuj wg"
+msgstr "Grupuj wg"
#. module: account_analytic_analysis
#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user
diff --git a/addons/account_analytic_analysis/i18n/ro.po b/addons/account_analytic_analysis/i18n/ro.po
index 7eb83bb15cfdd..f7ddce4bba2e9 100644
--- a/addons/account_analytic_analysis/i18n/ro.po
+++ b/addons/account_analytic_analysis/i18n/ro.po
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-12-01 06:27+0000\n"
+"PO-Revision-Date: 2016-10-21 19:02+0000\n"
"Last-Translator: Dorin Hongu \n"
"Language-Team: Romanian (http://www.transifex.com/odoo/odoo-8/language/ro/)\n"
"MIME-Version: 1.0\n"
@@ -670,7 +670,7 @@ msgstr "Lună de start"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.view_account_analytic_account_overdue_search
msgid "Status"
-msgstr ""
+msgstr "Stare"
#. module: account_analytic_analysis
#: field:account.analytic.invoice.line,price_subtotal:0
@@ -800,7 +800,7 @@ msgstr "Preț unitar"
#. module: account_analytic_analysis
#: field:account.analytic.invoice.line,uom_id:0
msgid "Unit of Measure"
-msgstr ""
+msgstr "Unitatea de masura"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
diff --git a/addons/account_analytic_analysis/i18n/tr.po b/addons/account_analytic_analysis/i18n/tr.po
index cc6837211994f..e9524be7058ff 100644
--- a/addons/account_analytic_analysis/i18n/tr.po
+++ b/addons/account_analytic_analysis/i18n/tr.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-03-19 01:07+0000\n"
+"PO-Revision-Date: 2016-11-09 12:13+0000\n"
"Last-Translator: Murat Kaplan \n"
"Language-Team: Turkish (http://www.transifex.com/odoo/odoo-8/language/tr/)\n"
"MIME-Version: 1.0\n"
@@ -114,7 +114,7 @@ msgid ""
" the alerts for the renewal of the contracts to the right salesperson.\n"
" \n"
" "
-msgstr "\n Yeni bir sözleşme oluşturmak için tıklayın.\n
\n Görevleri, sorunları, zaman çizelgelerini izlemek veya biten işlere, giderlere,\n ve/veya satış siparişlerine göre fatura kesmek için sözleşmeleri kullanın. Odoo \n otomatik olarak yenilenecek sözleşmeler için doğru satış temsilcisini uyracaktır.\n
\n "
+msgstr "\n Yeni bir sözleşme oluşturmak için tıklayın.\n
\n Görevleri, olay kayıtlarını, zaman çizelgelerini izlemek veya biten işlere, giderlere,\n ve/veya satış siparişlerine göre fatura kesmek için sözleşmeleri kullanın. Odoo \n otomatik olarak yenilenecek sözleşmeler için doğru satış temsilcisini uyaracaktır.\n
\n "
#. module: account_analytic_analysis
#: model:ir.actions.act_window,help:account_analytic_analysis.action_sales_order
@@ -394,7 +394,7 @@ msgstr "Süresi dolmak üzere"
#. module: account_analytic_analysis
#: field:account.analytic.account,fix_price_invoices:0
msgid "Fixed Price"
-msgstr "Sabit Fiyat"
+msgstr "Beklenen Ciro"
#. module: account_analytic_analysis
#: field:account.analytic.account,recurring_invoices:0
@@ -470,12 +470,12 @@ msgstr "Faturalanmış Tutar"
#. module: account_analytic_analysis
#: field:account.analytic.account,hours_qtt_invoiced:0
msgid "Invoiced Time"
-msgstr "Faturalama Zamanı"
+msgstr "Faturalanmış Zaman"
#. module: account_analytic_analysis
#: view:account.analytic.account:account_analytic_analysis.account_analytic_account_form_form
msgid "Invoicing"
-msgstr "Faturalama"
+msgstr "Gelir Tahmini ve Faturalama"
#. module: account_analytic_analysis
#: field:account.analytic.account,last_invoice_date:0
diff --git a/addons/account_analytic_default/i18n/bs.po b/addons/account_analytic_default/i18n/bs.po
index aec4f5e1410eb..172239dcf4114 100644
--- a/addons/account_analytic_default/i18n/bs.po
+++ b/addons/account_analytic_default/i18n/bs.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-10-11 16:53+0000\n"
+"PO-Revision-Date: 2016-11-21 09:58+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Bosnian (http://www.transifex.com/odoo/odoo-8/language/bs/)\n"
"MIME-Version: 1.0\n"
@@ -21,7 +21,7 @@ msgstr ""
#. module: account_analytic_default
#: field:product.product,rules_count:0 field:product.template,rules_count:0
msgid "# Analytic Rules"
-msgstr ""
+msgstr "# Analitička pravila"
#. module: account_analytic_default
#: view:account.analytic.default:account_analytic_default.view_account_analytic_default_form_search
diff --git a/addons/account_analytic_default/i18n/hi.po b/addons/account_analytic_default/i18n/hi.po
index 3c8c471ff9fa2..e362605814fde 100644
--- a/addons/account_analytic_default/i18n/hi.po
+++ b/addons/account_analytic_default/i18n/hi.po
@@ -3,13 +3,14 @@
# * account_analytic_default
#
# Translators:
+# Lata Verma , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:40+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-09-02 20:05+0000\n"
+"Last-Translator: Lata Verma \n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,18 +21,18 @@ msgstr ""
#. module: account_analytic_default
#: field:product.product,rules_count:0 field:product.template,rules_count:0
msgid "# Analytic Rules"
-msgstr ""
+msgstr "# विश्लेषणात्मक नियम"
#. module: account_analytic_default
#: view:account.analytic.default:account_analytic_default.view_account_analytic_default_form_search
msgid "Accounts"
-msgstr ""
+msgstr "खाते"
#. module: account_analytic_default
#: view:account.analytic.default:account_analytic_default.view_account_analytic_default_form_search
#: field:account.analytic.default,analytic_id:0
msgid "Analytic Account"
-msgstr ""
+msgstr "विश्लेषणात्मक खाता"
#. module: account_analytic_default
#: view:account.analytic.default:account_analytic_default.view_account_analytic_default_form
@@ -40,12 +41,12 @@ msgstr ""
#: model:ir.actions.act_window,name:account_analytic_default.action_product_default_list
#: model:ir.ui.menu,name:account_analytic_default.menu_analytic_default_list
msgid "Analytic Defaults"
-msgstr ""
+msgstr "विश्लेषणात्मक चूक"
#. module: account_analytic_default
#: model:ir.model,name:account_analytic_default.model_account_analytic_default
msgid "Analytic Distribution"
-msgstr ""
+msgstr "विश्लेषणात्मक वितरण"
#. module: account_analytic_default
#: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner
@@ -53,7 +54,7 @@ msgstr ""
#: view:product.product:account_analytic_default.product_form_view_default_analytic_button
#: view:product.template:account_analytic_default.product_template_view_default_analytic_button
msgid "Analytic Rules"
-msgstr ""
+msgstr "विश्लेषणात्मक नियम"
#. module: account_analytic_default
#: view:account.analytic.default:account_analytic_default.view_account_analytic_default_form_search
@@ -69,22 +70,22 @@ msgstr "शर्तें"
#. module: account_analytic_default
#: field:account.analytic.default,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: account_analytic_default
#: field:account.analytic.default,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: account_analytic_default
#: help:account.analytic.default,date_stop:0
msgid "Default end date for this Analytic Account."
-msgstr ""
+msgstr "इस विश्लेषणात्मक खाते के लिए डिफ़ॉल्ट अंतिम तारीख।"
#. module: account_analytic_default
#: help:account.analytic.default,date_start:0
msgid "Default start date for this Analytic Account."
-msgstr ""
+msgstr "इस विश्लेषणात्मक खाते के लिए डिफ़ॉल्ट प्रारंभिक तिथि।"
#. module: account_analytic_default
#: field:account.analytic.default,date_stop:0
@@ -94,23 +95,23 @@ msgstr "समाप्ति तिथि"
#. module: account_analytic_default
#: model:ir.actions.act_window,name:account_analytic_default.act_account_acount_move_line_open
msgid "Entries"
-msgstr ""
+msgstr "प्रविष्टियां"
#. module: account_analytic_default
#: help:account.analytic.default,sequence:0
msgid ""
"Gives the sequence order when displaying a list of analytic distribution"
-msgstr ""
+msgstr "विश्लेषणात्मक वितरण की एक सूची प्रदर्शित करते वक्त अनुक्रम क्रम देता है।"
#. module: account_analytic_default
#: view:account.analytic.default:account_analytic_default.view_account_analytic_default_form_search
msgid "Group By"
-msgstr ""
+msgstr "वर्गीकरण का आधार"
#. module: account_analytic_default
#: field:account.analytic.default,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: account_analytic_default
#: model:ir.model,name:account_analytic_default.model_account_invoice_line
@@ -120,12 +121,12 @@ msgstr "चालान क्रम"
#. module: account_analytic_default
#: field:account.analytic.default,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: account_analytic_default
#: field:account.analytic.default,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: account_analytic_default
#: view:account.analytic.default:account_analytic_default.view_account_analytic_default_form_search
@@ -153,7 +154,7 @@ msgstr "उत्पाद प्रारूप"
#. module: account_analytic_default
#: model:ir.model,name:account_analytic_default.model_sale_order_line
msgid "Sales Order Line"
-msgstr ""
+msgstr "बिक्री सूची पंक्ति"
#. module: account_analytic_default
#: help:account.analytic.default,company_id:0
@@ -161,7 +162,7 @@ msgid ""
"Select a company which will use analytic account specified in analytic "
"default (e.g. create new customer invoice or Sales order if we select this "
"company, it will automatically take this as an analytic account)"
-msgstr ""
+msgstr "एक कम्पनी का चयन कीजिए जो विश्लेषणात्मक डिफ़ॉल्ट में निर्दिष्ट विश्लेषणात्मक खाते का उपयोग करे (जैसे नया ग्राहक चालान या बिक्री आदेश बनाया जाए अगर हम इस कपंनी को चुने, यह स्वचालित रूप से एक विश्लेषणात्मक खाते के रूप में इसे लेगा।)"
#. module: account_analytic_default
#: help:account.analytic.default,partner_id:0
@@ -169,7 +170,7 @@ msgid ""
"Select a partner which will use analytic account specified in analytic "
"default (e.g. create new customer invoice or Sales order if we select this "
"partner, it will automatically take this as an analytic account)"
-msgstr ""
+msgstr "एक साझेदार का चयन कीजिए जो विश्लेषणात्मक डिफ़ॉल्ट में निर्दिष्ट विश्लेषणात्मक खाते का उपयोग करे (जैसे नया ग्राहक चालान या बिक्री आदेश बनाया जाए अगर हम इस कपंनी को चुने, यह स्वचालित रूप से एक विश्लेषणात्मक खाते के रूप में इसे लेगा।)"
#. module: account_analytic_default
#: help:account.analytic.default,product_id:0
@@ -177,13 +178,13 @@ msgid ""
"Select a product which will use analytic account specified in analytic "
"default (e.g. create new customer invoice or Sales order if we select this "
"product, it will automatically take this as an analytic account)"
-msgstr ""
+msgstr "एक उत्पाद का चयन कीजिए जो विश्लेषणात्मक डिफ़ॉल्ट में निर्दिष्ट विश्लेषणात्मक खाते का उपयोग करे (जैसे नया ग्राहक चालान या बिक्री आदेश बनाया जाए अगर हम इस कपंनी को चुने, यह स्वचालित रूप से एक विश्लेषणात्मक खाते के रूप में इसे लेगा।)"
#. module: account_analytic_default
#: help:account.analytic.default,user_id:0
msgid ""
"Select a user which will use analytic account specified in analytic default."
-msgstr ""
+msgstr "एक उपभोक्ता का चयन कीजिए जो विश्लेषणात्मक डिफ़ॉल्ट में निर्दिष्ट विश्लेषणात्मक खाते का उपयोग करे।"
#. module: account_analytic_default
#: field:account.analytic.default,sequence:0
diff --git a/addons/account_analytic_default/i18n/ja.po b/addons/account_analytic_default/i18n/ja.po
index cc48740914013..368067f94e887 100644
--- a/addons/account_analytic_default/i18n/ja.po
+++ b/addons/account_analytic_default/i18n/ja.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:40+0000\n"
+"PO-Revision-Date: 2016-10-04 02:27+0000\n"
"Last-Translator: Yoshi Tashiro \n"
"Language-Team: Japanese (http://www.transifex.com/odoo/odoo-8/language/ja/)\n"
"MIME-Version: 1.0\n"
@@ -22,7 +22,7 @@ msgstr ""
#. module: account_analytic_default
#: field:product.product,rules_count:0 field:product.template,rules_count:0
msgid "# Analytic Rules"
-msgstr ""
+msgstr "分析規則数"
#. module: account_analytic_default
#: view:account.analytic.default:account_analytic_default.view_account_analytic_default_form_search
@@ -81,12 +81,12 @@ msgstr "作成日"
#. module: account_analytic_default
#: help:account.analytic.default,date_stop:0
msgid "Default end date for this Analytic Account."
-msgstr ""
+msgstr "既定終了日本分析的会計。"
#. module: account_analytic_default
#: help:account.analytic.default,date_start:0
msgid "Default start date for this Analytic Account."
-msgstr ""
+msgstr "既定開始日本分析的会計。"
#. module: account_analytic_default
#: field:account.analytic.default,date_stop:0
diff --git a/addons/account_analytic_plans/i18n/fi.po b/addons/account_analytic_plans/i18n/fi.po
index 697e48fd14521..d288d66bfbdd5 100644
--- a/addons/account_analytic_plans/i18n/fi.po
+++ b/addons/account_analytic_plans/i18n/fi.po
@@ -4,12 +4,13 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# Kari Lindgren , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-08-23 19:49+0000\n"
+"PO-Revision-Date: 2016-09-07 08:18+0000\n"
"Last-Translator: Kari Lindgren \n"
"Language-Team: Finnish (http://www.transifex.com/odoo/odoo-8/language/fi/)\n"
"MIME-Version: 1.0\n"
@@ -142,7 +143,7 @@ msgstr "Analyyttinen suunnitelma"
#. module: account_analytic_plans
#: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance
msgid "Analytic Plan Instance"
-msgstr ""
+msgstr "Analyyttinen suunnitelma"
#. module: account_analytic_plans
#: view:account.analytic.plan.line:account_analytic_plans.account_analytic_plan_line_form
@@ -165,7 +166,7 @@ msgstr "Analyyttiset suunnitelmat"
#. module: account_analytic_plans
#: field:account.analytic.plan.line,name:0
msgid "Axis Name"
-msgstr ""
+msgstr "Kuvaajan akselin nimi"
#. module: account_analytic_plans
#: model:ir.model,name:account_analytic_plans.model_account_bank_statement
@@ -425,7 +426,7 @@ msgstr "Aloituspäivämäärä"
#: code:addons/account_analytic_plans/account_analytic_plans.py:231
#, python-format
msgid "The total should be between %s and %s."
-msgstr ""
+msgstr "Kokonaismäärän pitäisi olla %s ja %s välillä."
#. module: account_analytic_plans
#: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:62
diff --git a/addons/account_analytic_plans/i18n/hi.po b/addons/account_analytic_plans/i18n/hi.po
index e746d116078d9..b5bdbca79d6bd 100644
--- a/addons/account_analytic_plans/i18n/hi.po
+++ b/addons/account_analytic_plans/i18n/hi.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:40+0000\n"
+"PO-Revision-Date: 2016-09-09 21:47+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -66,12 +66,12 @@ msgstr ""
#. module: account_analytic_plans
#: view:website:account_analytic_plans.report_crossoveredanalyticplans
msgid "Amount"
-msgstr ""
+msgstr "रकम"
#. module: account_analytic_plans
#: field:account.analytic.plan.instance.line,analytic_account_id:0
msgid "Analytic Account"
-msgstr ""
+msgstr "विश्लेषणात्मक खाता"
#. module: account_analytic_plans
#: field:account.crossovered.analytic,ref:0
@@ -93,7 +93,7 @@ msgstr ""
#: model:ir.model,name:account_analytic_plans.model_account_analytic_default
#, python-format
msgid "Analytic Distribution"
-msgstr ""
+msgstr "विश्लेषणात्मक वितरण"
#. module: account_analytic_plans
#: view:account.analytic.plan.instance.line:account_analytic_plans.account_analytic_plan_instance_line_form
@@ -174,7 +174,7 @@ msgstr ""
#. module: account_analytic_plans
#: model:ir.model,name:account_analytic_plans.model_account_bank_statement_line
msgid "Bank Statement Line"
-msgstr ""
+msgstr " बैंक विवरण रेखा"
#. module: account_analytic_plans
#: view:account.crossovered.analytic:account_analytic_plans.view_account_crossovered_analytic
@@ -200,7 +200,7 @@ msgstr ""
#: field:account.crossovered.analytic,create_uid:0
#: field:analytic.plan.create.model,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: account_analytic_plans
#: field:account.analytic.plan,create_date:0
@@ -210,7 +210,7 @@ msgstr ""
#: field:account.crossovered.analytic,create_date:0
#: field:analytic.plan.create.model,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: account_analytic_plans
#: view:account.crossovered.analytic:account_analytic_plans.view_account_crossovered_analytic
@@ -275,7 +275,7 @@ msgstr ""
#: field:analytic.plan.create.model,id:0
#: field:report.account_analytic_plans.report_crossoveredanalyticplans,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: account_analytic_plans
#: model:ir.model,name:account_analytic_plans.model_account_invoice
@@ -305,7 +305,7 @@ msgstr ""
#: field:account.crossovered.analytic,write_uid:0
#: field:analytic.plan.create.model,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: account_analytic_plans
#: field:account.analytic.plan,write_date:0
@@ -315,7 +315,7 @@ msgstr ""
#: field:account.crossovered.analytic,write_date:0
#: field:analytic.plan.create.model,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: account_analytic_plans
#: field:account.analytic.plan.line,max_required:0
@@ -403,7 +403,7 @@ msgstr ""
#. module: account_analytic_plans
#: model:ir.model,name:account_analytic_plans.model_sale_order_line
msgid "Sales Order Line"
-msgstr ""
+msgstr "बिक्री सूची पंक्ति"
#. module: account_analytic_plans
#: view:analytic.plan.create.model:account_analytic_plans.view_analytic_plan_create_model_msg
diff --git a/addons/account_analytic_plans/i18n/zh_CN.po b/addons/account_analytic_plans/i18n/zh_CN.po
index c697a0593e5ce..2499269a482cf 100644
--- a/addons/account_analytic_plans/i18n/zh_CN.po
+++ b/addons/account_analytic_plans/i18n/zh_CN.po
@@ -6,13 +6,14 @@
# FIRST AUTHOR , 2014
# Jeffery Chenn , 2015-2016
# Jeffery Chenn , 2016
+# liAnGjiA , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-16 09:06+0000\n"
-"Last-Translator: Jeffery Chenn \n"
+"PO-Revision-Date: 2016-09-03 18:06+0000\n"
+"Last-Translator: liAnGjiA \n"
"Language-Team: Chinese (China) (http://www.transifex.com/odoo/odoo-8/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -474,4 +475,4 @@ msgstr "analytic.plan.create.model.action"
#: view:account.crossovered.analytic:account_analytic_plans.view_account_crossovered_analytic
#: view:analytic.plan.create.model:account_analytic_plans.view_analytic_plan_create_model_msg
msgid "or"
-msgstr "or"
+msgstr "或"
diff --git a/addons/account_anglo_saxon/i18n/ka.po b/addons/account_anglo_saxon/i18n/ka.po
new file mode 100644
index 0000000000000..0b324e7b96ed5
--- /dev/null
+++ b/addons/account_anglo_saxon/i18n/ka.po
@@ -0,0 +1,79 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_anglo_saxon
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-07-17 06:40+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Georgian (http://www.transifex.com/odoo/odoo-8/language/ka/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ka\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: account_anglo_saxon
+#: help:account.invoice.line,move_id:0
+msgid ""
+"If the invoice was generated from a stock.picking, reference to the related "
+"move line."
+msgstr ""
+
+#. module: account_anglo_saxon
+#: model:ir.model,name:account_anglo_saxon.model_account_invoice
+msgid "Invoice"
+msgstr "ინვოისი"
+
+#. module: account_anglo_saxon
+#: model:ir.model,name:account_anglo_saxon.model_account_invoice_line
+msgid "Invoice Line"
+msgstr ""
+
+#. module: account_anglo_saxon
+#: field:account.invoice.line,move_id:0
+msgid "Move line"
+msgstr ""
+
+#. module: account_anglo_saxon
+#: model:ir.model,name:account_anglo_saxon.model_stock_picking
+msgid "Picking List"
+msgstr ""
+
+#. module: account_anglo_saxon
+#: field:product.category,property_account_creditor_price_difference_categ:0
+#: field:product.template,property_account_creditor_price_difference:0
+msgid "Price Difference Account"
+msgstr ""
+
+#. module: account_anglo_saxon
+#: model:ir.model,name:account_anglo_saxon.model_product_category
+msgid "Product Category"
+msgstr ""
+
+#. module: account_anglo_saxon
+#: model:ir.model,name:account_anglo_saxon.model_product_template
+msgid "Product Template"
+msgstr ""
+
+#. module: account_anglo_saxon
+#: model:ir.model,name:account_anglo_saxon.model_purchase_order
+msgid "Purchase Order"
+msgstr ""
+
+#. module: account_anglo_saxon
+#: model:ir.model,name:account_anglo_saxon.model_stock_move
+msgid "Stock Move"
+msgstr ""
+
+#. module: account_anglo_saxon
+#: help:product.category,property_account_creditor_price_difference_categ:0
+#: help:product.template,property_account_creditor_price_difference:0
+msgid ""
+"This account will be used to value price difference between purchase price "
+"and cost price."
+msgstr ""
diff --git a/addons/account_asset/account_asset.py b/addons/account_asset/account_asset.py
index 12472ff4740c3..a2c0b88bc34e6 100644
--- a/addons/account_asset/account_asset.py
+++ b/addons/account_asset/account_asset.py
@@ -20,10 +20,12 @@
##############################################################################
import time
+import calendar
from datetime import datetime
from dateutil.relativedelta import relativedelta
from openerp.osv import fields, osv
+from openerp.tools import float_is_zero
import openerp.addons.decimal_precision as dp
from openerp.tools import float_compare
from openerp.tools.translate import _
@@ -112,19 +114,35 @@ def _compute_board_amount(self, cr, uid, asset, i, residual_amount, amount_to_de
amount = amount_to_depr / (undone_dotation_number - len(posted_depreciation_line_ids))
if asset.prorata:
amount = amount_to_depr / asset.method_number
- days = total_days - float(depreciation_date.strftime('%j'))
if i == 1:
- amount = (amount_to_depr / asset.method_number) / total_days * days
- elif i == undone_dotation_number:
- amount = (amount_to_depr / asset.method_number) / total_days * (total_days - days)
+ purchase_date = datetime.strptime(asset.purchase_date, '%Y-%m-%d')
+ if asset.method_period % 12 != 0:
+ # Calculate depreciation for remaining days in the month
+ # Example: asset value of 120, monthly depreciation, 12 depreciations
+ # (120 (Asset value)/ (12 (Number of Depreciations) * 1 (Period Length))) / 31 (days of month) * 12 (days to depreciate in purchase month)
+ month_days = calendar.monthrange(purchase_date.year, purchase_date.month)[1]
+ days = month_days - purchase_date.day + 1
+ amount = (amount_to_depr / (asset.method_number * asset.method_period)) / month_days * days
+ else:
+ # Calculate depreciation for remaining days in the year
+ # Example: asset value of 120, yearly depreciation, 12 depreciations
+ # (120 (Asset value)/ (12 (Number of Depreciations) * 1 (Period Length, in years))) / 365 (days of year) * 75 (days to depreciate in purchase year)
+ year_days = 366 if purchase_date.year % 4 == 0 else 365
+ days = year_days - float(depreciation_date.strftime('%j')) + 1
+ amount = (amount_to_depr / (asset.method_number * (asset.method_period / 12))) / year_days * days
elif asset.method == 'degressive':
amount = residual_amount * asset.method_progress_factor
if asset.prorata:
- days = total_days - float(depreciation_date.strftime('%j'))
if i == 1:
- amount = (residual_amount * asset.method_progress_factor) / total_days * days
- elif i == undone_dotation_number:
- amount = (residual_amount * asset.method_progress_factor) / total_days * (total_days - days)
+ purchase_date = datetime.strptime(asset.purchase_date, '%Y-%m-%d')
+ if asset.method_period % 12 != 0:
+ month_days = calendar.monthrange(purchase_date.year, purchase_date.month)[1]
+ days = month_days - purchase_date.day + 1
+ amount = (residual_amount * asset.method_progress_factor) / month_days * days
+ else:
+ year_days = 366 if purchase_date.year % 4 == 0 else 365
+ days = year_days - float(depreciation_date.strftime('%j')) + 1
+ amount = (residual_amount * asset.method_progress_factor * (asset.method_period / 12)) / year_days * days
return amount
def _compute_board_undone_dotation_nb(self, cr, uid, asset, depreciation_date, total_days, context=None):
@@ -167,10 +185,13 @@ def compute_depreciation_board(self, cr, uid, ids, context=None):
year = depreciation_date.year
total_days = (year % 4) and 365 or 366
+ precision_digits = self.pool.get('decimal.precision').precision_get(cr, uid, 'Account')
undone_dotation_number = self._compute_board_undone_dotation_nb(cr, uid, asset, depreciation_date, total_days, context=context)
for x in range(len(posted_depreciation_line_ids), undone_dotation_number):
i = x + 1
amount = self._compute_board_amount(cr, uid, asset, i, residual_amount, amount_to_depr, undone_dotation_number, posted_depreciation_line_ids, total_days, depreciation_date, context=context)
+ if float_is_zero(amount, precision_digits=precision_digits):
+ continue
residual_amount -= amount
vals = {
'amount': amount,
diff --git a/addons/account_asset/i18n/cs.po b/addons/account_asset/i18n/cs.po
index 6fa32b5482500..4f0c271ecdf12 100644
--- a/addons/account_asset/i18n/cs.po
+++ b/addons/account_asset/i18n/cs.po
@@ -4,13 +4,14 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# Ladislav Tomm , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-04-19 09:37+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-10-06 11:46+0000\n"
+"Last-Translator: Ladislav Tomm \n"
"Language-Team: Czech (http://www.transifex.com/odoo/odoo-8/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -21,7 +22,7 @@ msgstr ""
#. module: account_asset
#: field:account.asset.asset,entry_count:0
msgid "# Asset Entries"
-msgstr ""
+msgstr "# Majetkové záznamy"
#. module: account_asset
#: field:asset.asset.report,nbr:0
@@ -37,7 +38,7 @@ msgid ""
" so, match this analysis to your needs;\n"
" \n"
" "
-msgstr ""
+msgstr "\nZ této zprávy máte přehled nad všemi odpisy. Nástroj Vyhledávání můžete také použít pro personalizaci vašich Správ majetku a podobně. Upravte si tuto rozbor podle svých potřeb;\n
"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_search
@@ -52,7 +53,7 @@ msgstr "Aktivní"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
msgid "Add an internal note here..."
-msgstr ""
+msgstr "Zde můžete přidat interní poznámku..."
#. module: account_asset
#: field:account.asset.depreciation.line,depreciated_value:0
@@ -118,17 +119,17 @@ msgstr "Hierarchie majetku"
#. module: account_asset
#: view:account.asset.history:account_asset.view_account_asset_history_form
msgid "Asset History"
-msgstr ""
+msgstr "Historie majetku"
#. module: account_asset
#: field:asset.modify,asset_method_time:0
msgid "Asset Method Time"
-msgstr ""
+msgstr "Způsob odepisování"
#. module: account_asset
#: field:account.asset.asset,name:0
msgid "Asset Name"
-msgstr ""
+msgstr "Název majetku"
#. module: account_asset
#: view:account.asset.category:account_asset.view_account_asset_category_form
@@ -324,7 +325,7 @@ msgstr "Aktuální"
#. module: account_asset
#: field:account.asset.depreciation.line,amount:0
msgid "Current Depreciation"
-msgstr ""
+msgstr "Běžný odpis"
#. module: account_asset
#: field:account.asset.history,date:0
@@ -398,7 +399,7 @@ msgstr "Odpisová metoda"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Depreciation Month"
-msgstr ""
+msgstr "Měsíční odpis"
#. module: account_asset
#: field:account.asset.depreciation.line,name:0
@@ -436,7 +437,7 @@ msgstr "Položky"
#. module: account_asset
#: constraint:account.asset.asset:0
msgid "Error ! You cannot create recursive assets."
-msgstr ""
+msgstr "Chyba ! Nemůžete vytvořit rekurzivní majetky."
#. module: account_asset
#: code:addons/account_asset/account_asset.py:81
@@ -462,7 +463,7 @@ msgstr "Hrubá částka"
#. module: account_asset
#: field:account.asset.asset,purchase_value:0
msgid "Gross Value"
-msgstr ""
+msgstr "Hrubá hodnota"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
@@ -568,7 +569,7 @@ msgstr "Název"
#. module: account_asset
#: field:account.asset.depreciation.line,remaining_value:0
msgid "Next Period Depreciation"
-msgstr ""
+msgstr "Další doba odpisu"
#. module: account_asset
#: field:account.asset.asset,note:0 field:account.asset.category,note:0
@@ -598,7 +599,7 @@ msgstr "Počet odpisů"
#. module: account_asset
#: field:account.asset.asset,method_period:0
msgid "Number of Months in a Period"
-msgstr ""
+msgstr "Počet měsíců za dobu"
#. module: account_asset
#: field:account.asset.asset,parent_id:0
@@ -661,7 +662,7 @@ msgstr "Datum zakoupení"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Purchase Month"
-msgstr ""
+msgstr "Měsíc zakoupení"
#. module: account_asset
#: field:asset.modify,name:0
@@ -733,7 +734,7 @@ msgstr "Stav"
#. module: account_asset
#: help:account.asset.asset,method_period:0
msgid "The amount of time between two depreciations, in months"
-msgstr ""
+msgstr "Množství času mezi dvěma odpisy v měsíci"
#. module: account_asset
#: help:account.asset.history,method_time:0
@@ -748,7 +749,7 @@ msgstr "Metoda k použití pro výpočet datumů a počet odpisových řádek.\n
#: help:account.asset.category,method_number:0
#: help:account.asset.history,method_number:0
msgid "The number of depreciations needed to depreciate your asset"
-msgstr ""
+msgstr "Počet odpisů nutný k odepsání vašeho majetku"
#. module: account_asset
#: field:account.asset.asset,method_time:0
@@ -778,7 +779,7 @@ msgid ""
"When an asset is created, the status is 'Draft'.\n"
"If the asset is confirmed, the status goes in 'Running' and the depreciation lines can be posted in the accounting.\n"
"You can manually close an asset when the depreciation is over. If the last line of depreciation is posted, the asset automatically goes in that status."
-msgstr ""
+msgstr "Když se vytvoří nový majetek, jeho status je Návrh.\nPo jeh potvrzení ze status mění na Probíhající a v účetnictví může být započato odepisování.\nPo ukončení odpisování můžete majetek ručně uzavřít. Pokud je zaevidovaný poslední řádek odpisů, majetek změní status na Uzavřený automaticky."
#. module: account_asset
#: field:asset.asset.report,name:0
@@ -791,13 +792,13 @@ msgstr "Rok"
msgid ""
"You already have assets with the reference %s.\n"
"Please delete these assets before creating new ones for this invoice."
-msgstr ""
+msgstr "Již máte majetek s stejným %s.\nProsím smažte tento před vytvořením nového pro tuto fakturu."
#. module: account_asset
#: code:addons/account_asset/account_asset.py:81
#, python-format
msgid "You cannot delete an asset that contains posted depreciation lines."
-msgstr ""
+msgstr "Nemůžete smazat majetek který obsahuje zaevidovaný odpisový řádek."
#. module: account_asset
#: view:asset.modify:account_asset.asset_modify_form
diff --git a/addons/account_asset/i18n/el.po b/addons/account_asset/i18n/el.po
index 08c8b7a1a08b3..29a90a5fc0b9c 100644
--- a/addons/account_asset/i18n/el.po
+++ b/addons/account_asset/i18n/el.po
@@ -4,13 +4,15 @@
#
# Translators:
# Kostas Goutoudis , 2015-2016
+# Kostas Goutoudis , 2016
+# Γιώργος Μηντζιλώνης , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-04-19 09:37+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-10-29 11:30+0000\n"
+"Last-Translator: Kostas Goutoudis \n"
"Language-Team: Greek (http://www.transifex.com/odoo/odoo-8/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -791,7 +793,7 @@ msgstr "Έτος"
msgid ""
"You already have assets with the reference %s.\n"
"Please delete these assets before creating new ones for this invoice."
-msgstr ""
+msgstr "Έχετε ήδη πάγια με την αναφορά %s.\nΠαρακαλούμε διαγράψτε αυτά τα πάγια πριν δημιουργήσετε καινούργια για αυτό το τιμολόγιο."
#. module: account_asset
#: code:addons/account_asset/account_asset.py:81
diff --git a/addons/account_asset/i18n/fi.po b/addons/account_asset/i18n/fi.po
index 50333ae31dbd8..71e3e9b61dd2e 100644
--- a/addons/account_asset/i18n/fi.po
+++ b/addons/account_asset/i18n/fi.po
@@ -5,13 +5,13 @@
# Translators:
# FIRST AUTHOR , 2014
# Jarmo Kortetjärvi , 2016
-# Kari Lindgren , 2015
+# Kari Lindgren , 2015-2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-07-15 13:36+0000\n"
+"PO-Revision-Date: 2016-09-09 10:37+0000\n"
"Last-Translator: Jarmo Kortetjärvi \n"
"Language-Team: Finnish (http://www.transifex.com/odoo/odoo-8/language/fi/)\n"
"MIME-Version: 1.0\n"
@@ -59,7 +59,7 @@ msgstr "Lisää tähän sisäinen muistiinpano..."
#. module: account_asset
#: field:account.asset.depreciation.line,depreciated_value:0
msgid "Amount Already Depreciated"
-msgstr ""
+msgstr "Tehtyjen poistojen määrä"
#. module: account_asset
#: field:asset.asset.report,depreciation_value:0
@@ -143,7 +143,7 @@ msgstr "Varojen kategoria"
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_asset_depreciation_line
msgid "Asset depreciation line"
-msgstr ""
+msgstr "Omaisuuserän poistorivi"
#. module: account_asset
#: view:account.asset.history:account_asset.view_account_asset_history_tree
@@ -188,7 +188,7 @@ msgstr "Ehdotetut varat"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Assets in running state"
-msgstr ""
+msgstr "Käytössäolevat omaisuuserät"
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:account_asset.view_asset_depreciation_confirmation_wizard
@@ -285,13 +285,13 @@ msgstr "Vahvista varat"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
msgid "Create Move"
-msgstr ""
+msgstr "Luo siirto"
#. module: account_asset
#: code:addons/account_asset/wizard/wizard_asset_compute.py:49
#, python-format
msgid "Created Asset Moves"
-msgstr ""
+msgstr "Luodut omaisuuseräsiirrot"
#. module: account_asset
#: field:account.asset.asset,create_uid:0
@@ -358,7 +358,7 @@ msgstr "Degressiivinen kerroin"
#. module: account_asset
#: field:account.asset.category,account_expense_depreciation_id:0
msgid "Depr. Expense Account"
-msgstr ""
+msgstr "Poiston kulutili"
#. module: account_asset
#: field:account.asset.category,account_depreciation_id:0
@@ -368,7 +368,7 @@ msgstr "Poistojen tili"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
msgid "Depreciation Board"
-msgstr ""
+msgstr "Poistosuunnitelma"
#. module: account_asset
#: field:account.asset.depreciation.line,depreciation_date:0
@@ -400,7 +400,7 @@ msgstr "Poistomenetelmä"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Depreciation Month"
-msgstr ""
+msgstr "Poistokuukausi"
#. module: account_asset
#: field:account.asset.depreciation.line,name:0
@@ -438,7 +438,7 @@ msgstr "Kirjaukset"
#. module: account_asset
#: constraint:account.asset.asset:0
msgid "Error ! You cannot create recursive assets."
-msgstr ""
+msgstr "Virhe ! Et voi luoda rekursiivisiä omaisuuseriä."
#. module: account_asset
#: code:addons/account_asset/account_asset.py:81
@@ -600,7 +600,7 @@ msgstr "Poistojen lukumäärä"
#. module: account_asset
#: field:account.asset.asset,method_period:0
msgid "Number of Months in a Period"
-msgstr ""
+msgstr "Kuukausia jaksossa"
#. module: account_asset
#: field:account.asset.asset,parent_id:0
@@ -635,12 +635,12 @@ msgstr "Kirjattu"
#. module: account_asset
#: field:asset.asset.report,posted_value:0
msgid "Posted Amount"
-msgstr ""
+msgstr "Kirjattu summa"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Posted depreciation lines"
-msgstr ""
+msgstr "Kirjatut poistorivit"
#. module: account_asset
#: field:account.asset.asset,prorata:0 field:account.asset.category,prorata:0
@@ -705,7 +705,7 @@ msgstr "Järjestysluku"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
msgid "Set to Close"
-msgstr ""
+msgstr "Sulje omaisuuserä"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
@@ -767,7 +767,7 @@ msgstr "Kahden poiston väli kuukauden aikana"
#. module: account_asset
#: field:asset.asset.report,unposted_value:0
msgid "Unposted Amount"
-msgstr ""
+msgstr "Kirjaamaton määrä"
#. module: account_asset
#: field:account.asset.history,user_id:0
@@ -799,7 +799,7 @@ msgstr ""
#: code:addons/account_asset/account_asset.py:81
#, python-format
msgid "You cannot delete an asset that contains posted depreciation lines."
-msgstr ""
+msgstr "Et voi poistaa omaisuuserää jossa on kirjattuja poistorivejä!"
#. module: account_asset
#: view:asset.modify:account_asset.asset_modify_form
diff --git a/addons/account_asset/i18n/hi.po b/addons/account_asset/i18n/hi.po
index e91720dbd796f..eac415ec4158d 100644
--- a/addons/account_asset/i18n/hi.po
+++ b/addons/account_asset/i18n/hi.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-02 11:00+0000\n"
+"PO-Revision-Date: 2016-09-11 13:18+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -20,12 +20,12 @@ msgstr ""
#. module: account_asset
#: field:account.asset.asset,entry_count:0
msgid "# Asset Entries"
-msgstr ""
+msgstr "# संपत्ति प्रविष्टियां"
#. module: account_asset
#: field:asset.asset.report,nbr:0
msgid "# of Depreciation Lines"
-msgstr ""
+msgstr "मूल्यह्रास लाइनों की #"
#. module: account_asset
#: model:ir.actions.act_window,help:account_asset.action_asset_asset_report
@@ -61,7 +61,7 @@ msgstr ""
#. module: account_asset
#: field:asset.asset.report,depreciation_value:0
msgid "Amount of Depreciation Lines"
-msgstr ""
+msgstr "मूल्यह्रास लाइनों की रकम"
#. module: account_asset
#: view:account.asset.category:account_asset.view_account_asset_category_form
@@ -87,7 +87,7 @@ msgstr "सक्रिय"
#. module: account_asset
#: field:account.asset.category,account_asset_id:0
msgid "Asset Account"
-msgstr ""
+msgstr "संपत्ति खाता"
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal
@@ -101,12 +101,12 @@ msgstr ""
#: field:account.invoice.line,asset_category_id:0
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Asset Category"
-msgstr ""
+msgstr "संपत्ति वर्ग"
#. module: account_asset
#: view:asset.modify:account_asset.asset_modify_form
msgid "Asset Durations to Modify"
-msgstr ""
+msgstr "संशोधित करने के लिए संपत्ति अवधि"
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree
@@ -122,12 +122,12 @@ msgstr ""
#. module: account_asset
#: field:asset.modify,asset_method_time:0
msgid "Asset Method Time"
-msgstr ""
+msgstr "संपत्ति विधि समय"
#. module: account_asset
#: field:account.asset.asset,name:0
msgid "Asset Name"
-msgstr ""
+msgstr "संपत्ति नाम"
#. module: account_asset
#: view:account.asset.category:account_asset.view_account_asset_category_form
@@ -135,12 +135,12 @@ msgstr ""
#: field:asset.asset.report,asset_category_id:0
#: model:ir.model,name:account_asset.model_account_asset_category
msgid "Asset category"
-msgstr ""
+msgstr "संपत्ति वर्ग"
#. module: account_asset
#: model:ir.model,name:account_asset.model_account_asset_depreciation_line
msgid "Asset depreciation line"
-msgstr ""
+msgstr "संपत्ति मूल्यह्रास लाइन"
#. module: account_asset
#: view:account.asset.history:account_asset.view_account_asset_history_tree
@@ -165,27 +165,27 @@ msgstr "सक्रिय"
#: model:ir.model,name:account_asset.model_asset_asset_report
#: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report
msgid "Assets Analysis"
-msgstr ""
+msgstr "संपत्ति विश्लेषण"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_search
msgid "Assets in closed state"
-msgstr ""
+msgstr "बंद स्थिति में संपत्ति"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_search
msgid "Assets in draft and open states"
-msgstr ""
+msgstr "प्रारूप और खुली स्थिति में सम्पति"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Assets in draft state"
-msgstr ""
+msgstr "प्रारूप स्थिति में सम्पति"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Assets in running state"
-msgstr ""
+msgstr " संचालन स्थिति में सम्पति"
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:account_asset.view_asset_depreciation_confirmation_wizard
@@ -203,7 +203,7 @@ msgstr ""
msgid ""
"Check this if you want to automatically confirm the assets of this category "
"when created by invoices."
-msgstr ""
+msgstr "इसे जाँच लें अगर आप स्वचालित रूप से इस वर्ग की संपत्ति की पुष्टि करना चाहते हैं \nजब वह चालान द्वारा बनाई हैं।"
#. module: account_asset
#: field:account.asset.asset,child_ids:0
@@ -216,7 +216,7 @@ msgid ""
"Choose the method to use to compute the amount of depreciation lines.\n"
" * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n"
" * Degressive: Calculated on basis of: Residual Value * Degressive Factor"
-msgstr ""
+msgstr "मूल्यह्रास रेखा की मात्रा का परिकलन करने के लिए विधि चुमें।\nरैखिक: गणना का आधार: सकल मूल्य/मूल्यह्रास की संख्या\nअवक्रमिक: गणना का आधार: अवशिष्ट मूल्य*अवक्रमिक कारक"
#. module: account_asset
#: help:account.asset.asset,method_time:0
@@ -225,14 +225,14 @@ msgid ""
"Choose the method to use to compute the dates and number of depreciation lines.\n"
" * Number of Depreciations: Fix the number of depreciation lines and the time between 2 depreciations.\n"
" * Ending Date: Choose the time between 2 depreciations and the date the depreciations won't go beyond."
-msgstr ""
+msgstr "मूल्यह्रास रेखा कीतारीख और संख्या का परिकलन करने के लिए विधि चुनें।\nमूल्यह्रासों की संख्या: मूल्यह्रास लाइनों की संख्या और 2 मूल्यह्रासों के बीच के समय को ठीक करें।\nसमाप्त होने की तारीख: 2 मूल्यह्रासों के बीच का समय चुनें और the date the depreciations won't go beyond."
#. module: account_asset
#: help:asset.depreciation.confirmation.wizard,period_id:0
msgid ""
"Choose the period for which you want to automatically post the depreciation "
"lines of running assets"
-msgstr ""
+msgstr "जिस अवधि के लिए आप स्वचालित रूप से चल संपत्ति का मूल्यह्रास लाइनों पोस्ट करना चाहते हैं चुनें"
#. module: account_asset
#: selection:account.asset.asset,state:0 selection:asset.asset.report,state:0
@@ -255,7 +255,7 @@ msgstr "संस्था"
#. module: account_asset
#: field:account.asset.asset,method:0 field:account.asset.category,method:0
msgid "Computation Method"
-msgstr ""
+msgstr "परिकलन विधि"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
@@ -266,7 +266,7 @@ msgstr ""
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:account_asset.view_asset_depreciation_confirmation_wizard
msgid "Compute Asset"
-msgstr ""
+msgstr "संपत्ति परिकलन"
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard
@@ -288,7 +288,7 @@ msgstr ""
#: code:addons/account_asset/wizard/wizard_asset_compute.py:49
#, python-format
msgid "Created Asset Moves"
-msgstr ""
+msgstr "सम्पत्ति स्थानांतरण सृजन"
#. module: account_asset
#: field:account.asset.asset,create_uid:0
@@ -298,7 +298,7 @@ msgstr ""
#: field:asset.depreciation.confirmation.wizard,create_uid:0
#: field:asset.modify,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: account_asset
#: field:account.asset.asset,create_date:0
@@ -308,22 +308,22 @@ msgstr ""
#: field:asset.depreciation.confirmation.wizard,create_date:0
#: field:asset.modify,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: account_asset
#: field:account.asset.asset,currency_id:0
msgid "Currency"
-msgstr ""
+msgstr "मुद्रा"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_search
msgid "Current"
-msgstr ""
+msgstr "वर्तमान"
#. module: account_asset
#: field:account.asset.depreciation.line,amount:0
msgid "Current Depreciation"
-msgstr ""
+msgstr "वर्तमान मूल्यह्रास"
#. module: account_asset
#: field:account.asset.history,date:0
@@ -333,24 +333,24 @@ msgstr "तिथि"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Date of asset purchase"
-msgstr ""
+msgstr "संपत्ति खरीद की तारीख"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Date of depreciation"
-msgstr ""
+msgstr "मूल्यह्रास की तारीख"
#. module: account_asset
#: selection:account.asset.asset,method:0
#: selection:account.asset.category,method:0
msgid "Degressive"
-msgstr ""
+msgstr "अवक्रमिक"
#. module: account_asset
#: field:account.asset.asset,method_progress_factor:0
#: field:account.asset.category,method_progress_factor:0
msgid "Degressive Factor"
-msgstr ""
+msgstr "अवक्रमिक कारक"
#. module: account_asset
#: field:account.asset.category,account_expense_depreciation_id:0
@@ -360,18 +360,18 @@ msgstr ""
#. module: account_asset
#: field:account.asset.category,account_depreciation_id:0
msgid "Depreciation Account"
-msgstr ""
+msgstr "मूल्यह्रास खाता"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
msgid "Depreciation Board"
-msgstr ""
+msgstr "मूल्यह्रास बोर्ड"
#. module: account_asset
#: field:account.asset.depreciation.line,depreciation_date:0
#: field:asset.asset.report,depreciation_date:0
msgid "Depreciation Date"
-msgstr ""
+msgstr "मूल्यह्रास तिथि"
#. module: account_asset
#: view:account.asset.category:account_asset.view_account_asset_category_form
@@ -381,28 +381,28 @@ msgstr ""
#. module: account_asset
#: field:account.asset.depreciation.line,move_id:0
msgid "Depreciation Entry"
-msgstr ""
+msgstr "मूल्यह्रास प्रविष्टि"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
#: field:account.asset.asset,depreciation_line_ids:0
msgid "Depreciation Lines"
-msgstr ""
+msgstr "मूल्यह्रास रेखाएँ"
#. module: account_asset
#: view:account.asset.category:account_asset.view_account_asset_category_form
msgid "Depreciation Method"
-msgstr ""
+msgstr "मूल्यह्रास का तरीका"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Depreciation Month"
-msgstr ""
+msgstr "मूल्यह्रास माह"
#. module: account_asset
#: field:account.asset.depreciation.line,name:0
msgid "Depreciation Name"
-msgstr ""
+msgstr "मूल्यह्रास नाम"
#. module: account_asset
#: selection:account.asset.asset,state:0
@@ -417,20 +417,20 @@ msgstr "मसौदा"
#: selection:account.asset.category,method_time:0
#: selection:account.asset.history,method_time:0
msgid "Ending Date"
-msgstr ""
+msgstr " समापन तिथि"
#. module: account_asset
#: field:account.asset.category,method_end:0
#: field:account.asset.history,method_end:0 field:asset.modify,method_end:0
msgid "Ending date"
-msgstr ""
+msgstr " समापन तिथि"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
#: field:account.asset.asset,account_move_line_ids:0
#: model:ir.actions.act_window,name:account_asset.act_entries_open
msgid "Entries"
-msgstr ""
+msgstr "प्रविष्टियां"
#. module: account_asset
#: constraint:account.asset.asset:0
@@ -446,7 +446,7 @@ msgstr "त्रुटि!"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Extended Filters..."
-msgstr ""
+msgstr "विस्तारित फिल्टर्स"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
@@ -456,17 +456,17 @@ msgstr ""
#. module: account_asset
#: field:asset.asset.report,gross_value:0
msgid "Gross Amount"
-msgstr ""
+msgstr "सकल मात्रा"
#. module: account_asset
#: field:account.asset.asset,purchase_value:0
msgid "Gross Value"
-msgstr ""
+msgstr "सकल मुल्य"
#. module: account_asset
#: view:asset.asset.report:account_asset.view_asset_asset_report_search
msgid "Group By"
-msgstr ""
+msgstr "वर्गीकरण का आधार"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
@@ -485,7 +485,7 @@ msgstr ""
#: field:asset.asset.report,id:0
#: field:asset.depreciation.confirmation.wizard,id:0 field:asset.modify,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: account_asset
#: help:account.asset.asset,prorata:0 help:account.asset.category,prorata:0
@@ -529,7 +529,7 @@ msgstr ""
#: field:asset.depreciation.confirmation.wizard,write_uid:0
#: field:asset.modify,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: account_asset
#: field:account.asset.asset,write_date:0
@@ -539,25 +539,25 @@ msgstr ""
#: field:asset.depreciation.confirmation.wizard,write_date:0
#: field:asset.modify,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: account_asset
#: selection:account.asset.asset,method:0
#: selection:account.asset.category,method:0
msgid "Linear"
-msgstr ""
+msgstr " रैखिक"
#. module: account_asset
#: view:asset.modify:account_asset.asset_modify_form
msgid "Modify"
-msgstr ""
+msgstr "संशोधित"
#. module: account_asset
#: view:asset.modify:account_asset.asset_modify_form
#: model:ir.actions.act_window,name:account_asset.action_asset_modify
#: model:ir.model,name:account_asset.model_asset_modify
msgid "Modify Asset"
-msgstr ""
+msgstr "संशोधित सम्पत्ति "
#. module: account_asset
#: field:account.asset.category,name:0
@@ -573,7 +573,7 @@ msgstr ""
#: field:account.asset.asset,note:0 field:account.asset.category,note:0
#: field:account.asset.history,note:0
msgid "Note"
-msgstr ""
+msgstr "टिप्पणी "
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
@@ -801,7 +801,7 @@ msgstr ""
#. module: account_asset
#: view:asset.modify:account_asset.asset_modify_form
msgid "months"
-msgstr ""
+msgstr "महीने"
#. module: account_asset
#: view:asset.depreciation.confirmation.wizard:account_asset.view_asset_depreciation_confirmation_wizard
diff --git a/addons/account_asset/i18n/sl.po b/addons/account_asset/i18n/sl.po
index 427fa906a4348..37077146431fc 100644
--- a/addons/account_asset/i18n/sl.po
+++ b/addons/account_asset/i18n/sl.po
@@ -5,13 +5,14 @@
# Translators:
# FIRST AUTHOR , 2014
# Matjaž Mozetič , 2014-2016
+# Vida Potočnik , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-04-20 05:12+0000\n"
-"Last-Translator: Matjaž Mozetič \n"
+"PO-Revision-Date: 2016-10-28 12:14+0000\n"
+"Last-Translator: Vida Potočnik \n"
"Language-Team: Slovenian (http://www.transifex.com/odoo/odoo-8/language/sl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -362,7 +363,7 @@ msgstr "Konto stroška amortizacije"
#. module: account_asset
#: field:account.asset.category,account_depreciation_id:0
msgid "Depreciation Account"
-msgstr "Konto amortizacije"
+msgstr "Konto popravka vrednosti"
#. module: account_asset
#: view:account.asset.asset:account_asset.view_account_asset_asset_form
diff --git a/addons/account_asset/i18n/uk.po b/addons/account_asset/i18n/uk.po
index a10299db70bd0..851200c48aded 100644
--- a/addons/account_asset/i18n/uk.po
+++ b/addons/account_asset/i18n/uk.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-04-23 11:37+0000\n"
+"PO-Revision-Date: 2016-10-29 16:20+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Ukrainian (http://www.transifex.com/odoo/odoo-8/language/uk/)\n"
"MIME-Version: 1.0\n"
@@ -106,7 +106,7 @@ msgstr "Категорія активу"
#. module: account_asset
#: view:asset.modify:account_asset.asset_modify_form
msgid "Asset Durations to Modify"
-msgstr ""
+msgstr "Терміни для редагування"
#. module: account_asset
#: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree
@@ -122,7 +122,7 @@ msgstr ""
#. module: account_asset
#: field:asset.modify,asset_method_time:0
msgid "Asset Method Time"
-msgstr ""
+msgstr "Вибір терміну амортизації"
#. module: account_asset
#: field:account.asset.asset,name:0
@@ -203,7 +203,7 @@ msgstr ""
msgid ""
"Check this if you want to automatically confirm the assets of this category "
"when created by invoices."
-msgstr ""
+msgstr "Зробіть позначку, якщо хочете щоб активи цієї категорії автоматично вводилися в експлуатацію, якщо вони автоматично створені на основі рахунку від постачальника. "
#. module: account_asset
#: field:account.asset.asset,child_ids:0
@@ -642,7 +642,7 @@ msgstr "Опублікувати проведення по амортизаці
#. module: account_asset
#: field:account.asset.asset,prorata:0 field:account.asset.category,prorata:0
msgid "Prorata Temporis"
-msgstr ""
+msgstr "З дати експлуатації"
#. module: account_asset
#: constraint:account.asset.asset:0
diff --git a/addons/account_asset/test/account_asset_wizard.yml b/addons/account_asset/test/account_asset_wizard.yml
index 7b77e5cfddaa3..9b05096e05274 100644
--- a/addons/account_asset/test/account_asset_wizard.yml
+++ b/addons/account_asset/test/account_asset_wizard.yml
@@ -13,7 +13,7 @@
I check the proper depreciation lines created.
-
!assert {model: account.asset.asset, id: account_asset.account_asset_asset_office0}:
- - method_number == len(depreciation_line_ids) -1
+ - method_number == len(depreciation_line_ids)
-
I create a period to compute a asset on period.
-
diff --git a/addons/account_bank_statement_extensions/i18n/fi.po b/addons/account_bank_statement_extensions/i18n/fi.po
index 36ef979f5f404..607d28c769b85 100644
--- a/addons/account_bank_statement_extensions/i18n/fi.po
+++ b/addons/account_bank_statement_extensions/i18n/fi.po
@@ -5,7 +5,7 @@
# Translators:
# FIRST AUTHOR , 2014
# Jarmo Kortetjärvi , 2016
-# Kari Lindgren , 2015
+# Kari Lindgren , 2015-2016
# Mika Karvinen , 2015
# Sanna Edelman , 2015
msgid ""
@@ -13,8 +13,8 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-03-17 11:57+0000\n"
-"Last-Translator: Jarmo Kortetjärvi \n"
+"PO-Revision-Date: 2016-09-07 08:48+0000\n"
+"Last-Translator: Kari Lindgren \n"
"Language-Team: Finnish (http://www.transifex.com/odoo/odoo-8/language/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -105,7 +105,7 @@ msgstr "Peruuta valitut tilioterivit"
#. module: account_bank_statement_extensions
#: view:account.bank.statement.line.global:account_bank_statement_extensions.view_statement_line_global_form
msgid "Child Batch Payments"
-msgstr ""
+msgstr "Alitason eräsiirtomaksut"
#. module: account_bank_statement_extensions
#: field:account.bank.statement.line.global,child_ids:0
@@ -243,20 +243,20 @@ msgstr "Laajennetut suodattimet..."
#. module: account_bank_statement_extensions
#: view:account.bank.statement.line:account_bank_statement_extensions.view_bank_statement_line_list
msgid "Glob. Am."
-msgstr ""
+msgstr "Glob. Am."
#. module: account_bank_statement_extensions
#: view:account.bank.statement.line:account_bank_statement_extensions.view_bank_statement_line_filter
#: field:account.bank.statement.line,globalisation_amount:0
msgid "Glob. Amount"
-msgstr ""
+msgstr "Glob. Amount"
#. module: account_bank_statement_extensions
#: view:account.bank.statement:account_bank_statement_extensions.view_bank_statement_form_add_fields
#: view:account.bank.statement.line:account_bank_statement_extensions.view_bank_statement_line_filter
#: view:account.bank.statement.line:account_bank_statement_extensions.view_bank_statement_line_list
msgid "Glob. Id"
-msgstr ""
+msgstr "Glob. Id"
#. module: account_bank_statement_extensions
#: field:account.bank.statement.line,globalisation_id:0
@@ -318,7 +318,7 @@ msgstr "Muistiinpanot"
#. module: account_bank_statement_extensions
#: field:account.bank.statement.line.global,name:0
msgid "OBI"
-msgstr ""
+msgstr "OBI"
#. module: account_bank_statement_extensions
#: help:account.bank.statement.line.global,name:0
diff --git a/addons/account_bank_statement_extensions/i18n/hi.po b/addons/account_bank_statement_extensions/i18n/hi.po
index 90a6af960be37..dcdb078a549ec 100644
--- a/addons/account_bank_statement_extensions/i18n/hi.po
+++ b/addons/account_bank_statement_extensions/i18n/hi.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-08-01 06:41+0000\n"
+"PO-Revision-Date: 2016-09-11 05:12+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -20,7 +20,7 @@ msgstr ""
#. module: account_bank_statement_extensions
#: field:account.bank.statement.line.global,amount:0
msgid "Amount"
-msgstr ""
+msgstr "रकम"
#. module: account_bank_statement_extensions
#: view:cancel.statement.line:account_bank_statement_extensions.view_cancel_statement_line
@@ -55,7 +55,7 @@ msgstr ""
#. module: account_bank_statement_extensions
#: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line
msgid "Bank Statement Line"
-msgstr ""
+msgstr " बैंक विवरण रेखा"
#. module: account_bank_statement_extensions
#: field:account.bank.statement.line.global,bank_statement_line_ids:0
@@ -177,14 +177,14 @@ msgstr ""
#: field:cancel.statement.line,create_uid:0
#: field:confirm.statement.line,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: account_bank_statement_extensions
#: field:account.bank.statement.line.global,create_date:0
#: field:cancel.statement.line,create_date:0
#: field:confirm.statement.line,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: account_bank_statement_extensions
#: view:account.bank.statement.line:account_bank_statement_extensions.view_bank_statement_line_filter
@@ -233,7 +233,7 @@ msgstr ""
#. module: account_bank_statement_extensions
#: view:account.bank.statement.line:account_bank_statement_extensions.view_bank_statement_line_filter
msgid "Extended Filters..."
-msgstr ""
+msgstr "विस्तारित फिल्टर्स"
#. module: account_bank_statement_extensions
#: view:account.bank.statement.line:account_bank_statement_extensions.view_bank_statement_line_list
@@ -261,14 +261,14 @@ msgstr ""
#. module: account_bank_statement_extensions
#: view:account.bank.statement.line:account_bank_statement_extensions.view_bank_statement_line_filter
msgid "Group By"
-msgstr ""
+msgstr "वर्गीकरण का आधार"
#. module: account_bank_statement_extensions
#: field:account.bank.statement.line.global,id:0
#: field:cancel.statement.line,id:0 field:confirm.statement.line,id:0
#: field:report.account_bank_statement_extensions.report_bankstatementbalance,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: account_bank_statement_extensions
#: selection:account.bank.statement.line.global,type:0
@@ -286,14 +286,14 @@ msgstr "पत्रिका"
#: field:cancel.statement.line,write_uid:0
#: field:confirm.statement.line,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: account_bank_statement_extensions
#: field:account.bank.statement.line.global,write_date:0
#: field:cancel.statement.line,write_date:0
#: field:confirm.statement.line,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: account_bank_statement_extensions
#: selection:account.bank.statement.line.global,type:0
diff --git a/addons/account_bank_statement_extensions/i18n/lv.po b/addons/account_bank_statement_extensions/i18n/lv.po
index 0e6a21775c441..43a53733d3f83 100644
--- a/addons/account_bank_statement_extensions/i18n/lv.po
+++ b/addons/account_bank_statement_extensions/i18n/lv.po
@@ -4,13 +4,14 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# Nauris Sedlers , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:42+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-08-24 14:27+0000\n"
+"Last-Translator: Nauris Sedlers \n"
"Language-Team: Latvian (http://www.transifex.com/odoo/odoo-8/language/lv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -46,7 +47,7 @@ msgstr "Bankas konta izraksts"
#. module: account_bank_statement_extensions
#: model:ir.actions.report.xml,name:account_bank_statement_extensions.action_bank_statement_balance_report
msgid "Bank Statement Balances"
-msgstr ""
+msgstr "Konta Izraksta Balanss"
#. module: account_bank_statement_extensions
#: view:website:account_bank_statement_extensions.report_bankstatementbalance
@@ -319,7 +320,7 @@ msgstr "OBI"
#. module: account_bank_statement_extensions
#: help:account.bank.statement.line.global,name:0
msgid "Originator to Beneficiary Information"
-msgstr ""
+msgstr "Nosūtītāja Informācija Saņēmējam"
#. module: account_bank_statement_extensions
#: field:account.bank.statement.line.global,parent_id:0
diff --git a/addons/account_bank_statement_extensions/i18n/zh_CN.po b/addons/account_bank_statement_extensions/i18n/zh_CN.po
index 28ddf4b1c1083..db01d65c17868 100644
--- a/addons/account_bank_statement_extensions/i18n/zh_CN.po
+++ b/addons/account_bank_statement_extensions/i18n/zh_CN.po
@@ -5,13 +5,14 @@
# Translators:
# FIRST AUTHOR , 2014
# Jeffery Chenn , 2016
+# liAnGjiA , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-17 12:22+0000\n"
-"Last-Translator: Jeffery Chenn \n"
+"PO-Revision-Date: 2016-09-03 18:06+0000\n"
+"Last-Translator: liAnGjiA \n"
"Language-Team: Chinese (China) (http://www.transifex.com/odoo/odoo-8/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -391,4 +392,4 @@ msgstr "取消所选单据行"
#. module: account_bank_statement_extensions
#: view:confirm.statement.line:account_bank_statement_extensions.view_confirm_statement_line
msgid "or"
-msgstr "or"
+msgstr "或"
diff --git a/addons/account_budget/i18n/hi.po b/addons/account_budget/i18n/hi.po
index e65aee1e33684..201d09cb5e49a 100644
--- a/addons/account_budget/i18n/hi.po
+++ b/addons/account_budget/i18n/hi.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-11-05 11:08+0000\n"
+"PO-Revision-Date: 2016-09-09 21:47+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -58,7 +58,7 @@ msgstr ""
#: view:account.budget.post:account_budget.view_budget_post_form
#: field:account.budget.post,account_ids:0
msgid "Accounts"
-msgstr ""
+msgstr "खाते"
#. module: account_budget
#: view:website:account_budget.report_analyticaccountbudget
@@ -76,7 +76,7 @@ msgstr ""
#: model:ir.model,name:account_budget.model_account_analytic_account
#: view:website:account_budget.report_analyticaccountbudget
msgid "Analytic Account"
-msgstr ""
+msgstr "विश्लेषणात्मक खाता"
#. module: account_budget
#: view:website:account_budget.report_analyticaccountbudget
@@ -203,7 +203,7 @@ msgstr "पुष्टि"
#: field:crossovered.budget,create_uid:0
#: field:crossovered.budget.lines,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: account_budget
#: field:account.budget.analytic,create_date:0
@@ -214,12 +214,12 @@ msgstr ""
#: field:crossovered.budget,create_date:0
#: field:crossovered.budget.lines,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: account_budget
#: view:website:account_budget.report_analyticaccountbudget
msgid "Currency"
-msgstr ""
+msgstr "मुद्रा"
#. module: account_budget
#: view:website:account_budget.report_budget
@@ -285,7 +285,7 @@ msgstr "त्रुटि!"
#: field:report.account_budget.report_budget,id:0
#: field:report.account_budget.report_crossoveredbudget,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: account_budget
#: field:account.budget.analytic,write_uid:0
@@ -296,7 +296,7 @@ msgstr ""
#: field:crossovered.budget,write_uid:0
#: field:crossovered.budget.lines,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: account_budget
#: field:account.budget.analytic,write_date:0
@@ -307,7 +307,7 @@ msgstr ""
#: field:crossovered.budget,write_date:0
#: field:crossovered.budget.lines,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: account_budget
#: field:account.budget.post,name:0 field:crossovered.budget,name:0
diff --git a/addons/account_budget/i18n/tr.po b/addons/account_budget/i18n/tr.po
index 64ca32661df06..b41769af77e4f 100644
--- a/addons/account_budget/i18n/tr.po
+++ b/addons/account_budget/i18n/tr.po
@@ -4,13 +4,13 @@
#
# Translators:
# FIRST AUTHOR , 2014
-# Murat Kaplan , 2015
+# Murat Kaplan , 2015-2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-12-15 15:50+0000\n"
+"PO-Revision-Date: 2016-10-19 12:43+0000\n"
"Last-Translator: Murat Kaplan \n"
"Language-Team: Turkish (http://www.transifex.com/odoo/odoo-8/language/tr/)\n"
"MIME-Version: 1.0\n"
@@ -353,7 +353,7 @@ msgstr "Planlanan Mik"
#: field:crossovered.budget.lines,practical_amount:0
#: view:website:account_budget.report_budget
msgid "Practical Amount"
-msgstr "Gerçekçi Tutar"
+msgstr "Gerçekleşen Tutar"
#. module: account_budget
#: view:website:account_budget.report_analyticaccountbudget
diff --git a/addons/account_budget/i18n/uk.po b/addons/account_budget/i18n/uk.po
index 5859a3591120f..0a4cd342b9591 100644
--- a/addons/account_budget/i18n/uk.po
+++ b/addons/account_budget/i18n/uk.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-04-23 11:37+0000\n"
+"PO-Revision-Date: 2016-10-29 13:32+0000\n"
"Last-Translator: Bohdan Lisnenko\n"
"Language-Team: Ukrainian (http://www.transifex.com/odoo/odoo-8/language/uk/)\n"
"MIME-Version: 1.0\n"
@@ -52,7 +52,7 @@ msgstr ""
#: model:ir.model,name:account_budget.model_account_budget_analytic
#: model:ir.model,name:account_budget.model_account_budget_report
msgid "Account Budget report for analytic account"
-msgstr ""
+msgstr "Звіт по бюджету для аналітичного рахунку"
#. module: account_budget
#: view:account.budget.post:account_budget.view_budget_post_form
diff --git a/addons/account_budget/i18n/zh_CN.po b/addons/account_budget/i18n/zh_CN.po
index b3d9201899a25..987054e087ee6 100644
--- a/addons/account_budget/i18n/zh_CN.po
+++ b/addons/account_budget/i18n/zh_CN.po
@@ -6,6 +6,7 @@
# FIRST AUTHOR , 2014
# Jeffery Chenn , 2016
# Jeffery Chenn , 2016
+# liAnGjiA , 2016
# 卓忆科技 , 2015
# 卓忆科技 , 2015
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-22 02:43+0000\n"
+"PO-Revision-Date: 2016-09-03 18:06+0000\n"
"Last-Translator: liAnGjiA \n"
"Language-Team: Chinese (China) (http://www.transifex.com/odoo/odoo-8/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
@@ -500,7 +501,7 @@ msgstr "在"
#: view:account.budget.crossvered.summary.report:account_budget.account_budget_crossvered_summary_report_view
#: view:account.budget.report:account_budget.account_budget_report_view
msgid "or"
-msgstr "or"
+msgstr "或"
#. module: account_budget
#: view:website:account_budget.report_analyticaccountbudget
diff --git a/addons/account_cancel/i18n/bg.po b/addons/account_cancel/i18n/bg.po
index eafbee9fa2889..25318b3a44f29 100644
--- a/addons/account_cancel/i18n/bg.po
+++ b/addons/account_cancel/i18n/bg.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-08-03 18:10+0000\n"
-"PO-Revision-Date: 2016-07-27 20:35+0000\n"
+"PO-Revision-Date: 2016-08-28 16:55+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Bulgarian (http://www.transifex.com/odoo/odoo-8/language/bg/)\n"
"MIME-Version: 1.0\n"
@@ -44,9 +44,9 @@ msgstr "Отказ от създаване на Фактура"
#: code:addons/account_cancel/models/account_bank_statement.py:22
#, python-format
msgid "Please set the bank statement to New before canceling."
-msgstr ""
+msgstr "Моля установете банковото извлечение на Нов преди Отказ."
#. module: account_cancel
#: view:account.bank.statement:account_cancel.bank_statement_draft_form_inherit
msgid "Reset to New"
-msgstr ""
+msgstr "Установи в Нов"
diff --git a/addons/account_cancel/i18n/cs.po b/addons/account_cancel/i18n/cs.po
index 5902f21bcf644..405024aaa6723 100644
--- a/addons/account_cancel/i18n/cs.po
+++ b/addons/account_cancel/i18n/cs.po
@@ -4,13 +4,15 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# Jaroslav Helemik Nemec , 2016
+# Ladislav Tomm , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-08-03 18:10+0000\n"
-"PO-Revision-Date: 2015-08-05 09:11+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-11-24 08:25+0000\n"
+"Last-Translator: Jaroslav Helemik Nemec \n"
"Language-Team: Czech (http://www.transifex.com/odoo/odoo-8/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -21,12 +23,12 @@ msgstr ""
#. module: account_cancel
#: model:ir.model,name:account_cancel.model_account_bank_statement
msgid "Bank Statement"
-msgstr ""
+msgstr "Bankovní výpis"
#. module: account_cancel
#: model:ir.model,name:account_cancel.model_account_bank_statement_line
msgid "Bank Statement Line"
-msgstr ""
+msgstr "Řádek bankovního výpisu"
#. module: account_cancel
#: view:account.bank.statement:account_cancel.bank_statement_cancel_form_inherit
@@ -43,9 +45,9 @@ msgstr "Zrušit fakturu"
#: code:addons/account_cancel/models/account_bank_statement.py:22
#, python-format
msgid "Please set the bank statement to New before canceling."
-msgstr ""
+msgstr "Před zrušením nastavte prosím bankovní výpis na Nový."
#. module: account_cancel
#: view:account.bank.statement:account_cancel.bank_statement_draft_form_inherit
msgid "Reset to New"
-msgstr ""
+msgstr "Restartovat na nový"
diff --git a/addons/account_cancel/i18n/hi.po b/addons/account_cancel/i18n/hi.po
index 9e47016ce1882..1c6d5e8adbedd 100644
--- a/addons/account_cancel/i18n/hi.po
+++ b/addons/account_cancel/i18n/hi.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-08-03 18:10+0000\n"
-"PO-Revision-Date: 2016-06-02 11:00+0000\n"
+"PO-Revision-Date: 2016-09-09 21:47+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -25,7 +25,7 @@ msgstr ""
#. module: account_cancel
#: model:ir.model,name:account_cancel.model_account_bank_statement_line
msgid "Bank Statement Line"
-msgstr ""
+msgstr " बैंक विवरण रेखा"
#. module: account_cancel
#: view:account.bank.statement:account_cancel.bank_statement_cancel_form_inherit
diff --git a/addons/account_cancel/i18n/it.po b/addons/account_cancel/i18n/it.po
index 0778dc7e2e91d..bd4a9b9e9a7ec 100644
--- a/addons/account_cancel/i18n/it.po
+++ b/addons/account_cancel/i18n/it.po
@@ -4,14 +4,15 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# Luca Cantarini , 2016
# Paolo Valier, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-08-03 18:10+0000\n"
-"PO-Revision-Date: 2016-03-11 18:02+0000\n"
-"Last-Translator: Paolo Valier\n"
+"PO-Revision-Date: 2016-09-16 19:31+0000\n"
+"Last-Translator: Luca Cantarini \n"
"Language-Team: Italian (http://www.transifex.com/odoo/odoo-8/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -22,12 +23,12 @@ msgstr ""
#. module: account_cancel
#: model:ir.model,name:account_cancel.model_account_bank_statement
msgid "Bank Statement"
-msgstr "Movimento Bancario"
+msgstr "Estratto Conto Bancario"
#. module: account_cancel
#: model:ir.model,name:account_cancel.model_account_bank_statement_line
msgid "Bank Statement Line"
-msgstr "Riga Movimento Bancario"
+msgstr "Riga Estratto Conto Bancario"
#. module: account_cancel
#: view:account.bank.statement:account_cancel.bank_statement_cancel_form_inherit
diff --git a/addons/account_cancel/i18n/ro.po b/addons/account_cancel/i18n/ro.po
index 31320761cb3ab..7dc5a8dc8ab00 100644
--- a/addons/account_cancel/i18n/ro.po
+++ b/addons/account_cancel/i18n/ro.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-08-03 18:10+0000\n"
-"PO-Revision-Date: 2015-09-02 05:58+0000\n"
+"PO-Revision-Date: 2016-10-29 00:02+0000\n"
"Last-Translator: Dorin Hongu \n"
"Language-Team: Romanian (http://www.transifex.com/odoo/odoo-8/language/ro/)\n"
"MIME-Version: 1.0\n"
@@ -44,7 +44,7 @@ msgstr "Anulati Factura"
#: code:addons/account_cancel/models/account_bank_statement.py:22
#, python-format
msgid "Please set the bank statement to New before canceling."
-msgstr ""
+msgstr "Setați extrasul de bancă la Nou înainte de anulare."
#. module: account_cancel
#: view:account.bank.statement:account_cancel.bank_statement_draft_form_inherit
diff --git a/addons/account_chart/i18n/af.po b/addons/account_chart/i18n/af.po
new file mode 100644
index 0000000000000..63a3110e70360
--- /dev/null
+++ b/addons/account_chart/i18n/af.po
@@ -0,0 +1,28 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+# * account_chart
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: support@openerp.com\n"
+"POT-Creation-Date: 2011-01-11 11:14:30+0000\n"
+"PO-Revision-Date: 2015-05-18 11:25+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Afrikaans (http://www.transifex.com/odoo/odoo-8/language/af/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: af\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_chart
+#: model:ir.module.module,description:account_chart.module_meta_information
+msgid "Remove minimal account chart"
+msgstr ""
+
+#. module: account_chart
+#: model:ir.module.module,shortdesc:account_chart.module_meta_information
+msgid "Charts of Accounts"
+msgstr ""
diff --git a/addons/account_chart/i18n/es_BO.po b/addons/account_chart/i18n/es_BO.po
new file mode 100644
index 0000000000000..ea4f78bb255c2
--- /dev/null
+++ b/addons/account_chart/i18n/es_BO.po
@@ -0,0 +1,28 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+# * account_chart
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: support@openerp.com\n"
+"POT-Creation-Date: 2011-01-11 11:14:30+0000\n"
+"PO-Revision-Date: 2015-05-18 11:25+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-8/language/es_BO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_BO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_chart
+#: model:ir.module.module,description:account_chart.module_meta_information
+msgid "Remove minimal account chart"
+msgstr ""
+
+#. module: account_chart
+#: model:ir.module.module,shortdesc:account_chart.module_meta_information
+msgid "Charts of Accounts"
+msgstr ""
diff --git a/addons/account_chart/i18n/es_DO.po b/addons/account_chart/i18n/es_DO.po
new file mode 100644
index 0000000000000..9e274cdad4e9c
--- /dev/null
+++ b/addons/account_chart/i18n/es_DO.po
@@ -0,0 +1,28 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+# * account_chart
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: support@openerp.com\n"
+"POT-Creation-Date: 2011-01-11 11:14:30+0000\n"
+"PO-Revision-Date: 2015-05-18 11:25+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/odoo/odoo-8/language/es_DO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_DO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_chart
+#: model:ir.module.module,description:account_chart.module_meta_information
+msgid "Remove minimal account chart"
+msgstr ""
+
+#. module: account_chart
+#: model:ir.module.module,shortdesc:account_chart.module_meta_information
+msgid "Charts of Accounts"
+msgstr ""
diff --git a/addons/account_chart/i18n/es_PE.po b/addons/account_chart/i18n/es_PE.po
new file mode 100644
index 0000000000000..d370cfa51ec5b
--- /dev/null
+++ b/addons/account_chart/i18n/es_PE.po
@@ -0,0 +1,28 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+# * account_chart
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: support@openerp.com\n"
+"POT-Creation-Date: 2011-01-11 11:14:30+0000\n"
+"PO-Revision-Date: 2015-05-18 11:25+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-8/language/es_PE/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_PE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_chart
+#: model:ir.module.module,description:account_chart.module_meta_information
+msgid "Remove minimal account chart"
+msgstr ""
+
+#. module: account_chart
+#: model:ir.module.module,shortdesc:account_chart.module_meta_information
+msgid "Charts of Accounts"
+msgstr ""
diff --git a/addons/account_chart/i18n/he.po b/addons/account_chart/i18n/he.po
new file mode 100644
index 0000000000000..3453b59a39d7c
--- /dev/null
+++ b/addons/account_chart/i18n/he.po
@@ -0,0 +1,28 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+# * account_chart
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: support@openerp.com\n"
+"POT-Creation-Date: 2011-01-11 11:14:30+0000\n"
+"PO-Revision-Date: 2015-05-18 11:25+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Hebrew (http://www.transifex.com/odoo/odoo-8/language/he/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: he\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_chart
+#: model:ir.module.module,description:account_chart.module_meta_information
+msgid "Remove minimal account chart"
+msgstr ""
+
+#. module: account_chart
+#: model:ir.module.module,shortdesc:account_chart.module_meta_information
+msgid "Charts of Accounts"
+msgstr ""
diff --git a/addons/account_check_writing/i18n/ca.po b/addons/account_check_writing/i18n/ca.po
index cb7f726a993cb..5493c654f2124 100644
--- a/addons/account_check_writing/i18n/ca.po
+++ b/addons/account_check_writing/i18n/ca.po
@@ -3,13 +3,14 @@
# * account_check_writing
#
# Translators:
+# RGB Consulting , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-10-14 16:50+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-08-22 06:33+0000\n"
+"Last-Translator: RGB Consulting \n"
"Language-Team: Catalan (http://www.transifex.com/odoo/odoo-8/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -30,7 +31,7 @@ msgid ""
" invoices or bills.\n"
" \n"
" "
-msgstr ""
+msgstr "\nPremi per a crear un nou xec.\n
\nEl formulari de pagament per xec permet gestionar el pagament que fa als seus proveïdors utilitzant xecs. Quan es selecciona un proveïdor, un mètode de pagament i un import pel pagament, Odoo proposarà conciliar el pagament amb les factures de proveïdor o rebuts pendents.
\n "
#. module: account_check_writing
#: model:ir.model,name:account_check_writing.model_account_voucher
@@ -40,17 +41,17 @@ msgstr "Comprovants comptables"
#. module: account_check_writing
#: field:account.voucher,allow_check:0
msgid "Allow Check Writing"
-msgstr ""
+msgstr "Permetre escriure xecs"
#. module: account_check_writing
#: field:account.journal,allow_check_writing:0
msgid "Allow Check writing"
-msgstr ""
+msgstr "Permetre escriure xecs"
#. module: account_check_writing
#: field:account.voucher,amount_in_word:0
msgid "Amount in Word"
-msgstr ""
+msgstr "Quantitat en paraules"
#. module: account_check_writing
#: view:account.check.write:account_check_writing.view_account_check_write
@@ -66,27 +67,27 @@ msgstr "Comprova"
#. module: account_check_writing
#: field:res.company,check_layout:0
msgid "Check Layout"
-msgstr ""
+msgstr "Disposició de xec"
#. module: account_check_writing
#: help:account.journal,use_preprint_check:0
msgid "Check if you use a preformated sheet for check"
-msgstr ""
+msgstr "Marqui aquesta casella si utilitza una plantilla preformatada per al xec"
#. module: account_check_writing
#: selection:res.company,check_layout:0
msgid "Check in middle"
-msgstr ""
+msgstr "Xec al mig"
#. module: account_check_writing
#: selection:res.company,check_layout:0
msgid "Check on Top"
-msgstr ""
+msgstr "Xec a la part de dalt"
#. module: account_check_writing
#: selection:res.company,check_layout:0
msgid "Check on bottom"
-msgstr ""
+msgstr "Xec a la part de sota"
#. module: account_check_writing
#: help:res.company,check_layout:0
@@ -94,12 +95,12 @@ msgid ""
"Check on top is compatible with Quicken, QuickBooks and Microsoft Money. "
"Check in middle is compatible with Peachtree, ACCPAC and DacEasy. Check on "
"bottom is compatible with Peachtree, ACCPAC and DacEasy only"
-msgstr ""
+msgstr "El xec a la part de dalt es compatible amb Quicken, Quickbooks i Microsoft Money. Xec al mig és compatible amb Peachtree, ACCPAC i DacEasy. Xec a la part de baix és compatible amb Peachtree, ACCPAC i DacEasy exclusivament"
#. module: account_check_writing
#: help:account.journal,allow_check_writing:0
msgid "Check this if the journal is to be used for writing checks."
-msgstr ""
+msgstr "Revisi si el diari és utilitzat per registrar xecs"
#. module: account_check_writing
#: model:ir.model,name:account_check_writing.model_res_company
@@ -161,19 +162,19 @@ msgstr "Actualitzat per última vegada el dia"
#. module: account_check_writing
#: field:account.check.write,check_number:0
msgid "Next Check Number"
-msgstr ""
+msgstr "Núm. del pròxim xec"
#. module: account_check_writing
#: code:addons/account_check_writing/account_voucher.py:77
#, python-format
msgid "No check selected "
-msgstr ""
+msgstr "Cap xec seleccionat"
#. module: account_check_writing
#: code:addons/account_check_writing/wizard/account_check_batch_printing.py:59
#, python-format
msgid "One of the printed check already got a number."
-msgstr ""
+msgstr "Un dels xecs impresos ja té un número"
#. module: account_check_writing
#: view:website:account_check_writing.report_check
@@ -193,40 +194,40 @@ msgstr "Pagament"
#. module: account_check_writing
#: model:ir.model,name:account_check_writing.model_account_check_write
msgid "Prin Check in Batch"
-msgstr ""
+msgstr "Imprimir xecs en lot"
#. module: account_check_writing
#: view:account.check.write:account_check_writing.view_account_check_write
#: view:account.voucher:account_check_writing.view_vendor_payment_check_form
msgid "Print Check"
-msgstr ""
+msgstr "Imprimir xec"
#. module: account_check_writing
#: model:ir.actions.act_window,name:account_check_writing.action_account_check_write
msgid "Print Check in Batch"
-msgstr ""
+msgstr "Imprimir xecs en lot"
#. module: account_check_writing
#: code:addons/account_check_writing/account_voucher.py:77
#, python-format
msgid "Printing error"
-msgstr ""
+msgstr "Error de impressió"
#. module: account_check_writing
#: help:account.check.write,check_number:0
msgid "The number of the next check number to be printed."
-msgstr ""
+msgstr "Núm. del següent xec a ser imprès."
#. module: account_check_writing
#: field:account.journal,use_preprint_check:0
msgid "Use Preprinted Check"
-msgstr ""
+msgstr "Utilitzar xec impres"
#. module: account_check_writing
#: model:ir.actions.act_window,name:account_check_writing.action_write_check
#: model:ir.ui.menu,name:account_check_writing.menu_action_write_check
msgid "Write Checks"
-msgstr ""
+msgstr "Escriure xecs"
#. module: account_check_writing
#: view:account.check.write:account_check_writing.view_account_check_write
diff --git a/addons/account_check_writing/i18n/hi.po b/addons/account_check_writing/i18n/hi.po
index 24a3cdae39fcc..f62d1e7aef399 100644
--- a/addons/account_check_writing/i18n/hi.po
+++ b/addons/account_check_writing/i18n/hi.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:43+0000\n"
+"PO-Revision-Date: 2016-09-01 20:43+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -109,12 +109,12 @@ msgstr ""
#. module: account_check_writing
#: field:account.check.write,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: account_check_writing
#: field:account.check.write,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: account_check_writing
#: view:website:account_check_writing.report_check
@@ -141,7 +141,7 @@ msgstr "त्रुटि!"
#: field:account.check.write,id:0
#: field:report.account_check_writing.report_check,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: account_check_writing
#: model:ir.model,name:account_check_writing.model_account_journal
@@ -151,12 +151,12 @@ msgstr "पत्रिका"
#. module: account_check_writing
#: field:account.check.write,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: account_check_writing
#: field:account.check.write,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: account_check_writing
#: field:account.check.write,check_number:0
diff --git a/addons/account_check_writing/i18n/hr.po b/addons/account_check_writing/i18n/hr.po
index 3a3bad7c23b00..2656388abbec7 100644
--- a/addons/account_check_writing/i18n/hr.po
+++ b/addons/account_check_writing/i18n/hr.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:43+0000\n"
+"PO-Revision-Date: 2016-09-30 06:47+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Croatian (http://www.transifex.com/odoo/odoo-8/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -162,7 +162,7 @@ msgstr "Vrijeme promjene"
#. module: account_check_writing
#: field:account.check.write,check_number:0
msgid "Next Check Number"
-msgstr ""
+msgstr "Sljedeći broj čeka"
#. module: account_check_writing
#: code:addons/account_check_writing/account_voucher.py:77
diff --git a/addons/account_check_writing/i18n/uk.po b/addons/account_check_writing/i18n/uk.po
index 9d007ea9149fe..9a0b685796cdb 100644
--- a/addons/account_check_writing/i18n/uk.po
+++ b/addons/account_check_writing/i18n/uk.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-08-15 17:09+0000\n"
+"PO-Revision-Date: 2016-08-24 07:10+0000\n"
"Last-Translator: Bohdan Lisnenko\n"
"Language-Team: Ukrainian (http://www.transifex.com/odoo/odoo-8/language/uk/)\n"
"MIME-Version: 1.0\n"
@@ -66,7 +66,7 @@ msgstr ""
#. module: account_check_writing
#: field:res.company,check_layout:0
msgid "Check Layout"
-msgstr ""
+msgstr "Перевірити компонування"
#. module: account_check_writing
#: help:account.journal,use_preprint_check:0
diff --git a/addons/account_followup/i18n/bs.po b/addons/account_followup/i18n/bs.po
index 784b34519ace9..035d3951819da 100644
--- a/addons/account_followup/i18n/bs.po
+++ b/addons/account_followup/i18n/bs.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-10-11 16:53+0000\n"
+"PO-Revision-Date: 2016-11-21 12:55+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Bosnian (http://www.transifex.com/odoo/odoo-8/language/bs/)\n"
"MIME-Version: 1.0\n"
@@ -477,7 +477,7 @@ msgstr "Obećanje plaćanja kupca"
#. module: account_followup
#: view:website:account_followup.report_followup
msgid "Customer ref:"
-msgstr ""
+msgstr "Kupčeva ref:"
#. module: account_followup
#: view:website:account_followup.report_followup
diff --git a/addons/account_followup/i18n/ca.po b/addons/account_followup/i18n/ca.po
index 0d00168c5b4a8..1ad40650fcf2a 100644
--- a/addons/account_followup/i18n/ca.po
+++ b/addons/account_followup/i18n/ca.po
@@ -4,13 +4,14 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# RGB Consulting , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-01 09:50+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-08-23 06:18+0000\n"
+"Last-Translator: RGB Consulting \n"
"Language-Team: Catalan (http://www.transifex.com/odoo/odoo-8/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -49,7 +50,7 @@ msgid ""
"\n"
"\n"
" "
-msgstr ""
+msgstr "\n\n\n
Estimat/da ${object.name},
\n
\nSi no hi ha hagut cap equivocació de part nostra, sembla que l'import continua sense pagar. Si us plau, prengui les mesures apropiades per realitzar aquest pagament en els pròxims 8 dies.\n\nSi ha realitzat el pagament després que s'hagi enviat aquest correu, si us plau, ignori aquest missatge. No dubti en contactar amb el nostre departament de comptabilitat.\n\n
\n
\nSalutacions cordials,\n
\n
\n${user.name}\n\n
\n
\n\n\n${object.get_followup_table_html() | safe}\n\n
\n\n
\n "
#. module: account_followup
#: model:email.template,body_html:account_followup.email_template_account_followup_level2
@@ -80,7 +81,7 @@ msgid ""
"\n"
"\n"
" "
-msgstr ""
+msgstr "\n\n \n
Estimat/da ${object.name},
\n
\n Tot i els diversos recordatoris, el seu compte encara no està arreglat.\nA menys que faci el pagament complet en els pròxims 8 dies, podran prendre's accions legals per la recuperació del deute sense més notificacions.\nConfiem que aquesta acció no serà necessària i els detalls dels pagaments vençuts es mostren a continuació. En cas que tingui alguna consulta respecte a aquest assumpte, no dubti en contactar amb el nostre departament de comptabilitat.\n
\n
\nSalutacions cordials,\n
\n
\n${user.name}\n
\n
\n\n\n${object.get_followup_table_html() | safe}\n\n
\n\n
\n "
#. module: account_followup
#: model:email.template,body_html:account_followup.email_template_account_followup_default
@@ -108,7 +109,7 @@ msgid ""
"
\n"
"\n"
" "
-msgstr ""
+msgstr "\n\n\n
Estimat/da ${object.name},
\n
\nSi no hi ha hagut cap equivocació de part nostra, sembla que l'import continua sense pagar. Si us plau, prengui les mesures apropiades per realitzar aquest pagament en els pròxims 8 dies.\n\nSi ha realitzat el pagament després que s'hagi enviat aquest correu, si us plau, ignori aquest missatge. No dubti en contactar amb el nostre departament de comptabilitat.\n\n
\n
\nSalutacions cordials,\n
\n
\n${user.name}\n\n
\n
\n\n\n${object.get_followup_table_html() | safe}\n\n
\n\n
\n "
#. module: account_followup
#: model:email.template,body_html:account_followup.email_template_account_followup_level1
@@ -142,7 +143,7 @@ msgid ""
"\n"
"\n"
" "
-msgstr ""
+msgstr "\n\n \n
Estimat/da ${object.name},
\n
\n Estem decebuts de veure que tot i que li hem enviat un recordatori, el seu compte està ara seriosament endarrerit.\n\n És essencial que realitzi el pagament immediatament, o del contrari haurem de considerar parar el seu compte, el que significa que no podrem subministrar més béns/serveis a la seva empresa. \n\nSi us plau, prengui les mesures adequades per realitzar el pagament en els pròxims 8 dies. \n\nSi hi ha algun problema amb el pagament de la factura del que no tenim coneixement, no dubti en contactar amb el nostre departament de comptabilitat, perquè puguem resoldre l'assumpte rapidament.\n\nS'acompanyen els detalls dels pagaments vençuts a continuació. \n
\n
\nSalutacions cordials, \n
\n
\n${user.name}\n \n
\n
\n\n${object.get_followup_table_html() | safe}\n\n
\n\n
\n "
#. module: account_followup
#: model:account_followup.followup.line,description:account_followup.demo_followup_line3
@@ -159,7 +160,7 @@ msgid ""
"In case of any queries concerning this matter, do not hesitate to contact our accounting department.\n"
"\n"
"Best Regards,\n"
-msgstr ""
+msgstr "\nEstimat/da %(partner_name)s,\n\nTot i els diversos recordatoris, el seu compte encara no està arreglat.\n\nA menys que faci el pagament complet en els pròxims 8 dies, podran prendre's accions legals per la recuperació del deute sense més notificacions.\n\nConfiem que aquesta acció no serà necessària i els detalls dels pagaments vençuts es mostren a continuació.\n\nEn cas que tingui alguna consulta respecte a aquest assumpte, no dubti en contactar amb el nostre departament de comptabilitat.\n\nSalutacions cordials,\n"
#. module: account_followup
#: model:account_followup.followup.line,description:account_followup.demo_followup_line4
@@ -178,7 +179,7 @@ msgid ""
"\n"
"Best Regards,\n"
" "
-msgstr ""
+msgstr "\nEstimat/da %(partner_name)s,\n\nTot i els diversos recordatoris, el seu compte encara no està arreglat.\n\nA menys que faci el pagament complet en els pròxims 8 dies, podran prendre's accions legals per la recuperació del deute sense més notificacions.\n\nConfiem que aquesta acció no serà necessària i els detalls dels pagaments vençuts es mostren a continuació.\n\nEn cas que tingui alguna consulta respecte a aquest assumpte, no dubti en contactar amb el nostre departament de comptabilitat.\n\nSalutacions cordials,"
#. module: account_followup
#: model:account_followup.followup.line,description:account_followup.demo_followup_line1
@@ -191,7 +192,7 @@ msgid ""
"Would your payment have been carried out after this mail was sent, please ignore this message. Do not hesitate to contact our accounting department. \n"
"\n"
"Best Regards,\n"
-msgstr ""
+msgstr "\nEstimat/da %(partner_name)s,\n\nSi no hi ha hagut cap equivocació per part nostra, sembla que el següent import segueix sense pagar. Si us plau, prengui les mesures apropiades per realitzar aquest pagament en els pròxims 8 dies.\n\nSi ha realitzat el pagament després que s'enviï aquest correu, si us plau, ignori aquest missatge. No dubti en contactar amb el nostre departament de comptabilitat.\n\nSalutacions cordials,\n"
#. module: account_followup
#: model:account_followup.followup.line,description:account_followup.demo_followup_line2
@@ -209,43 +210,43 @@ msgid ""
"Details of due payments is printed below.\n"
"\n"
"Best Regards,\n"
-msgstr ""
+msgstr "\nEstimat %(partner_name)s,\n\n\nEstem decebuts de veure que tot i que li hem enviat un recordatori, el seu compte està ara seriosament endarrerit.\n\nÉs essencial que realitzi el pagament immediatament, o del contrari haurem de considerar parar el seu compte, el que significa que no podrem subministrar més béns/serveis a la seva empresa.\n\nSi us plau, prengui les mesures adequades per realitzar el pagament en els pròxims 8 dies.\n\nSi hi ha algun problema amb el pagament de la factura del que no tenim coneixement, no dubti en contactar amb el nostre departament de comptabilitat, perquè puguem resoldre l'assumpte rapidament.\n\nS'acompanyen els detalls dels pagaments vençuts a continuació.\n\nSalutacions cordials,\n"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:174
#, python-format
msgid " email(s) sent"
-msgstr ""
+msgstr "e-mail(s) enviats"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:176
#, python-format
msgid " email(s) should have been sent, but "
-msgstr ""
+msgstr "e-mail(s) poden haver set enviats, però"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:176
#, python-format
msgid " had unknown email address(es)"
-msgstr ""
+msgstr "te direcció(ns) de correu desconeguda(des)"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:177
#, python-format
msgid " letter(s) in report"
-msgstr ""
+msgstr "carta(es) a l'informe"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:177
#, python-format
msgid " manual action(s) assigned:"
-msgstr ""
+msgstr "acció(ns) manual(s) assignada(des):"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:171
#, python-format
msgid " will be sent"
-msgstr ""
+msgstr "serà enviat"
#. module: account_followup
#: model:email.template,subject:account_followup.email_template_account_followup_default
@@ -253,60 +254,60 @@ msgstr ""
#: model:email.template,subject:account_followup.email_template_account_followup_level1
#: model:email.template,subject:account_followup.email_template_account_followup_level2
msgid "${user.company_id.name} Payment Reminder"
-msgstr ""
+msgstr "${user.company_id.name} Recordatori de pagament"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
msgid "%(company_name)s"
-msgstr ""
+msgstr "%(company_name)s"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
msgid "%(date)s"
-msgstr ""
+msgstr "%(date)s"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
msgid "%(partner_name)s"
-msgstr ""
+msgstr "%(partner_name)s"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
msgid "%(user_signature)s"
-msgstr ""
+msgstr "%(user_signature)s"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:234
#, python-format
msgid "%s partners have no credits and as such the action is cleared"
-msgstr ""
+msgstr "%s empreses no tenen crèdit i per això l'acció s'ha netejat"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid ""
", the latest payment follow-up\n"
" was:"
-msgstr ""
+msgstr ", l'últim seguiment era:"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
msgid ": Current Date"
-msgstr ""
+msgstr ": Data actual"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
msgid ": Partner Name"
-msgstr ""
+msgstr ": Nom de l'empresa"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
msgid ": User Name"
-msgstr ""
+msgstr ": Nom de l'usuari"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
msgid ": User's Company Name"
-msgstr ""
+msgstr ": Nom de la companyia de l'usuari"
#. module: account_followup
#: model:ir.actions.act_window,help:account_followup.action_account_followup_definition_form
@@ -319,17 +320,17 @@ msgid ""
" the customer.\n"
" \n"
" "
-msgstr ""
+msgstr "\nPremi per definir els nivells de seguiment i les seves accions relacionades.\n
\nPer cada pas, especifiqui les accions a realitzar-se i l'endarreriment en dies. És possible utilitzar plantilles d'impressió i de correu electrònic per enviar missatges específics al client.\n
\n "
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_followup
msgid "Account Follow-up"
-msgstr ""
+msgstr "Seguiment del compte"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "Account Move line"
-msgstr ""
+msgstr "Apunt comptable"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
@@ -344,7 +345,7 @@ msgstr "Per fer"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "Action to be taken e.g. Give a phonecall, Check if it's paid, ..."
-msgstr ""
+msgstr "Acció a ser realitzada. Per exemple, realitzar una trucada, comprovar si està pagat, etc."
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
@@ -361,29 +362,29 @@ msgstr "Import"
#. module: account_followup
#: field:res.partner,payment_amount_due:0
msgid "Amount Due"
-msgstr ""
+msgstr "Import del deute"
#. module: account_followup
#: field:res.partner,payment_amount_overdue:0
msgid "Amount Overdue"
-msgstr ""
+msgstr "Import endarrerit"
#. module: account_followup
#: code:addons/account_followup/account_followup.py:281
#, python-format
msgid "Amount due"
-msgstr ""
+msgstr "Import del deute"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:160
#, python-format
msgid "Anybody"
-msgstr ""
+msgstr "Qualsevol"
#. module: account_followup
#: field:account_followup.followup.line,manual_action_responsible_id:0
msgid "Assign a Responsible"
-msgstr ""
+msgstr "Assignar un responsable"
#. module: account_followup
#: field:account.move.line,result:0 field:account_followup.stat,balance:0
@@ -402,7 +403,7 @@ msgid ""
"Below is the history of the transactions of this\n"
" customer. You can check \"No Follow-up\" in\n"
" order to exclude it from the next follow-up actions."
-msgstr ""
+msgstr "A continuació està l'historial de les transaccions d'aquest client. Pot marcar \"No seguir\" per excloure'l de les següents accions de seguiment."
#. module: account_followup
#: field:account_followup.stat,blocked:0
@@ -418,12 +419,12 @@ msgstr "Cancel·la"
#: help:account_followup.print,test_print:0
msgid ""
"Check if you want to print follow-ups without changing follow-up level."
-msgstr ""
+msgstr "Comprovi si vol imprimir els seguiments sense canviar el nivell de seguiment."
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "Click to mark the action as done."
-msgstr ""
+msgstr "Faci clic per establir l'acció com a realitzada."
#. module: account_followup
#: view:account_followup.sending.results:account_followup.view_account_followup_sending_results
@@ -441,7 +442,7 @@ msgstr "Companyia"
#. module: account_followup
#: view:account.config.settings:account_followup.view_account_config_settings_inherit
msgid "Configure your follow-up levels"
-msgstr ""
+msgstr "Configuri els nivells de seguiment"
#. module: account_followup
#: field:account_followup.followup,create_uid:0
@@ -467,12 +468,12 @@ msgstr "Haver"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_tree
msgid "Customer Followup"
-msgstr ""
+msgstr "Seguiment del client"
#. module: account_followup
#: field:res.partner,payment_note:0
msgid "Customer Payment Promise"
-msgstr ""
+msgstr "Promesa de pagament del client"
#. module: account_followup
#: view:website:account_followup.report_followup
@@ -487,7 +488,7 @@ msgstr "Data:"
#. module: account_followup
#: sql_constraint:account_followup.followup.line:0
msgid "Days of the follow-up levels must be different"
-msgstr ""
+msgstr "Els dies de nivells de seguiment han de ser diferents"
#. module: account_followup
#: field:account_followup.stat,debit:0
@@ -505,7 +506,7 @@ msgstr "Descripció"
#. module: account_followup
#: model:ir.ui.menu,name:account_followup.account_followup_s
msgid "Do Manual Follow-Ups"
-msgstr ""
+msgstr "Fer seguiments manuals"
#. module: account_followup
#: help:account_followup.print,partner_lang:0
@@ -522,7 +523,7 @@ msgstr "Document: Estat comptable del client"
#. module: account_followup
#: view:account_followup.sending.results:account_followup.view_account_followup_sending_results
msgid "Download Letters"
-msgstr ""
+msgstr "Descarregar cartes"
#. module: account_followup
#: code:addons/account_followup/account_followup.py:259
@@ -533,12 +534,12 @@ msgstr "Data venciment"
#. module: account_followup
#: field:account_followup.followup.line,delay:0
msgid "Due Days"
-msgstr ""
+msgstr "Dies de venciment"
#. module: account_followup
#: field:account_followup.print,email_body:0
msgid "Email Body"
-msgstr ""
+msgstr "Cos del missatge"
#. module: account_followup
#: field:account_followup.print,email_subject:0
@@ -554,7 +555,7 @@ msgstr "Plantilla email"
#: code:addons/account_followup/account_followup.py:216
#, python-format
msgid "Email not sent because of email address of partner not filled in"
-msgstr ""
+msgstr "Correu no enviat perquè no s'ha emplenat el camp e-mail en la fitxa de l'empresa"
#. module: account_followup
#: code:addons/account_followup/account_followup.py:313
@@ -584,12 +585,12 @@ msgstr "Seguiment"
#. module: account_followup
#: field:account_followup.followup.line,name:0
msgid "Follow-Up Action"
-msgstr ""
+msgstr "Accions de seguiment"
#. module: account_followup
#: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow
msgid "Follow-Ups Analysis"
-msgstr ""
+msgstr "Anàlisis de seguiments"
#. module: account_followup
#: view:account_followup.followup:account_followup.view_account_followup_followup_form
@@ -603,12 +604,12 @@ msgstr "Seguiment"
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_followup_line
msgid "Follow-up Criteria"
-msgstr ""
+msgstr "Criteri de seguiment"
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
msgid "Follow-up Entries with period in current year"
-msgstr ""
+msgstr "Realitzar seguiment a assentaments amb període de l'any actual"
#. module: account_followup
#: field:account.move.line,followup_line_id:0
@@ -619,18 +620,18 @@ msgstr "Nivell seguiment"
#. module: account_followup
#: model:ir.ui.menu,name:account_followup.account_followup_menu
msgid "Follow-up Levels"
-msgstr ""
+msgstr "Nivells de seguiment"
#. module: account_followup
#: model:ir.actions.report.xml,name:account_followup.action_report_followup
msgid "Follow-up Report"
-msgstr ""
+msgstr "Informe de seguiment"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_search_view
#: field:res.partner,payment_responsible_id:0
msgid "Follow-up Responsible"
-msgstr ""
+msgstr "Responsable del seguiment"
#. module: account_followup
#: field:account_followup.print,date:0
@@ -640,29 +641,29 @@ msgstr "Data enviament del seguiment"
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_stat
msgid "Follow-up Statistics"
-msgstr ""
+msgstr "Seguir estadístiques"
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_stat_by_partner
msgid "Follow-up Statistics by Partner"
-msgstr ""
+msgstr "Estadístiques de seguiment per empresa"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_tree
msgid "Follow-up Steps"
-msgstr ""
+msgstr "Passos del seguiment"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:171
#, python-format
msgid "Follow-up letter of "
-msgstr ""
+msgstr "Carta de seguiment de"
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_graph
msgid "Follow-up lines"
-msgstr ""
+msgstr "Línies de seguiment"
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
@@ -673,7 +674,7 @@ msgstr "Seguiments enviats"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_search_view
msgid "Follow-ups To Do"
-msgstr ""
+msgstr "Seguiments a realitzar"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_search_view
@@ -696,7 +697,7 @@ msgstr "Agrupa per"
msgid ""
"He said the problem was temporary and promised to pay 50% before 15th of "
"May, balance before 1st of July."
-msgstr ""
+msgstr "L'empresa va dir que el problema era temporal i va prometre pagar un 50% després del 15 de maig i la resta abans de l'1 de juliol."
#. module: account_followup
#: field:account_followup.followup,id:0
@@ -713,12 +714,12 @@ msgstr "ID"
msgid ""
"If not specified by the latest follow-up level, it will send from the "
"default email template"
-msgstr ""
+msgstr "Si no s'especifica al pròxim nivell de seguiment, s'enviarà amb la plantilla de correu electrònic per defecte"
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
msgid "Including journal entries marked as a litigation"
-msgstr ""
+msgstr "Inclou assentaments al diari marcats com a licitació"
#. module: account_followup
#: code:addons/account_followup/account_followup.py:256
@@ -768,32 +769,32 @@ msgstr "Últim seguiment"
#. module: account_followup
#: field:res.partner,latest_followup_date:0
msgid "Latest Follow-up Date"
-msgstr ""
+msgstr "Última data de seguiment"
#. module: account_followup
#: field:res.partner,latest_followup_level_id:0
msgid "Latest Follow-up Level"
-msgstr ""
+msgstr "Últim nivell de seguiment"
#. module: account_followup
#: field:res.partner,latest_followup_level_id_without_lit:0
msgid "Latest Follow-up Level without litigation"
-msgstr ""
+msgstr "Últim nivell de seguiment sense litigi"
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
msgid "Latest Follow-up Month"
-msgstr ""
+msgstr "Mes de l'últim seguiment"
#. module: account_followup
#: help:res.partner,latest_followup_date:0
msgid "Latest date that the follow-up level of the partner was changed"
-msgstr ""
+msgstr "Última data en la qual el nivell de seguiment de l'empresa va ser canviada"
#. module: account_followup
#: field:account_followup.stat.by.partner,date_followup:0
msgid "Latest follow-up"
-msgstr ""
+msgstr "Últim seguiment"
#. module: account_followup
#: field:account_followup.stat,date_followup:0
@@ -809,7 +810,7 @@ msgstr "Li."
#: code:addons/account_followup/account_followup.py:261
#, python-format
msgid "Lit."
-msgstr ""
+msgstr "Litigi"
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
@@ -820,12 +821,12 @@ msgstr "Litigi"
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
#: field:account_followup.followup.line,manual_action:0
msgid "Manual Action"
-msgstr ""
+msgstr "Acció manual"
#. module: account_followup
#: model:ir.actions.act_window,name:account_followup.action_customer_followup
msgid "Manual Follow-Ups"
-msgstr ""
+msgstr "Seguiments manuals"
#. module: account_followup
#: view:website:account_followup.report_followup
@@ -841,12 +842,12 @@ msgstr "Nivell màxim de seguiment"
#: model:ir.actions.act_window,name:account_followup.action_customer_my_followup
#: model:ir.ui.menu,name:account_followup.menu_sale_followup
msgid "My Follow-Ups"
-msgstr ""
+msgstr "Els meus seguiments"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_search_view
msgid "My Follow-ups"
-msgstr ""
+msgstr "Els meus seguiments"
#. module: account_followup
#: field:account_followup.followup,name:0
@@ -856,7 +857,7 @@ msgstr "Nom"
#. module: account_followup
#: field:account_followup.sending.results,needprinting:0
msgid "Needs Printing"
-msgstr ""
+msgstr "Requereix impressió"
#. module: account_followup
#: field:res.partner,payment_next_action:0
@@ -871,7 +872,7 @@ msgstr "Data de la següent acció"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_search_view
msgid "No Responsible"
-msgstr ""
+msgstr "Sense responsable"
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
@@ -881,14 +882,14 @@ msgstr "Sense litigi"
#. module: account_followup
#: sql_constraint:account_followup.followup:0
msgid "Only one follow-up per company is allowed"
-msgstr ""
+msgstr "Només es permet un seguiment per companyia"
#. module: account_followup
#: help:res.partner,payment_responsible_id:0
msgid ""
"Optionally you can assign a user to this field, which will make him "
"responsible for the action."
-msgstr ""
+msgstr "Pot asignar un usuari a aquest camp de manera opcional, que el farà responsable per a l'acció."
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
@@ -917,23 +918,23 @@ msgstr "Empreses"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_search_view
msgid "Partners with Overdue Credits"
-msgstr ""
+msgstr "Empreses amb crèdits vençuts"
#. module: account_followup
#: model:ir.ui.menu,name:account_followup.menu_finance_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "Payment Follow-up"
-msgstr ""
+msgstr "Seguiment de pagament"
#. module: account_followup
#: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form
msgid "Payment Follow-ups"
-msgstr ""
+msgstr "Seguiment de pagaments"
#. module: account_followup
#: help:res.partner,payment_note:0
msgid "Payment Note"
-msgstr ""
+msgstr "Nota de pagament"
#. module: account_followup
#: field:account_followup.stat,period_id:0
@@ -943,17 +944,17 @@ msgstr "Període"
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_print
msgid "Print Follow-up & Send Mail to Customers"
-msgstr ""
+msgstr "Imprimir seguiment i enviar e-mail al client"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "Print Overdue Payments"
-msgstr ""
+msgstr "Imprimir pagaments pendents"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "Print overdue payments report independent of follow-up line"
-msgstr ""
+msgstr "Imprimir informe de pagaments vençuts independentment de la línia de seguiment"
#. module: account_followup
#: field:account_followup.followup.line,description:0
@@ -964,12 +965,12 @@ msgstr "Missatge imprès"
#: code:addons/account_followup/account_followup.py:314
#, python-format
msgid "Printed overdue payments report"
-msgstr ""
+msgstr "Impressió del informe de pagaments vençuts"
#. module: account_followup
#: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup
msgid "Reconcile Invoices & Payments"
-msgstr ""
+msgstr "Reconciliar factures i pagaments"
#. module: account_followup
#: view:website:account_followup.report_followup
@@ -985,17 +986,17 @@ msgstr "Referència"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "Responsible of credit collection"
-msgstr ""
+msgstr "Responsable de la gestió del cobrament"
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_sending_results
msgid "Results from the sending of the different letters and emails"
-msgstr ""
+msgstr "Resultats d'enviar diferents cartes i correus"
#. module: account_followup
#: view:account_followup.followup:account_followup.view_account_followup_filter
msgid "Search Follow-up"
-msgstr ""
+msgstr "Buscar seguiment"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_search_view
@@ -1005,7 +1006,7 @@ msgstr "Busca empresa"
#. module: account_followup
#: field:account_followup.print,email_conf:0
msgid "Send Email Confirmation"
-msgstr ""
+msgstr "Enviar confirmació de correu electrònic"
#. module: account_followup
#: field:account_followup.print,partner_lang:0
@@ -1015,45 +1016,45 @@ msgstr "Envia correu en l'idioma de l'empresa"
#. module: account_followup
#: model:ir.actions.act_window,name:account_followup.action_account_followup_print
msgid "Send Follow-Ups"
-msgstr ""
+msgstr "Enviar seguiments"
#. module: account_followup
#: model:ir.ui.menu,name:account_followup.account_followup_print_menu
msgid "Send Letters and Emails"
-msgstr ""
+msgstr "Enviar cartes i correus"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:241
#, python-format
msgid "Send Letters and Emails: Actions Summary"
-msgstr ""
+msgstr "Enviar correus i e-mails: Resum d'accions"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "Send Overdue Email"
-msgstr ""
+msgstr "Enviar correu de venciment"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
#: field:account_followup.followup.line,send_letter:0
msgid "Send a Letter"
-msgstr ""
+msgstr "Enviar una carta"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
#: field:account_followup.followup.line,send_email:0
msgid "Send an Email"
-msgstr ""
+msgstr "Enviar un correu"
#. module: account_followup
#: view:account_followup.print:account_followup.view_account_followup_print
msgid "Send emails and generate letters"
-msgstr ""
+msgstr "Enviar correus electrònics i generar cartes"
#. module: account_followup
#: view:account_followup.print:account_followup.view_account_followup_print
msgid "Send follow-ups"
-msgstr ""
+msgstr "Enviar seguiments"
#. module: account_followup
#: field:account_followup.followup.line,sequence:0
@@ -1068,12 +1069,12 @@ msgstr "Resum"
#. module: account_followup
#: view:account_followup.sending.results:account_followup.view_account_followup_sending_results
msgid "Summary of actions"
-msgstr ""
+msgstr "Resum d'accions"
#. module: account_followup
#: field:account_followup.print,test_print:0
msgid "Test Print"
-msgstr ""
+msgstr "Imprimir prova"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
@@ -1086,19 +1087,19 @@ msgstr "El/La"
msgid ""
"The followup plan defined for the current company does not have any followup"
" action."
-msgstr ""
+msgstr "El pla de seguiment definit per la companyia actual no té cap acció de seguiment."
#. module: account_followup
#: help:res.partner,latest_followup_level_id:0
msgid "The maximum follow-up level"
-msgstr ""
+msgstr "Nivell màxim de seguiment"
#. module: account_followup
#: help:res.partner,latest_followup_level_id_without_lit:0
msgid ""
"The maximum follow-up level without taking into account the account move "
"lines with litigation"
-msgstr ""
+msgstr "El màxim nivell de seguiment sense tenir en compte els apunts comptables amb litigi"
#. module: account_followup
#: help:account_followup.followup.line,delay:0
@@ -1106,7 +1107,7 @@ msgid ""
"The number of days after the due date of the invoice to wait before sending "
"the reminder. Could be negative if you want to send a polite alert "
"beforehand."
-msgstr ""
+msgstr "El nombre de dies després de la data de venciment a esperar abans d'enviar el recordatori. Pot ser negatiu si desitja enviar una alerta educada prèviament."
#. module: account_followup
#: code:addons/account_followup/account_followup.py:313
@@ -1114,13 +1115,13 @@ msgstr ""
msgid ""
"The partner does not have any accounting entries to print in the overdue "
"report for the current company."
-msgstr ""
+msgstr "L'empresa no té assentaments comptables a imprimir en l'informe de pagaments vençuts per la companyia actual."
#. module: account_followup
#: code:addons/account_followup/account_followup.py:319
#, python-format
msgid "There is no followup plan defined for the current company."
-msgstr ""
+msgstr "No hi ha pla de seguiment definit per la companyia actual."
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
@@ -1132,7 +1133,7 @@ msgstr "Aquest exercici fiscal"
msgid ""
"This action will send follow-up emails, print the letters and\n"
" set the manual actions per customer, according to the follow-up levels defined."
-msgstr ""
+msgstr "Aquesta acció enviarà correus electrònics de seguiment, imprimirà les cartes i establirà les accions manuals per client, d'acord amb els nivells de seguiment definits."
#. module: account_followup
#: help:account_followup.print,date:0
@@ -1144,7 +1145,7 @@ msgstr "Aquest camp permet seleccionar una data de previsió per a planificar le
msgid ""
"This is the next action to be taken. It will automatically be set when the "
"partner gets a follow-up level that requires a manual action. "
-msgstr ""
+msgstr "Aquesta és la pròxima acció a realitzar. S'establirà automàticament quan l'empresa arribi a un nivell de seguiment que requereixi una acció manual."
#. module: account_followup
#: help:res.partner,payment_next_action_date:0
@@ -1153,7 +1154,7 @@ msgid ""
"current date when the partner gets a follow-up level that requires a manual "
"action. Can be practical to set manually e.g. to see if he keeps his "
"promises."
-msgstr ""
+msgstr "Aquesta és la data en la qual es necessita un seguiment manual. La data es restablirà a l'actual quan l'empresa arribi a un nivell que requereixi una acció manual. Pot ser pràctic establir-la manualment, per exemple, per veure si es compleix el promès."
#. module: account_followup
#: view:account_followup.followup:account_followup.view_account_followup_followup_form
@@ -1166,7 +1167,7 @@ msgid ""
" number of days. If there are other overdue invoices for the \n"
" same customer, the actions of the most \n"
" overdue invoice will be executed."
-msgstr ""
+msgstr "Per recordar als clients el pagament de les seves factures, pot definir diverses accions depenent de l'endarrerit que sigui el deute. Aquestes accions s'empaqueten en nivells de seguiment que són llençades quan la data de venciment d'una factura sobrepassa cert nombre de dies. Si hi ha altres factures vençudes pel mateix client, s'executaran les accions per la factura més endarrerida."
#. module: account_followup
#: view:account.move.line:account_followup.account_move_line_partner_tree
@@ -1186,24 +1187,24 @@ msgstr "Total:"
#. module: account_followup
#: help:account_followup.followup.line,send_letter:0
msgid "When processing, it will print a letter"
-msgstr ""
+msgstr "Al ser processat, imprimirà una carta"
#. module: account_followup
#: help:account_followup.followup.line,send_email:0
msgid "When processing, it will send an email"
-msgstr ""
+msgstr "Al processar, s'enviarà un correu"
#. module: account_followup
#: help:account_followup.followup.line,manual_action:0
msgid ""
"When processing, it will set the manual action to be taken for that "
"customer. "
-msgstr ""
+msgstr "En processar, s'establirà l'acció manual que haurà de fer-se per aquest client."
#. module: account_followup
#: field:res.partner,payment_earliest_due_date:0
msgid "Worst Due Date"
-msgstr ""
+msgstr "Pitjor data de venciment"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
@@ -1213,31 +1214,31 @@ msgid ""
" use the following keywords in the text. Don't\n"
" forget to translate in all languages you installed\n"
" using to top right icon."
-msgstr ""
+msgstr "Escrigui aquí la introducció de la carta, d'acord amb el nivell de seguiment. Pot utilitzar paraules clau al text. No s'oblidi de traduir-la en tots els idiomes que té instal·lat utilitzant la icona de la part superior dreta."
#. module: account_followup
#: code:addons/account_followup/account_followup.py:291
#, python-format
msgid ""
"You became responsible to do the next action for the payment follow-up of"
-msgstr ""
+msgstr "Vostè és el responsable de realitzar la pròxima acció al seguiment del pagament de"
#. module: account_followup
#: constraint:account_followup.followup.line:0
msgid ""
"Your description is invalid, use the right legend or %% if you want to use "
"the percent character."
-msgstr ""
+msgstr "La seva descripció no és vàlida, utilitzi la llegenda apropiada o %% si desitja utilitzar el caràcter percentatge."
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
msgid "days overdue, do the following actions:"
-msgstr ""
+msgstr "dies des de venciment, executi les accions següents:"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
msgid "e.g. Call the customer, check if it's paid, ..."
-msgstr ""
+msgstr "p. ex. Trucar al client, comprovar si està pagat, ..."
#. module: account_followup
#: view:account_followup.print:account_followup.view_account_followup_print
@@ -1253,4 +1254,4 @@ msgstr "desconegut"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "⇾ Mark as Done"
-msgstr ""
+msgstr "⇾ Marcat com acabat"
diff --git a/addons/account_followup/i18n/el.po b/addons/account_followup/i18n/el.po
index d52b6dfdb8ef1..c5a4714e52c70 100644
--- a/addons/account_followup/i18n/el.po
+++ b/addons/account_followup/i18n/el.po
@@ -4,14 +4,14 @@
#
# Translators:
# FIRST AUTHOR , 2009
-# Goutoudis Kostas , 2015-2016
+# Kostas Goutoudis , 2015-2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-01-02 17:33+0000\n"
-"Last-Translator: Goutoudis Kostas \n"
+"PO-Revision-Date: 2016-10-29 11:24+0000\n"
+"Last-Translator: Kostas Goutoudis \n"
"Language-Team: Greek (http://www.transifex.com/odoo/odoo-8/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -362,7 +362,7 @@ msgstr "Ποσό"
#. module: account_followup
#: field:res.partner,payment_amount_due:0
msgid "Amount Due"
-msgstr ""
+msgstr "Οφειλόμενο Ποσό"
#. module: account_followup
#: field:res.partner,payment_amount_overdue:0
diff --git a/addons/account_followup/i18n/en_GB.po b/addons/account_followup/i18n/en_GB.po
index 8f79d8e8b411b..fe8b12966af53 100644
--- a/addons/account_followup/i18n/en_GB.po
+++ b/addons/account_followup/i18n/en_GB.po
@@ -4,13 +4,14 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# Олег , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:44+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-10-02 21:44+0000\n"
+"Last-Translator: Олег \n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/odoo/odoo-8/language/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -344,7 +345,7 @@ msgstr "Action To Do"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "Action to be taken e.g. Give a phonecall, Check if it's paid, ..."
-msgstr ""
+msgstr "e.g. Call the customer, check if it's paid, ..."
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
@@ -441,7 +442,7 @@ msgstr "Company"
#. module: account_followup
#: view:account.config.settings:account_followup.view_account_config_settings_inherit
msgid "Configure your follow-up levels"
-msgstr ""
+msgstr "Configure your follow-up levels"
#. module: account_followup
#: field:account_followup.followup,create_uid:0
@@ -477,7 +478,7 @@ msgstr "Customer Payment Promise"
#. module: account_followup
#: view:website:account_followup.report_followup
msgid "Customer ref:"
-msgstr ""
+msgstr "Customer ref:"
#. module: account_followup
#: view:website:account_followup.report_followup
@@ -783,7 +784,7 @@ msgstr "Latest Follow-up Level without litigation"
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
msgid "Latest Follow-up Month"
-msgstr ""
+msgstr "Latest Follow-up"
#. module: account_followup
#: help:res.partner,latest_followup_date:0
@@ -1237,7 +1238,7 @@ msgstr "days overdue, do the following actions:"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
msgid "e.g. Call the customer, check if it's paid, ..."
-msgstr ""
+msgstr "e.g. Call the customer, check if it's paid, ..."
#. module: account_followup
#: view:account_followup.print:account_followup.view_account_followup_print
diff --git a/addons/account_followup/i18n/fi.po b/addons/account_followup/i18n/fi.po
index 1c6cac6203c5c..95504c92b7669 100644
--- a/addons/account_followup/i18n/fi.po
+++ b/addons/account_followup/i18n/fi.po
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-23 09:57+0000\n"
+"PO-Revision-Date: 2016-11-04 18:22+0000\n"
"Last-Translator: Jarmo Kortetjärvi \n"
"Language-Team: Finnish (http://www.transifex.com/odoo/odoo-8/language/fi/)\n"
"MIME-Version: 1.0\n"
@@ -110,7 +110,7 @@ msgid ""
"
\n"
"\n"
" "
-msgstr "\n\n \n
Hyvä ${object.name},
\n
\nKirjanpitomme mukaan viestin lopusta löytyvä summa on vielä maksamatta. Olkaa hyvät ja tehkää tarvittavat toimenpiteet maksun suorittamiseksi 8 päivän kuluessa.\n\nJos maksu on jo suoritettu ennen tämän viestin lähettämistä, voit jättää kehoituksen huomioimatta.\n\nEpäselvissä tapauksissa voitte olla yhteydessä laskutusosastoomme.\n
\n
\nParhain terveisin,\n
\n
\n${user.name}\n
\n
\n\n${object.get_followup_table_html() | safe}\n\n
\n
\n "
+msgstr "\n\n \n
Hyvä ${object.name},
\n
\nKirjanpitomme mukaan viestin lopusta löytyvä summa on vielä maksamatta. Olkaa hyvät ja tehkää tarvittavat toimenpiteet maksun suorittamiseksi 8 päivän kuluessa.\n\nJos maksu on jo suoritettu ennen tämän viestin lähettämistä, voitte jättää kehoituksen huomioimatta.\n\nEpäselvissä tapauksissa voitte olla yhteydessä laskutusosastoomme.\n
\n
\nParhain terveisin,\n
\n
\n${user.name}\n
\n
\n\n${object.get_followup_table_html() | safe}\n\n
\n
\n "
#. module: account_followup
#: model:email.template,body_html:account_followup.email_template_account_followup_level1
@@ -217,7 +217,7 @@ msgstr "\nHyvä %(partner_name)s,\n\nToistuvista muistutuksista huolimatta lasku
#: code:addons/account_followup/wizard/account_followup_print.py:174
#, python-format
msgid " email(s) sent"
-msgstr "Lähetetyt sähköpostit"
+msgstr " sähköposti(a) lähetetty"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:176
@@ -235,13 +235,13 @@ msgstr " oli tuntemattomia sähköpostiosoitteita"
#: code:addons/account_followup/wizard/account_followup_print.py:177
#, python-format
msgid " letter(s) in report"
-msgstr "kirje(ttä) raportilla"
+msgstr " kirje(ttä) raportilla"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:177
#, python-format
msgid " manual action(s) assigned:"
-msgstr "käsintehtävä(t) toimenpide tai toimenpiteet asetettu:"
+msgstr " käsintehtäv(i)ä toimenpiteitä määritetty:"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:171
diff --git a/addons/account_followup/i18n/hi.po b/addons/account_followup/i18n/hi.po
new file mode 100644
index 0000000000000..94e8891a6943c
--- /dev/null
+++ b/addons/account_followup/i18n/hi.po
@@ -0,0 +1,1255 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_followup
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2016-09-05 19:10+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_followup
+#: model:email.template,body_html:account_followup.email_template_account_followup_level0
+msgid ""
+"\n"
+"\n"
+"\n"
+"
Dear ${object.name},
\n"
+"
\n"
+" Exception made if there was a mistake of ours, it seems that the following amount stays unpaid. Please, take\n"
+"appropriate measures in order to carry out this payment in the next 8 days.\n"
+"\n"
+"Would your payment have been carried out after this mail was sent, please ignore this message. Do not hesitate to\n"
+"contact our accounting department. \n"
+"\n"
+"
\n"
+"
\n"
+"Best Regards,\n"
+"
\n"
+"
\n"
+"${user.name}\n"
+"\n"
+"
\n"
+"
\n"
+"\n"
+"\n"
+"${object.get_followup_table_html() | safe}\n"
+"\n"
+"
\n"
+"\n"
+"
\n"
+" "
+msgstr ""
+
+#. module: account_followup
+#: model:email.template,body_html:account_followup.email_template_account_followup_level2
+msgid ""
+"\n"
+"\n"
+" \n"
+"
Dear ${object.name},
\n"
+"
\n"
+" Despite several reminders, your account is still not settled.\n"
+"Unless full payment is made in next 8 days, legal action for the recovery of the debt will be taken without\n"
+"further notice.\n"
+"I trust that this action will prove unnecessary and details of due payments is printed below.\n"
+"In case of any queries concerning this matter, do not hesitate to contact our accounting department.\n"
+"
\n"
+"
\n"
+"Best Regards,\n"
+"
\n"
+"
\n"
+"${user.name}\n"
+"
\n"
+"
\n"
+"\n"
+"\n"
+"${object.get_followup_table_html() | safe}\n"
+"\n"
+"
\n"
+"\n"
+"
\n"
+" "
+msgstr ""
+
+#. module: account_followup
+#: model:email.template,body_html:account_followup.email_template_account_followup_default
+msgid ""
+"\n"
+"\n"
+" \n"
+"
Dear ${object.name},
\n"
+"
\n"
+" Exception made if there was a mistake of ours, it seems that the following amount stays unpaid. Please, take\n"
+"appropriate measures in order to carry out this payment in the next 8 days.\n"
+"Would your payment have been carried out after this mail was sent, please ignore this message. Do not hesitate to\n"
+"contact our accounting department.\n"
+"
\n"
+"
\n"
+"Best Regards,\n"
+"
\n"
+"
\n"
+"${user.name}\n"
+"
\n"
+"
\n"
+"\n"
+"${object.get_followup_table_html() | safe}\n"
+"\n"
+"
\n"
+"
\n"
+" "
+msgstr ""
+
+#. module: account_followup
+#: model:email.template,body_html:account_followup.email_template_account_followup_level1
+msgid ""
+"\n"
+"\n"
+" \n"
+"
Dear ${object.name},
\n"
+"
\n"
+" We are disappointed to see that despite sending a reminder, that your account is now seriously overdue.\n"
+"It is essential that immediate payment is made, otherwise we will have to consider placing a stop on your account\n"
+"which means that we will no longer be able to supply your company with (goods/services).\n"
+"Please, take appropriate measures in order to carry out this payment in the next 8 days.\n"
+"If there is a problem with paying invoice that we are not aware of, do not hesitate to contact our accounting\n"
+"department. so that we can resolve the matter quickly.\n"
+"Details of due payments is printed below.\n"
+"
\n"
+"
\n"
+"Best Regards,\n"
+" \n"
+"
\n"
+"
\n"
+"${user.name}\n"
+" \n"
+"
\n"
+"
\n"
+"\n"
+"${object.get_followup_table_html() | safe}\n"
+"\n"
+"
\n"
+"\n"
+"
\n"
+" "
+msgstr ""
+
+#. module: account_followup
+#: model:account_followup.followup.line,description:account_followup.demo_followup_line3
+msgid ""
+"\n"
+"Dear %(partner_name)s,\n"
+"\n"
+"Despite several reminders, your account is still not settled.\n"
+"\n"
+"Unless full payment is made in next 8 days, then legal action for the recovery of the debt will be taken without further notice.\n"
+"\n"
+"I trust that this action will prove unnecessary and details of due payments is printed below.\n"
+"\n"
+"In case of any queries concerning this matter, do not hesitate to contact our accounting department.\n"
+"\n"
+"Best Regards,\n"
+msgstr ""
+
+#. module: account_followup
+#: model:account_followup.followup.line,description:account_followup.demo_followup_line4
+#: model:account_followup.followup.line,description:account_followup.demo_followup_line5
+msgid ""
+"\n"
+"Dear %(partner_name)s,\n"
+"\n"
+"Despite several reminders, your account is still not settled.\n"
+"\n"
+"Unless full payment is made in next 8 days, then legal action for the recovery of the debt will be taken without further notice.\n"
+"\n"
+"I trust that this action will prove unnecessary and details of due payments is printed below.\n"
+"\n"
+"In case of any queries concerning this matter, do not hesitate to contact our accounting department.\n"
+"\n"
+"Best Regards,\n"
+" "
+msgstr ""
+
+#. module: account_followup
+#: model:account_followup.followup.line,description:account_followup.demo_followup_line1
+msgid ""
+"\n"
+"Dear %(partner_name)s,\n"
+"\n"
+"Exception made if there was a mistake of ours, it seems that the following amount stays unpaid. Please, take appropriate measures in order to carry out this payment in the next 8 days.\n"
+"\n"
+"Would your payment have been carried out after this mail was sent, please ignore this message. Do not hesitate to contact our accounting department. \n"
+"\n"
+"Best Regards,\n"
+msgstr ""
+
+#. module: account_followup
+#: model:account_followup.followup.line,description:account_followup.demo_followup_line2
+msgid ""
+"\n"
+"Dear %(partner_name)s,\n"
+"\n"
+"We are disappointed to see that despite sending a reminder, that your account is now seriously overdue.\n"
+"\n"
+"It is essential that immediate payment is made, otherwise we will have to consider placing a stop on your account which means that we will no longer be able to supply your company with (goods/services).\n"
+"Please, take appropriate measures in order to carry out this payment in the next 8 days.\n"
+"\n"
+"If there is a problem with paying invoice that we are not aware of, do not hesitate to contact our accounting department, so that we can resolve the matter quickly.\n"
+"\n"
+"Details of due payments is printed below.\n"
+"\n"
+"Best Regards,\n"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/wizard/account_followup_print.py:174
+#, python-format
+msgid " email(s) sent"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/wizard/account_followup_print.py:176
+#, python-format
+msgid " email(s) should have been sent, but "
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/wizard/account_followup_print.py:176
+#, python-format
+msgid " had unknown email address(es)"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/wizard/account_followup_print.py:177
+#, python-format
+msgid " letter(s) in report"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/wizard/account_followup_print.py:177
+#, python-format
+msgid " manual action(s) assigned:"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/wizard/account_followup_print.py:171
+#, python-format
+msgid " will be sent"
+msgstr ""
+
+#. module: account_followup
+#: model:email.template,subject:account_followup.email_template_account_followup_default
+#: model:email.template,subject:account_followup.email_template_account_followup_level0
+#: model:email.template,subject:account_followup.email_template_account_followup_level1
+#: model:email.template,subject:account_followup.email_template_account_followup_level2
+msgid "${user.company_id.name} Payment Reminder"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+msgid "%(company_name)s"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+msgid "%(date)s"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+msgid "%(partner_name)s"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+msgid "%(user_signature)s"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/wizard/account_followup_print.py:234
+#, python-format
+msgid "%s partners have no credits and as such the action is cleared"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid ""
+", the latest payment follow-up\n"
+" was:"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+msgid ": Current Date"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+msgid ": Partner Name"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+msgid ": User Name"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+msgid ": User's Company Name"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.actions.act_window,help:account_followup.action_account_followup_definition_form
+msgid ""
+"\n"
+" Click to define follow-up levels and their related actions.\n"
+"
\n"
+" For each step, specify the actions to be taken and delay in days. It is\n"
+" possible to use print and e-mail templates to send specific messages to\n"
+" the customer.\n"
+"
\n"
+" "
+msgstr ""
+
+#. module: account_followup
+#: model:ir.model,name:account_followup.model_account_followup_followup
+msgid "Account Follow-up"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid "Account Move line"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid "Accounting"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.followup.line,manual_action_note:0
+msgid "Action To Do"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid "Action to be taken e.g. Give a phonecall, Check if it's paid, ..."
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+msgid "After"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/account_followup.py:260
+#: view:website:account_followup.report_followup
+#, python-format
+msgid "Amount"
+msgstr "रकम"
+
+#. module: account_followup
+#: field:res.partner,payment_amount_due:0
+msgid "Amount Due"
+msgstr ""
+
+#. module: account_followup
+#: field:res.partner,payment_amount_overdue:0
+msgid "Amount Overdue"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/account_followup.py:281
+#, python-format
+msgid "Amount due"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/wizard/account_followup_print.py:160
+#, python-format
+msgid "Anybody"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.followup.line,manual_action_responsible_id:0
+msgid "Assign a Responsible"
+msgstr ""
+
+#. module: account_followup
+#: field:account.move.line,result:0 field:account_followup.stat,balance:0
+#: field:account_followup.stat.by.partner,balance:0
+msgid "Balance"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.stat.by.partner:account_followup.account_followup_stat_by_partner_search
+msgid "Balance > 0"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid ""
+"Below is the history of the transactions of this\n"
+" customer. You can check \"No Follow-up\" in\n"
+" order to exclude it from the next follow-up actions."
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.stat,blocked:0
+msgid "Blocked"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.print:account_followup.view_account_followup_print
+msgid "Cancel"
+msgstr "रद्द"
+
+#. module: account_followup
+#: help:account_followup.print,test_print:0
+msgid ""
+"Check if you want to print follow-ups without changing follow-up level."
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid "Click to mark the action as done."
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.sending.results:account_followup.view_account_followup_sending_results
+msgid "Close"
+msgstr "बंद"
+
+#. module: account_followup
+#: field:account_followup.followup,company_id:0
+#: view:account_followup.stat:account_followup.view_account_followup_stat_search
+#: field:account_followup.stat,company_id:0
+#: field:account_followup.stat.by.partner,company_id:0
+msgid "Company"
+msgstr "संस्था"
+
+#. module: account_followup
+#: view:account.config.settings:account_followup.view_account_config_settings_inherit
+msgid "Configure your follow-up levels"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.followup,create_uid:0
+#: field:account_followup.followup.line,create_uid:0
+#: field:account_followup.print,create_uid:0
+#: field:account_followup.sending.results,create_uid:0
+msgid "Created by"
+msgstr "निर्माण कर्ता"
+
+#. module: account_followup
+#: field:account_followup.followup,create_date:0
+#: field:account_followup.followup.line,create_date:0
+#: field:account_followup.print,create_date:0
+#: field:account_followup.sending.results,create_date:0
+msgid "Created on"
+msgstr "निर्माण तिथि"
+
+#. module: account_followup
+#: field:account_followup.stat,credit:0
+msgid "Credit"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.customer_followup_tree
+msgid "Customer Followup"
+msgstr ""
+
+#. module: account_followup
+#: field:res.partner,payment_note:0
+msgid "Customer Payment Promise"
+msgstr ""
+
+#. module: account_followup
+#: view:website:account_followup.report_followup
+msgid "Customer ref:"
+msgstr ""
+
+#. module: account_followup
+#: view:website:account_followup.report_followup
+msgid "Date:"
+msgstr ""
+
+#. module: account_followup
+#: sql_constraint:account_followup.followup.line:0
+msgid "Days of the follow-up levels must be different"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.stat,debit:0
+msgid "Debit"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.sending.results,description:0
+#: code:addons/account_followup/account_followup.py:257
+#: view:website:account_followup.report_followup
+#, python-format
+msgid "Description"
+msgstr "विवरण"
+
+#. module: account_followup
+#: model:ir.ui.menu,name:account_followup.account_followup_s
+msgid "Do Manual Follow-Ups"
+msgstr ""
+
+#. module: account_followup
+#: help:account_followup.print,partner_lang:0
+msgid ""
+"Do not change message text, if you want to send email in partner language, "
+"or configure from company"
+msgstr ""
+
+#. module: account_followup
+#: view:website:account_followup.report_followup
+msgid "Document: Customer account statement"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.sending.results:account_followup.view_account_followup_sending_results
+msgid "Download Letters"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/account_followup.py:259
+#, python-format
+msgid "Due Date"
+msgstr "अन्तिम तिथि"
+
+#. module: account_followup
+#: field:account_followup.followup.line,delay:0
+msgid "Due Days"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.print,email_body:0
+msgid "Email Body"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.print,email_subject:0
+msgid "Email Subject"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.followup.line,email_template_id:0
+msgid "Email Template"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/account_followup.py:216
+#, python-format
+msgid "Email not sent because of email address of partner not filled in"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/account_followup.py:313
+#: code:addons/account_followup/account_followup.py:319
+#: code:addons/account_followup/report/account_followup_print.py:82
+#, python-format
+msgid "Error!"
+msgstr "त्रुटि!"
+
+#. module: account_followup
+#: field:account_followup.stat,date_move:0
+#: field:account_followup.stat.by.partner,date_move:0
+msgid "First move"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.followup.line,followup_id:0
+#: field:account_followup.stat,followup_id:0
+msgid "Follow Ups"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.print,followup_id:0
+msgid "Follow-Up"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.followup.line,name:0
+msgid "Follow-Up Action"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow
+msgid "Follow-Ups Analysis"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup:account_followup.view_account_followup_followup_form
+#: view:account_followup.followup:account_followup.view_account_followup_followup_tree
+#: field:account_followup.followup,followup_line:0
+#: model:ir.ui.menu,name:account_followup.account_followup_main_menu
+#: view:res.partner:account_followup.customer_followup_search_view
+msgid "Follow-up"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.model,name:account_followup.model_account_followup_followup_line
+msgid "Follow-up Criteria"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.stat:account_followup.view_account_followup_stat_search
+msgid "Follow-up Entries with period in current year"
+msgstr ""
+
+#. module: account_followup
+#: field:account.move.line,followup_line_id:0
+#: view:account_followup.stat:account_followup.view_account_followup_stat_search
+msgid "Follow-up Level"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.ui.menu,name:account_followup.account_followup_menu
+msgid "Follow-up Levels"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.actions.report.xml,name:account_followup.action_report_followup
+msgid "Follow-up Report"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.customer_followup_search_view
+#: field:res.partner,payment_responsible_id:0
+msgid "Follow-up Responsible"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.print,date:0
+msgid "Follow-up Sending Date"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.model,name:account_followup.model_account_followup_stat
+msgid "Follow-up Statistics"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.model,name:account_followup.model_account_followup_stat_by_partner
+msgid "Follow-up Statistics by Partner"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_tree
+msgid "Follow-up Steps"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/wizard/account_followup_print.py:171
+#, python-format
+msgid "Follow-up letter of "
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.stat:account_followup.view_account_followup_stat_graph
+msgid "Follow-up lines"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.stat:account_followup.view_account_followup_stat_search
+#: model:ir.actions.act_window,name:account_followup.action_followup_stat
+msgid "Follow-ups Sent"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.customer_followup_search_view
+msgid "Follow-ups To Do"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.customer_followup_search_view
+msgid "Followup Level"
+msgstr ""
+
+#. module: account_followup
+#: help:account_followup.followup.line,sequence:0
+msgid "Gives the sequence order when displaying a list of follow-up lines."
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.stat:account_followup.view_account_followup_stat_search
+#: view:res.partner:account_followup.customer_followup_search_view
+msgid "Group By"
+msgstr "वर्गीकरण का आधार"
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid ""
+"He said the problem was temporary and promised to pay 50% before 15th of "
+"May, balance before 1st of July."
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.followup,id:0
+#: field:account_followup.followup.line,id:0 field:account_followup.print,id:0
+#: field:account_followup.sending.results,id:0
+#: field:account_followup.stat,id:0
+#: field:account_followup.stat.by.partner,id:0
+#: field:report.account_followup.report_followup,id:0
+msgid "ID"
+msgstr "पहचान"
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid ""
+"If not specified by the latest follow-up level, it will send from the "
+"default email template"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.stat:account_followup.view_account_followup_stat_search
+msgid "Including journal entries marked as a litigation"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/account_followup.py:256
+#: view:website:account_followup.report_followup
+#, python-format
+msgid "Invoice Date"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/wizard/account_followup_print.py:258
+#, python-format
+msgid "Invoices Reminder"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.model,name:account_followup.model_account_move_line
+msgid "Journal Items"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.followup,write_uid:0
+#: field:account_followup.followup.line,write_uid:0
+#: field:account_followup.print,write_uid:0
+#: field:account_followup.sending.results,write_uid:0
+msgid "Last Updated by"
+msgstr "अंतिम सुधारकर्ता"
+
+#. module: account_followup
+#: field:account_followup.followup,write_date:0
+#: field:account_followup.followup.line,write_date:0
+#: field:account_followup.print,write_date:0
+#: field:account_followup.sending.results,write_date:0
+msgid "Last Updated on"
+msgstr "अंतिम सुधार की तिथि"
+
+#. module: account_followup
+#: field:account_followup.stat,date_move_last:0
+#: field:account_followup.stat.by.partner,date_move_last:0
+msgid "Last move"
+msgstr ""
+
+#. module: account_followup
+#: field:account.move.line,followup_date:0
+msgid "Latest Follow-up"
+msgstr ""
+
+#. module: account_followup
+#: field:res.partner,latest_followup_date:0
+msgid "Latest Follow-up Date"
+msgstr ""
+
+#. module: account_followup
+#: field:res.partner,latest_followup_level_id:0
+msgid "Latest Follow-up Level"
+msgstr ""
+
+#. module: account_followup
+#: field:res.partner,latest_followup_level_id_without_lit:0
+msgid "Latest Follow-up Level without litigation"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.stat:account_followup.view_account_followup_stat_search
+msgid "Latest Follow-up Month"
+msgstr ""
+
+#. module: account_followup
+#: help:res.partner,latest_followup_date:0
+msgid "Latest date that the follow-up level of the partner was changed"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.stat.by.partner,date_followup:0
+msgid "Latest follow-up"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.stat,date_followup:0
+msgid "Latest followup"
+msgstr ""
+
+#. module: account_followup
+#: view:website:account_followup.report_followup
+msgid "Li."
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/account_followup.py:261
+#, python-format
+msgid "Lit."
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.stat:account_followup.view_account_followup_stat_search
+msgid "Litigation"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+#: field:account_followup.followup.line,manual_action:0
+msgid "Manual Action"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.actions.act_window,name:account_followup.action_customer_followup
+msgid "Manual Follow-Ups"
+msgstr ""
+
+#. module: account_followup
+#: view:website:account_followup.report_followup
+msgid "Maturity Date"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.stat.by.partner,max_followup_id:0
+msgid "Max Follow Up Level"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.actions.act_window,name:account_followup.action_customer_my_followup
+#: model:ir.ui.menu,name:account_followup.menu_sale_followup
+msgid "My Follow-Ups"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.customer_followup_search_view
+msgid "My Follow-ups"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.followup,name:0
+msgid "Name"
+msgstr "नाम"
+
+#. module: account_followup
+#: field:account_followup.sending.results,needprinting:0
+msgid "Needs Printing"
+msgstr ""
+
+#. module: account_followup
+#: field:res.partner,payment_next_action:0
+msgid "Next Action"
+msgstr "अगले क्रियाएँ"
+
+#. module: account_followup
+#: field:res.partner,payment_next_action_date:0
+msgid "Next Action Date"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.customer_followup_search_view
+msgid "No Responsible"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.stat:account_followup.view_account_followup_stat_search
+msgid "Not Litigation"
+msgstr ""
+
+#. module: account_followup
+#: sql_constraint:account_followup.followup:0
+msgid "Only one follow-up per company is allowed"
+msgstr ""
+
+#. module: account_followup
+#: help:res.partner,payment_responsible_id:0
+msgid ""
+"Optionally you can assign a user to this field, which will make him "
+"responsible for the action."
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.stat:account_followup.view_account_followup_stat_search
+#: field:account_followup.stat,partner_id:0
+#: field:account_followup.stat.by.partner,partner_id:0
+#: model:ir.model,name:account_followup.model_res_partner
+msgid "Partner"
+msgstr "साथी"
+
+#. module: account_followup
+#: view:account.move.line:account_followup.account_move_line_partner_tree
+msgid "Partner entries"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.stat.by.partner:account_followup.account_followup_stat_by_partner_search
+#: view:account_followup.stat.by.partner:account_followup.account_followup_stat_by_partner_tree
+msgid "Partner to Remind"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.print,partner_ids:0
+msgid "Partners"
+msgstr "साथी"
+
+#. module: account_followup
+#: view:res.partner:account_followup.customer_followup_search_view
+msgid "Partners with Overdue Credits"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.ui.menu,name:account_followup.menu_finance_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid "Payment Follow-up"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form
+msgid "Payment Follow-ups"
+msgstr ""
+
+#. module: account_followup
+#: help:res.partner,payment_note:0
+msgid "Payment Note"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.stat,period_id:0
+msgid "Period"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.model,name:account_followup.model_account_followup_print
+msgid "Print Follow-up & Send Mail to Customers"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid "Print Overdue Payments"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid "Print overdue payments report independent of follow-up line"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.followup.line,description:0
+msgid "Printed Message"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/account_followup.py:314
+#, python-format
+msgid "Printed overdue payments report"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup
+msgid "Reconcile Invoices & Payments"
+msgstr ""
+
+#. module: account_followup
+#: view:website:account_followup.report_followup
+msgid "Ref"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/account_followup.py:258
+#, python-format
+msgid "Reference"
+msgstr "संदर्भ"
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid "Responsible of credit collection"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.model,name:account_followup.model_account_followup_sending_results
+msgid "Results from the sending of the different letters and emails"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup:account_followup.view_account_followup_filter
+msgid "Search Follow-up"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.customer_followup_search_view
+msgid "Search Partner"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.print,email_conf:0
+msgid "Send Email Confirmation"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.print,partner_lang:0
+msgid "Send Email in Partner Language"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.actions.act_window,name:account_followup.action_account_followup_print
+msgid "Send Follow-Ups"
+msgstr ""
+
+#. module: account_followup
+#: model:ir.ui.menu,name:account_followup.account_followup_print_menu
+msgid "Send Letters and Emails"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/wizard/account_followup_print.py:241
+#, python-format
+msgid "Send Letters and Emails: Actions Summary"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid "Send Overdue Email"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+#: field:account_followup.followup.line,send_letter:0
+msgid "Send a Letter"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+#: field:account_followup.followup.line,send_email:0
+msgid "Send an Email"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.print:account_followup.view_account_followup_print
+msgid "Send emails and generate letters"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.print:account_followup.view_account_followup_print
+msgid "Send follow-ups"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.followup.line,sequence:0
+msgid "Sequence"
+msgstr "अनुक्रम"
+
+#. module: account_followup
+#: field:account_followup.print,summary:0
+msgid "Summary"
+msgstr "सारांश"
+
+#. module: account_followup
+#: view:account_followup.sending.results:account_followup.view_account_followup_sending_results
+msgid "Summary of actions"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.print,test_print:0
+msgid "Test Print"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid "The"
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/report/account_followup_print.py:82
+#, python-format
+msgid ""
+"The followup plan defined for the current company does not have any followup"
+" action."
+msgstr ""
+
+#. module: account_followup
+#: help:res.partner,latest_followup_level_id:0
+msgid "The maximum follow-up level"
+msgstr ""
+
+#. module: account_followup
+#: help:res.partner,latest_followup_level_id_without_lit:0
+msgid ""
+"The maximum follow-up level without taking into account the account move "
+"lines with litigation"
+msgstr ""
+
+#. module: account_followup
+#: help:account_followup.followup.line,delay:0
+msgid ""
+"The number of days after the due date of the invoice to wait before sending "
+"the reminder. Could be negative if you want to send a polite alert "
+"beforehand."
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/account_followup.py:313
+#, python-format
+msgid ""
+"The partner does not have any accounting entries to print in the overdue "
+"report for the current company."
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/account_followup.py:319
+#, python-format
+msgid "There is no followup plan defined for the current company."
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.stat:account_followup.view_account_followup_stat_search
+msgid "This Fiscal year"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.print:account_followup.view_account_followup_print
+msgid ""
+"This action will send follow-up emails, print the letters and\n"
+" set the manual actions per customer, according to the follow-up levels defined."
+msgstr ""
+
+#. module: account_followup
+#: help:account_followup.print,date:0
+msgid "This field allow you to select a forecast date to plan your follow-ups"
+msgstr ""
+
+#. module: account_followup
+#: help:res.partner,payment_next_action:0
+msgid ""
+"This is the next action to be taken. It will automatically be set when the "
+"partner gets a follow-up level that requires a manual action. "
+msgstr ""
+
+#. module: account_followup
+#: help:res.partner,payment_next_action_date:0
+msgid ""
+"This is when the manual follow-up is needed. The date will be set to the "
+"current date when the partner gets a follow-up level that requires a manual "
+"action. Can be practical to set manually e.g. to see if he keeps his "
+"promises."
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup:account_followup.view_account_followup_followup_form
+msgid ""
+"To remind customers of paying their invoices, you can\n"
+" define different actions depending on how severely\n"
+" overdue the customer is. These actions are bundled\n"
+" into follow-up levels that are triggered when the due\n"
+" date of an invoice has passed a certain\n"
+" number of days. If there are other overdue invoices for the \n"
+" same customer, the actions of the most \n"
+" overdue invoice will be executed."
+msgstr ""
+
+#. module: account_followup
+#: view:account.move.line:account_followup.account_move_line_partner_tree
+msgid "Total credit"
+msgstr ""
+
+#. module: account_followup
+#: view:account.move.line:account_followup.account_move_line_partner_tree
+msgid "Total debit"
+msgstr ""
+
+#. module: account_followup
+#: view:website:account_followup.report_followup
+msgid "Total:"
+msgstr ""
+
+#. module: account_followup
+#: help:account_followup.followup.line,send_letter:0
+msgid "When processing, it will print a letter"
+msgstr ""
+
+#. module: account_followup
+#: help:account_followup.followup.line,send_email:0
+msgid "When processing, it will send an email"
+msgstr ""
+
+#. module: account_followup
+#: help:account_followup.followup.line,manual_action:0
+msgid ""
+"When processing, it will set the manual action to be taken for that "
+"customer. "
+msgstr ""
+
+#. module: account_followup
+#: field:res.partner,payment_earliest_due_date:0
+msgid "Worst Due Date"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+msgid ""
+"Write here the introduction in the letter,\n"
+" according to the level of the follow-up. You can\n"
+" use the following keywords in the text. Don't\n"
+" forget to translate in all languages you installed\n"
+" using to top right icon."
+msgstr ""
+
+#. module: account_followup
+#: code:addons/account_followup/account_followup.py:291
+#, python-format
+msgid ""
+"You became responsible to do the next action for the payment follow-up of"
+msgstr ""
+
+#. module: account_followup
+#: constraint:account_followup.followup.line:0
+msgid ""
+"Your description is invalid, use the right legend or %% if you want to use "
+"the percent character."
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+msgid "days overdue, do the following actions:"
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
+msgid "e.g. Call the customer, check if it's paid, ..."
+msgstr ""
+
+#. module: account_followup
+#: view:account_followup.print:account_followup.view_account_followup_print
+msgid "or"
+msgstr ""
+
+#. module: account_followup
+#: field:account_followup.print,company_id:0
+#: field:res.partner,unreconciled_aml_ids:0
+msgid "unknown"
+msgstr ""
+
+#. module: account_followup
+#: view:res.partner:account_followup.view_partner_inherit_followup_form
+msgid "⇾ Mark as Done"
+msgstr ""
diff --git a/addons/account_followup/i18n/hr.po b/addons/account_followup/i18n/hr.po
index c10379651eee5..531158f77954c 100644
--- a/addons/account_followup/i18n/hr.po
+++ b/addons/account_followup/i18n/hr.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-11-13 10:54+0000\n"
+"PO-Revision-Date: 2016-09-29 12:49+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Croatian (http://www.transifex.com/odoo/odoo-8/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -923,7 +923,7 @@ msgstr ""
#: model:ir.ui.menu,name:account_followup.menu_finance_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "Payment Follow-up"
-msgstr ""
+msgstr "Prateći koraci plaćanja"
#. module: account_followup
#: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form
diff --git a/addons/account_followup/i18n/ja.po b/addons/account_followup/i18n/ja.po
index 8db1d9ef99f67..2472204276db6 100644
--- a/addons/account_followup/i18n/ja.po
+++ b/addons/account_followup/i18n/ja.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-07-14 11:36+0000\n"
+"PO-Revision-Date: 2016-10-12 03:43+0000\n"
"Last-Translator: Yoshi Tashiro \n"
"Language-Team: Japanese (http://www.transifex.com/odoo/odoo-8/language/ja/)\n"
"MIME-Version: 1.0\n"
@@ -652,7 +652,7 @@ msgstr ""
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_tree
msgid "Follow-up Steps"
-msgstr ""
+msgstr "フォローアップステップ"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:171
diff --git a/addons/account_followup/i18n/nb.po b/addons/account_followup/i18n/nb.po
index 9ea1717e83dea..b930060a599ef 100644
--- a/addons/account_followup/i18n/nb.po
+++ b/addons/account_followup/i18n/nb.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-05-04 11:24+0000\n"
+"PO-Revision-Date: 2016-10-12 09:18+0000\n"
"Last-Translator: Aleksander\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/odoo/odoo-8/language/nb/)\n"
"MIME-Version: 1.0\n"
@@ -478,7 +478,7 @@ msgstr ""
#. module: account_followup
#: view:website:account_followup.report_followup
msgid "Customer ref:"
-msgstr ""
+msgstr "Kundereferanse:"
#. module: account_followup
#: view:website:account_followup.report_followup
diff --git a/addons/account_followup/i18n/tr.po b/addons/account_followup/i18n/tr.po
index 934851cd997e5..b98d690781720 100644
--- a/addons/account_followup/i18n/tr.po
+++ b/addons/account_followup/i18n/tr.po
@@ -4,13 +4,13 @@
#
# Translators:
# FIRST AUTHOR , 2014
-# Murat Kaplan , 2015
+# Murat Kaplan , 2015-2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-12-11 13:24+0000\n"
+"PO-Revision-Date: 2016-10-22 12:32+0000\n"
"Last-Translator: Murat Kaplan \n"
"Language-Team: Turkish (http://www.transifex.com/odoo/odoo-8/language/tr/)\n"
"MIME-Version: 1.0\n"
@@ -320,12 +320,12 @@ msgid ""
" the customer.\n"
" \n"
" "
-msgstr "\n İzleme düzeylerini ve ilişkili eylemlerini tanımlamak için tıklayın.\n
\n Her adım için yapılması gereken eylemleri ve gecikme günlerini belirleyin. Müşteriye\n özel iletiler göndermek için yazıcı ve eposta şablonları kullanılabilir.\n
\n "
+msgstr "\n Tahsilat Takibi düzeylerini ve ilişkili eylemlerini tanımlamak için tıklayın.\n
\n Her adım için yapılması gereken eylemleri ve gecikme günlerini belirleyin. Müşteriye\n özel iletiler göndermek için yazıcı ve eposta şablonları kullanılabilir.\n
\n "
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_followup
msgid "Account Follow-up"
-msgstr "Hesap İzleme"
+msgstr "Hesap Takibi"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
@@ -403,7 +403,7 @@ msgid ""
"Below is the history of the transactions of this\n"
" customer. You can check \"No Follow-up\" in\n"
" order to exclude it from the next follow-up actions."
-msgstr "Aşağıda bu müşteriye ait işlemler geçmişi\n vardır. Sonraki izleme eylemlerinin dışında tutmak için\n \"İzleme Yok\"u işaretleyebilirsiniz."
+msgstr "Aşağıda bu müşteriye ait işlemler geçmişi\n vardır. Sonraki takip eylemlerinin dışında tutmak için\n \"Takip Yok\"u işaretleyebilirsiniz."
#. module: account_followup
#: field:account_followup.stat,blocked:0
@@ -419,7 +419,7 @@ msgstr "İptal"
#: help:account_followup.print,test_print:0
msgid ""
"Check if you want to print follow-ups without changing follow-up level."
-msgstr "İzleme düzeyini değiştirmeden izlemeleri yazdırmak istiyorsanız işaretleyin."
+msgstr "Takip düzeyini değiştirmeden takipleri yazdırmak istiyorsanız işaretleyin."
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
@@ -442,7 +442,7 @@ msgstr "Şirket"
#. module: account_followup
#: view:account.config.settings:account_followup.view_account_config_settings_inherit
msgid "Configure your follow-up levels"
-msgstr "İzleme düzeylerinizi yapılandırın"
+msgstr "Tekip düzeylerinizi yapılandırın"
#. module: account_followup
#: field:account_followup.followup,create_uid:0
@@ -468,7 +468,7 @@ msgstr "Alacak"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_tree
msgid "Customer Followup"
-msgstr "Müşteri İzlemesi"
+msgstr "Müşteri Tahsilat Takibi"
#. module: account_followup
#: field:res.partner,payment_note:0
@@ -488,7 +488,7 @@ msgstr "Tarih:"
#. module: account_followup
#: sql_constraint:account_followup.followup.line:0
msgid "Days of the follow-up levels must be different"
-msgstr "İzleme düzeyi günleri farklı olmalı"
+msgstr "Takip düzeyi günleri farklı olmalı"
#. module: account_followup
#: field:account_followup.stat,debit:0
@@ -506,7 +506,7 @@ msgstr "Açıklama"
#. module: account_followup
#: model:ir.ui.menu,name:account_followup.account_followup_s
msgid "Do Manual Follow-Ups"
-msgstr "Elle İzleme Yap"
+msgstr "Elle Takip Yap"
#. module: account_followup
#: help:account_followup.print,partner_lang:0
@@ -575,22 +575,22 @@ msgstr "İlk Hareket"
#: field:account_followup.followup.line,followup_id:0
#: field:account_followup.stat,followup_id:0
msgid "Follow Ups"
-msgstr "İzlemeler"
+msgstr "Tahsilat Takibi"
#. module: account_followup
#: field:account_followup.print,followup_id:0
msgid "Follow-Up"
-msgstr "İzleme"
+msgstr "Tahsilat Takibi"
#. module: account_followup
#: field:account_followup.followup.line,name:0
msgid "Follow-Up Action"
-msgstr "İzleme Eylemi"
+msgstr "Tahsilat Takibi Eylemi"
#. module: account_followup
#: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow
msgid "Follow-Ups Analysis"
-msgstr "İzleme Analizi"
+msgstr "Tahsilat Takibi Analizi"
#. module: account_followup
#: view:account_followup.followup:account_followup.view_account_followup_followup_form
@@ -599,60 +599,60 @@ msgstr "İzleme Analizi"
#: model:ir.ui.menu,name:account_followup.account_followup_main_menu
#: view:res.partner:account_followup.customer_followup_search_view
msgid "Follow-up"
-msgstr "İzleme"
+msgstr "Tahsilat Takibi"
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_followup_line
msgid "Follow-up Criteria"
-msgstr "İzleme Kriteri"
+msgstr "Tahsilat Takibi Kriteri"
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
msgid "Follow-up Entries with period in current year"
-msgstr "Geçerli yıl içindeki dönemin İzleme Kayıtları"
+msgstr "Geçerli yıl içindeki dönemin Tahsilat Takibi Kayıtları"
#. module: account_followup
#: field:account.move.line,followup_line_id:0
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
msgid "Follow-up Level"
-msgstr "İzleme Düzeyi"
+msgstr "Tahsilat Takibi Düzeyi"
#. module: account_followup
#: model:ir.ui.menu,name:account_followup.account_followup_menu
msgid "Follow-up Levels"
-msgstr "İzleme Düzeyleri"
+msgstr "Tahsilat Takibi Düzeyleri"
#. module: account_followup
#: model:ir.actions.report.xml,name:account_followup.action_report_followup
msgid "Follow-up Report"
-msgstr "İzleme Raporu"
+msgstr "Tahsilat Takibi Raporu"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_search_view
#: field:res.partner,payment_responsible_id:0
msgid "Follow-up Responsible"
-msgstr "İzleme Sorumlusu"
+msgstr "Tahsilat Takibi Sorumlusu"
#. module: account_followup
#: field:account_followup.print,date:0
msgid "Follow-up Sending Date"
-msgstr "İzleme Gönderim Tarihi"
+msgstr "Tahsilat Takibi Gönderim Tarihi"
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_stat
msgid "Follow-up Statistics"
-msgstr "İzleme İstatistikleri"
+msgstr "Tahsilat Takibi İstatistikleri"
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_stat_by_partner
msgid "Follow-up Statistics by Partner"
-msgstr "İş Ortağına göre İzleme İstatistikleri"
+msgstr "İş Ortağına göre Tahsilat Takibi İstatistikleri"
#. module: account_followup
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_form
#: view:account_followup.followup.line:account_followup.view_account_followup_followup_line_tree
msgid "Follow-up Steps"
-msgstr "İzleme Adımları"
+msgstr "Tahsilat Takibi Adımları"
#. module: account_followup
#: code:addons/account_followup/wizard/account_followup_print.py:171
@@ -663,28 +663,28 @@ msgstr "Bunun izleme mektubu "
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_graph
msgid "Follow-up lines"
-msgstr "İzleme kalemleri"
+msgstr "Tahsilat Takibi kalemleri"
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
#: model:ir.actions.act_window,name:account_followup.action_followup_stat
msgid "Follow-ups Sent"
-msgstr "Gönderilen İzlemeler"
+msgstr "Gönderilen Tahsilat Takipleri"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_search_view
msgid "Follow-ups To Do"
-msgstr "Yapılacak İzlemeler"
+msgstr "Yapılacak Tahsilat Takipleri"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_search_view
msgid "Followup Level"
-msgstr "İzleme Seviyesi"
+msgstr "Tahsilat Takibi Seviyesi"
#. module: account_followup
#: help:account_followup.followup.line,sequence:0
msgid "Gives the sequence order when displaying a list of follow-up lines."
-msgstr "İzleme kalemleri görüntüleme sıralamasını verir."
+msgstr "Tahsilat Takibi kalemleri görüntüleme sıralamasını verir."
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
@@ -764,27 +764,27 @@ msgstr "Son Hareket"
#. module: account_followup
#: field:account.move.line,followup_date:0
msgid "Latest Follow-up"
-msgstr "En son İzleme"
+msgstr "En son Tahsilat Takibi"
#. module: account_followup
#: field:res.partner,latest_followup_date:0
msgid "Latest Follow-up Date"
-msgstr "Enson İzleme Tarihi"
+msgstr "Enson Tahsilat Takibi Tarihi"
#. module: account_followup
#: field:res.partner,latest_followup_level_id:0
msgid "Latest Follow-up Level"
-msgstr "Enson İzleme Düzeyi"
+msgstr "En son Tahsilat Takibi Düzeyi"
#. module: account_followup
#: field:res.partner,latest_followup_level_id_without_lit:0
msgid "Latest Follow-up Level without litigation"
-msgstr "İhtilafsız Enson İzleme Düzeyi"
+msgstr "İhtilafsız En son Tahsilat Takibi Düzeyi"
#. module: account_followup
#: view:account_followup.stat:account_followup.view_account_followup_stat_search
msgid "Latest Follow-up Month"
-msgstr "Son İzleme Ayı"
+msgstr "Son Tahsilat Takibi Ayı"
#. module: account_followup
#: help:res.partner,latest_followup_date:0
@@ -794,12 +794,12 @@ msgstr "İş Ortağının izleme düzeyinin değiştirildiği enson tarih"
#. module: account_followup
#: field:account_followup.stat.by.partner,date_followup:0
msgid "Latest follow-up"
-msgstr "Enson İzleme"
+msgstr "En son Tahsilat Takibi"
#. module: account_followup
#: field:account_followup.stat,date_followup:0
msgid "Latest followup"
-msgstr "En son İzleme"
+msgstr "En son Tahsilat Takibi"
#. module: account_followup
#: view:website:account_followup.report_followup
@@ -826,7 +826,7 @@ msgstr "Elle Eylem"
#. module: account_followup
#: model:ir.actions.act_window,name:account_followup.action_customer_followup
msgid "Manual Follow-Ups"
-msgstr "Elle İzleme"
+msgstr "Elle Tahsilat Takibi"
#. module: account_followup
#: view:website:account_followup.report_followup
@@ -836,18 +836,18 @@ msgstr "Vade Sonu Tarihi"
#. module: account_followup
#: field:account_followup.stat.by.partner,max_followup_id:0
msgid "Max Follow Up Level"
-msgstr "Enüst İzleme Düzeyi"
+msgstr "En Üst Tahsilat Takibi Düzeyi"
#. module: account_followup
#: model:ir.actions.act_window,name:account_followup.action_customer_my_followup
#: model:ir.ui.menu,name:account_followup.menu_sale_followup
msgid "My Follow-Ups"
-msgstr "İzlemelerim"
+msgstr "Tahsilat Takibi Kayıtlarım"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_search_view
msgid "My Follow-ups"
-msgstr "İzlemelerim"
+msgstr "Tahsilat Takibi Kayıtlarım"
#. module: account_followup
#: field:account_followup.followup,name:0
@@ -924,12 +924,12 @@ msgstr "Gecikmiş Borçlu İş Ortakları"
#: model:ir.ui.menu,name:account_followup.menu_finance_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "Payment Follow-up"
-msgstr "Ödeme İzlemesi"
+msgstr "Tahsilat Takibi"
#. module: account_followup
#: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form
msgid "Payment Follow-ups"
-msgstr "Ödeme İzlemeleri"
+msgstr "Tahsilat Takipleri"
#. module: account_followup
#: help:res.partner,payment_note:0
@@ -944,7 +944,7 @@ msgstr "Dönem"
#. module: account_followup
#: model:ir.model,name:account_followup.model_account_followup_print
msgid "Print Follow-up & Send Mail to Customers"
-msgstr "Müşterilere İzleme Yazdır & Posta Gönder"
+msgstr "Müşterilere Tahsilat Takibi Yazısı Yazdır & E-Posta Gönder"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
@@ -954,7 +954,7 @@ msgstr "Vadesi Geçmiş Ödemeleri Yazdır"
#. module: account_followup
#: view:res.partner:account_followup.view_partner_inherit_followup_form
msgid "Print overdue payments report independent of follow-up line"
-msgstr "İzleme kalemlerinden ayrı olarak vadesi geçen ödemeler raporu yazdır"
+msgstr "Tahsilat Takibi kalemlerinden ayrı olarak vadesi geçen ödemeler raporu yazdır"
#. module: account_followup
#: field:account_followup.followup.line,description:0
@@ -996,7 +996,7 @@ msgstr "Gönderilen farklı mektup ve epostalardan alınan sonuçlar"
#. module: account_followup
#: view:account_followup.followup:account_followup.view_account_followup_filter
msgid "Search Follow-up"
-msgstr "İzleme Ara"
+msgstr "Tahsilat Takibi Ara"
#. module: account_followup
#: view:res.partner:account_followup.customer_followup_search_view
@@ -1016,7 +1016,7 @@ msgstr "Epostayı İş Ortağının Dilinde Gönder"
#. module: account_followup
#: model:ir.actions.act_window,name:account_followup.action_account_followup_print
msgid "Send Follow-Ups"
-msgstr "İzlemeleri Gönder"
+msgstr "Gönder"
#. module: account_followup
#: model:ir.ui.menu,name:account_followup.account_followup_print_menu
@@ -1054,7 +1054,7 @@ msgstr "Epostalar gönder ve mektuplar oluştur"
#. module: account_followup
#: view:account_followup.print:account_followup.view_account_followup_print
msgid "Send follow-ups"
-msgstr "İzleme gönder"
+msgstr "Gönder"
#. module: account_followup
#: field:account_followup.followup.line,sequence:0
@@ -1221,7 +1221,7 @@ msgstr "Buraya izleme düzeyine uygun olarak\n bilgil
#, python-format
msgid ""
"You became responsible to do the next action for the payment follow-up of"
-msgstr "Bunun ödeme izlemesi için yapılacak sonraki eylemden sorumlu oldunuz"
+msgstr "Bunun tahsilat takibi için yapılacak sonraki eylemden sorumlu oldunuz"
#. module: account_followup
#: constraint:account_followup.followup.line:0
diff --git a/addons/account_followup/i18n/zh_CN.po b/addons/account_followup/i18n/zh_CN.po
index c6c424c25d20f..ef4e4095b43cc 100644
--- a/addons/account_followup/i18n/zh_CN.po
+++ b/addons/account_followup/i18n/zh_CN.po
@@ -6,7 +6,7 @@
# FIRST AUTHOR , 2014
# Jeffery Chenn , 2016
# liAnGjiA , 2015
-# liAnGjiA , 2015
+# liAnGjiA , 2015-2016
# mrshelly , 2015
# liAnGjiA , 2015
msgid ""
@@ -14,7 +14,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-22 02:43+0000\n"
+"PO-Revision-Date: 2016-09-03 18:14+0000\n"
"Last-Translator: liAnGjiA \n"
"Language-Team: Chinese (China) (http://www.transifex.com/odoo/odoo-8/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
@@ -1247,7 +1247,7 @@ msgstr "例如,打电话给客户,确认是否付款,..."
#. module: account_followup
#: view:account_followup.print:account_followup.view_account_followup_print
msgid "or"
-msgstr "or"
+msgstr "或"
#. module: account_followup
#: field:account_followup.print,company_id:0
diff --git a/addons/account_payment/i18n/fi.po b/addons/account_payment/i18n/fi.po
index 459cdc6301083..2a4d3e6ac929b 100644
--- a/addons/account_payment/i18n/fi.po
+++ b/addons/account_payment/i18n/fi.po
@@ -5,14 +5,14 @@
# Translators:
# FIRST AUTHOR , 2014
# Jarmo Kortetjärvi , 2015
-# Kari Lindgren , 2015
+# Kari Lindgren , 2015-2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-09-09 13:22+0000\n"
-"Last-Translator: Jarmo Kortetjärvi \n"
+"PO-Revision-Date: 2016-09-07 08:44+0000\n"
+"Last-Translator: Kari Lindgren \n"
"Language-Team: Finnish (http://www.transifex.com/odoo/odoo-8/language/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -516,7 +516,7 @@ msgstr "Maksumääräykset"
#: model:ir.actions.act_window,name:account_payment.action_account_payment_populate_statement
#: model:ir.actions.act_window,name:account_payment.action_account_populate_statement_confirm
msgid "Payment Populate statement"
-msgstr ""
+msgstr "Täytä maksutiliote"
#. module: account_payment
#: view:website:account_payment.report_paymentorder
@@ -547,12 +547,12 @@ msgstr "Maksumääräys"
#. module: account_payment
#: model:ir.actions.act_window,name:account_payment.action_create_payment_order
msgid "Populate Payment"
-msgstr ""
+msgstr "Täytä maksu"
#. module: account_payment
#: view:account.payment.populate.statement:account_payment.account_payment_populate_statement_view
msgid "Populate Statement:"
-msgstr ""
+msgstr "Täytä tiliote:"
#. module: account_payment
#: field:payment.order,date_prefered:0
@@ -636,7 +636,7 @@ msgstr "Jatkoa viestiriville 1"
#: code:addons/account_payment/account_move_line.py:57
#, python-format
msgid "There is no partner defined on the entry line."
-msgstr ""
+msgstr "Riville ei ole määritelty kumppania."
#. module: account_payment
#: help:payment.line,move_line_id:0
diff --git a/addons/account_payment/i18n/hi.po b/addons/account_payment/i18n/hi.po
index 0de69f88122b8..69917ee923799 100644
--- a/addons/account_payment/i18n/hi.po
+++ b/addons/account_payment/i18n/hi.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-02 11:00+0000\n"
+"PO-Revision-Date: 2016-09-09 21:47+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -59,7 +59,7 @@ msgstr ""
#: view:payment.order:account_payment.view_payment_order_form
#: view:website:account_payment.report_paymentorder
msgid "Amount"
-msgstr ""
+msgstr "रकम"
#. module: account_payment
#: view:payment.line:account_payment.view_payment_line_tree
@@ -84,7 +84,7 @@ msgstr ""
#. module: account_payment
#: view:website:account_payment.report_paymentorder
msgid "Bank Account"
-msgstr ""
+msgstr "बैंक खाता"
#. module: account_payment
#: help:payment.mode,bank_id:0
@@ -185,7 +185,7 @@ msgstr "निर्मित"
#: field:payment.line,create_uid:0 field:payment.mode,create_uid:0
#: field:payment.order,create_uid:0 field:payment.order.create,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: account_payment
#: field:account.payment.make.payment,create_date:0
@@ -193,7 +193,7 @@ msgstr ""
#: field:payment.mode,create_date:0 field:payment.order,create_date:0
#: field:payment.order.create,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: account_payment
#: field:payment.order,date_created:0
@@ -203,7 +203,7 @@ msgstr "निर्माण दिनांक"
#. module: account_payment
#: view:website:account_payment.report_paymentorder
msgid "Currency"
-msgstr ""
+msgstr "मुद्रा"
#. module: account_payment
#: view:payment.line:account_payment.view_payment_line_tree
@@ -262,7 +262,7 @@ msgstr "प्रभावी तिथि"
#: view:payment.order.create:account_payment.view_create_payment_order_lines
#: field:payment.order.create,entries:0
msgid "Entries"
-msgstr ""
+msgstr "प्रविष्टियां"
#. module: account_payment
#: view:payment.line:account_payment.view_payment_line_form
@@ -318,7 +318,7 @@ msgstr ""
#: view:payment.mode:account_payment.view_payment_mode_search
#: view:payment.order:account_payment.view_payment_order_search
msgid "Group By"
-msgstr ""
+msgstr "वर्गीकरण का आधार"
#. module: account_payment
#: field:account.payment.make.payment,id:0
@@ -327,7 +327,7 @@ msgstr ""
#: field:payment.order.create,id:0
#: field:report.account_payment.report_paymentorder,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: account_payment
#: help:payment.line,date:0
@@ -394,7 +394,7 @@ msgstr ""
#: field:payment.line,write_uid:0 field:payment.mode,write_uid:0
#: field:payment.order,write_uid:0 field:payment.order.create,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: account_payment
#: field:account.payment.make.payment,write_date:0
@@ -402,7 +402,7 @@ msgstr ""
#: field:payment.line,write_date:0 field:payment.mode,write_date:0
#: field:payment.order,write_date:0 field:payment.order.create,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: account_payment
#: view:account.payment.make.payment:account_payment.account_payment_make_payment_view
diff --git a/addons/account_payment/i18n/hr.po b/addons/account_payment/i18n/hr.po
index 4f7f16d6c3d2a..d0ee846dd98dd 100644
--- a/addons/account_payment/i18n/hr.po
+++ b/addons/account_payment/i18n/hr.po
@@ -3,14 +3,15 @@
# * account_payment
#
# Translators:
+# Bole , 2016
# FIRST AUTHOR , 2014
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-10-19 07:36+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-09-29 13:55+0000\n"
+"Last-Translator: Bole \n"
"Language-Team: Croatian (http://www.transifex.com/odoo/odoo-8/language/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -43,7 +44,7 @@ msgstr "Plaćanje"
#. module: account_payment
#: model:res.groups,name:account_payment.group_account_payment
msgid "Accounting / Payments"
-msgstr ""
+msgstr "Računovodstvo / Plaćanja"
#. module: account_payment
#: help:payment.line,info_owner:0
@@ -161,7 +162,7 @@ msgstr "Valuta organizacije"
#. module: account_payment
#: view:website:account_payment.report_paymentorder
msgid "Company Currency:"
-msgstr ""
+msgstr "Valuta tvrtke:"
#. module: account_payment
#: view:payment.order:account_payment.view_payment_order_form
@@ -296,7 +297,7 @@ msgstr "Datum izvršenja"
#. module: account_payment
#: view:website:account_payment.report_paymentorder
msgid "Execution:"
-msgstr ""
+msgstr "Izvršavanje:"
#. module: account_payment
#: selection:payment.order,date_prefered:0
@@ -519,7 +520,7 @@ msgstr "Popuni nalog za plaćanje"
#. module: account_payment
#: view:website:account_payment.report_paymentorder
msgid "Payment Type:"
-msgstr ""
+msgstr "Vrsta plaćanja:"
#. module: account_payment
#: help:payment.line,amount:0
@@ -555,7 +556,7 @@ msgstr "Populate Statement:"
#. module: account_payment
#: field:payment.order,date_prefered:0
msgid "Preferred Date"
-msgstr ""
+msgstr "Željeni datum"
#. module: account_payment
#: field:payment.order,reference:0
diff --git a/addons/account_payment/i18n/sq.po b/addons/account_payment/i18n/sq.po
index 9efacbcdd0d76..ed01c970e7625 100644
--- a/addons/account_payment/i18n/sq.po
+++ b/addons/account_payment/i18n/sq.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-03-31 14:03+0000\n"
+"PO-Revision-Date: 2016-08-24 11:16+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Albanian (http://www.transifex.com/odoo/odoo-8/language/sq/)\n"
"MIME-Version: 1.0\n"
@@ -646,7 +646,7 @@ msgstr ""
#: field:payment.order,total:0
#: view:website:account_payment.report_paymentorder
msgid "Total"
-msgstr ""
+msgstr "Total"
#. module: account_payment
#: view:website:account_payment.report_paymentorder
diff --git a/addons/account_payment/i18n/zh_CN.po b/addons/account_payment/i18n/zh_CN.po
index b2bc3fe4ca495..fd562272dc14a 100644
--- a/addons/account_payment/i18n/zh_CN.po
+++ b/addons/account_payment/i18n/zh_CN.po
@@ -6,13 +6,14 @@
# FIRST AUTHOR , 2012,2014
# Jeffery Chenn , 2015
# Jeffery Chenn , 2016
+# liAnGjiA , 2016
# mrshelly , 2015
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-22 02:43+0000\n"
+"PO-Revision-Date: 2016-09-03 18:10+0000\n"
"Last-Translator: liAnGjiA \n"
"Language-Team: Chinese (China) (http://www.transifex.com/odoo/odoo-8/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
@@ -722,4 +723,4 @@ msgstr "增加到付款单"
#: view:payment.order.create:account_payment.view_create_payment_order
#: view:payment.order.create:account_payment.view_create_payment_order_lines
msgid "or"
-msgstr "or"
+msgstr "或"
diff --git a/addons/account_sequence/i18n/fa.po b/addons/account_sequence/i18n/fa.po
index 1cf44051b7d89..5ef293e93552c 100644
--- a/addons/account_sequence/i18n/fa.po
+++ b/addons/account_sequence/i18n/fa.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:45+0000\n"
+"PO-Revision-Date: 2016-08-28 18:45+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Persian (http://www.transifex.com/odoo/odoo-8/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -36,7 +36,7 @@ msgstr "شرکت"
#. module: account_sequence
#: view:account.sequence.installer:account_sequence.view_account_sequence_installer
msgid "Configure"
-msgstr ""
+msgstr "پیکربندی"
#. module: account_sequence
#: view:account.sequence.installer:account_sequence.view_account_sequence_installer
@@ -113,7 +113,7 @@ msgstr "شماره پسین"
#. module: account_sequence
#: help:account.sequence.installer,number_next:0
msgid "Next number of this sequence"
-msgstr ""
+msgstr "شماره بعدی از این ردیف"
#. module: account_sequence
#: field:account.sequence.installer,padding:0
diff --git a/addons/account_sequence/i18n/hi.po b/addons/account_sequence/i18n/hi.po
index 0c560c0a13482..929693b06497c 100644
--- a/addons/account_sequence/i18n/hi.po
+++ b/addons/account_sequence/i18n/hi.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:45+0000\n"
+"PO-Revision-Date: 2016-09-05 19:06+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -20,7 +20,7 @@ msgstr ""
#. module: account_sequence
#: model:ir.model,name:account_sequence.model_account_move
msgid "Account Entry"
-msgstr ""
+msgstr "खाते में एंट्री"
#. module: account_sequence
#: view:account.sequence.installer:account_sequence.view_account_sequence_installer
@@ -46,17 +46,17 @@ msgstr ""
#. module: account_sequence
#: field:account.sequence.installer,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: account_sequence
#: field:account.sequence.installer,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: account_sequence
#: field:account.sequence.installer,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: account_sequence
#: field:account.sequence.installer,number_increment:0
@@ -93,12 +93,12 @@ msgstr ""
#. module: account_sequence
#: field:account.sequence.installer,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: account_sequence
#: field:account.sequence.installer,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: account_sequence
#: field:account.sequence.installer,name:0
diff --git a/addons/account_sequence/i18n/lv.po b/addons/account_sequence/i18n/lv.po
index 37e624afea48c..845e14dd7f692 100644
--- a/addons/account_sequence/i18n/lv.po
+++ b/addons/account_sequence/i18n/lv.po
@@ -4,13 +4,14 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# Nauris Sedlers , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:45+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-08-24 14:08+0000\n"
+"Last-Translator: Nauris Sedlers \n"
"Language-Team: Latvian (http://www.transifex.com/odoo/odoo-8/language/lv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -126,7 +127,7 @@ msgstr "Numerācijas garums"
msgid ""
"Odoo will automatically adds some '0' on the left of the 'Next Number' to "
"get the required padding size."
-msgstr ""
+msgstr "Odoo automātiski 'Nākamais Numurs' kreisajā pusē pievienos nepieciešamo '0' skaitu, lai sasniegtu nepieciešamo zīmju skaitu."
#. module: account_sequence
#: field:account.sequence.installer,prefix:0
diff --git a/addons/account_test/i18n/ca.po b/addons/account_test/i18n/ca.po
index 2a7488e5916b8..45e503efb90ea 100644
--- a/addons/account_test/i18n/ca.po
+++ b/addons/account_test/i18n/ca.po
@@ -3,13 +3,14 @@
# * account_test
#
# Translators:
+# RGB Consulting , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-01 09:54+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-08-24 08:07+0000\n"
+"Last-Translator: RGB Consulting \n"
"Language-Team: Catalan (http://www.transifex.com/odoo/odoo-8/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -24,19 +25,19 @@ msgid ""
" Click to create Accounting Test.\n"
" \n"
" "
-msgstr ""
+msgstr "\nFaci clic per a crear una prova de comptabilitat.\n
\n "
#. module: account_test
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
#: model:ir.actions.report.xml,name:account_test.account_assert_test_report
#: model:ir.ui.menu,name:account_test.menu_action_license
msgid "Accounting Tests"
-msgstr ""
+msgstr "Proves comptables"
#. module: account_test
#: view:website:account_test.report_accounttest
msgid "Accouting tests on"
-msgstr ""
+msgstr "Proves de comptabilitat en"
#. module: account_test
#: field:accounting.assert.test,active:0
@@ -46,65 +47,65 @@ msgstr "Actiu"
#. module: account_test
#: model:accounting.assert.test,desc:account_test.account_test_03
msgid "Check if movement lines are balanced and have the same date and period"
-msgstr ""
+msgstr "Comprovar si les línies de moviment estan compensades i tenen la mateixa data i període"
#. module: account_test
#: model:accounting.assert.test,desc:account_test.account_test_02
msgid ""
"Check if the balance of the new opened fiscal year matches with last year's "
"balance"
-msgstr ""
+msgstr "Comprovar si el saldo del nou exercici fiscal obert casa amb el saldo del últim any"
#. module: account_test
#: model:accounting.assert.test,desc:account_test.account_test_04
msgid "Check if the totally reconciled movements are balanced"
-msgstr ""
+msgstr "Comprovar si els moviments totalment conciliats estan compensats"
#. module: account_test
#: model:accounting.assert.test,desc:account_test.account_test_07
msgid ""
"Check on bank statement that the Closing Balance = Starting Balance + sum of"
" statement lines"
-msgstr ""
+msgstr "Comprovar en els extractes bancaris que el saldo de tancament = saldo d'inici + suma de les línies del extracte"
#. module: account_test
#: model:accounting.assert.test,desc:account_test.account_test_08
msgid "Check that general accounts and partners on account moves are active"
-msgstr ""
+msgstr "Comprovar que els comptes generals i les empreses als apunts comptables estiguin actius"
#. module: account_test
#: model:accounting.assert.test,desc:account_test.account_test_06
msgid "Check that paid/reconciled invoices are not in 'Open' state"
-msgstr ""
+msgstr "Comprovar que les factures pagades/conciliades no estan en estat 'Obert'"
#. module: account_test
#: model:accounting.assert.test,desc:account_test.account_test_05_2
msgid ""
"Check that reconciled account moves, that define Payable and Receivable "
"accounts, are belonging to reconciled invoices"
-msgstr ""
+msgstr "Comprovar que els apunts comptables conciliats que defineixin comptes a cobrar i a pagar pertanyin a factures conciliades"
#. module: account_test
#: model:accounting.assert.test,desc:account_test.account_test_05
msgid ""
"Check that reconciled invoice for Sales/Purchases has reconciled entries for"
" Payable and Receivable Accounts"
-msgstr ""
+msgstr "Comprovar que la factura conciliada per vendes/compres té apunts conciliats pels comptes a cobrar i a pagar"
#. module: account_test
#: model:accounting.assert.test,desc:account_test.account_test_06_1
msgid "Check that there's no move for any account with « View » account type"
-msgstr ""
+msgstr "Comprovar que no hi ha apunts per cap compte amb tipus de compte « View » "
#. module: account_test
#: model:accounting.assert.test,desc:account_test.account_test_01
msgid "Check the balance: Debit sum = Credit sum"
-msgstr ""
+msgstr "Comprovar el saldo : suma del deure = suma del haver"
#. module: account_test
#: view:accounting.assert.test:account_test.account_assert_form
msgid "Code Help"
-msgstr ""
+msgstr "Ajuda del codi"
#. module: account_test
#: view:accounting.assert.test:account_test.account_assert_form
@@ -129,7 +130,7 @@ msgid ""
" '''\n"
" cr.execute(sql)\n"
" result = cr.dictfetchall()"
-msgstr ""
+msgstr "El codi sempre ha d'establir una variable anomenada 'result' amb el resultat de la prova, que pot ser una llista o un diccionari. Si 'result és una llista buida, significa que la prova ha estat satisfactòria. En cas contrari, es tractarà de traduir i imprimir el que hi ha dintre de 'result'.\n\nSi el resultat de la prova és un diccionari, es pot establir una variable anomenada 'column_order' per elegir en quin ordre es volen imprimir el contingut de 'result'.\n\nEn cas de necessitar-les, es poden utilitzar les següents variables al codi:\n* cr: cursor a la base de dades\n* uid: ID de l'usuari actual\n\nEn qualsevol cas, el codi ha de ser sentencies Python legals amb correcta indentació (si fos necessari).\n\nExemple:\nsql = '''SELECT id, name, ref, date\nFROM account_move_line\nWHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n'''\ncr.execute(sql)\nresult=cr.dictfetchall()"
#. module: account_test
#: field:accounting.assert.test,create_uid:0
@@ -195,63 +196,63 @@ msgstr "Seqüència"
#. module: account_test
#: model:accounting.assert.test,name:account_test.account_test_01
msgid "Test 1: General balance"
-msgstr ""
+msgstr "Prova 1 : Balanç general"
#. module: account_test
#: model:accounting.assert.test,name:account_test.account_test_02
msgid "Test 2: Opening a fiscal year"
-msgstr ""
+msgstr "Prova 2 : Obrir un exercici fiscal"
#. module: account_test
#: model:accounting.assert.test,name:account_test.account_test_03
msgid "Test 3: Movement lines"
-msgstr ""
+msgstr "Prova 3 : Línies de moviment"
#. module: account_test
#: model:accounting.assert.test,name:account_test.account_test_04
msgid "Test 4: Totally reconciled mouvements"
-msgstr ""
+msgstr "Prova 4 : Moviments totalment conciliats"
#. module: account_test
#: model:accounting.assert.test,name:account_test.account_test_05
msgid ""
"Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
-msgstr ""
+msgstr "Prova 5.1 : Línies de comptabilitat a cobrar i a pagar de factures no conciliades"
#. module: account_test
#: model:accounting.assert.test,name:account_test.account_test_05_2
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
-msgstr ""
+msgstr "Prova 5.2 : Factures conciliades i comptes a cobrar/a pagar"
#. module: account_test
#: model:accounting.assert.test,name:account_test.account_test_06
msgid "Test 6 : Invoices status"
-msgstr ""
+msgstr "Prova 6 : Estat de la factura"
#. module: account_test
#: model:accounting.assert.test,name:account_test.account_test_06_1
msgid "Test 7: « View » account type"
-msgstr ""
+msgstr "Prova 7: « Veure » tipus de compte"
#. module: account_test
#: model:accounting.assert.test,name:account_test.account_test_07
msgid "Test 8 : Closing balance on bank statements"
-msgstr ""
+msgstr "Prova 8 : Saldo de tancament en els extractes bancaris"
#. module: account_test
#: model:accounting.assert.test,name:account_test.account_test_08
msgid "Test 9 : Accounts and partners on account moves"
-msgstr ""
+msgstr "Prova 9 : Comptes i empreses en els apunts comptables"
#. module: account_test
#: field:accounting.assert.test,desc:0
msgid "Test Description"
-msgstr ""
+msgstr "Descripció de la prova"
#. module: account_test
#: field:accounting.assert.test,name:0
msgid "Test Name"
-msgstr ""
+msgstr "Nom de la prova"
#. module: account_test
#: view:accounting.assert.test:account_test.account_assert_form
@@ -263,4 +264,4 @@ msgstr "Test"
#: code:addons/account_test/report/account_test_report.py:78
#, python-format
msgid "The test was passed successfully"
-msgstr ""
+msgstr "La prova ha estat superada satisfactòriament"
diff --git a/addons/account_test/i18n/cs.po b/addons/account_test/i18n/cs.po
index 38df1b6daae12..67779af016d3e 100644
--- a/addons/account_test/i18n/cs.po
+++ b/addons/account_test/i18n/cs.po
@@ -8,9 +8,9 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-05-29 12:57+0000\n"
+"PO-Revision-Date: 2016-10-26 19:03+0000\n"
"Last-Translator: Martin Trigaux\n"
-"Language-Team: Czech (http://www.transifex.com/projects/p/odoo-8/language/cs/)\n"
+"Language-Team: Czech (http://www.transifex.com/odoo/odoo-8/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
@@ -149,7 +149,7 @@ msgstr "Popis"
#. module: account_test
#: view:website:account_test.report_accounttest
msgid "Description:"
-msgstr ""
+msgstr "Popis"
#. module: account_test
#: view:accounting.assert.test:account_test.account_assert_form
diff --git a/addons/account_test/i18n/hi.po b/addons/account_test/i18n/hi.po
new file mode 100644
index 0000000000000..18673b7f1ffd8
--- /dev/null
+++ b/addons/account_test/i18n/hi.po
@@ -0,0 +1,266 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * account_test
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2016-09-01 20:43+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: account_test
+#: model:ir.actions.act_window,help:account_test.action_accounting_assert
+msgid ""
+"\n"
+" Click to create Accounting Test.\n"
+"
\n"
+" "
+msgstr ""
+
+#. module: account_test
+#: model:ir.actions.act_window,name:account_test.action_accounting_assert
+#: model:ir.actions.report.xml,name:account_test.account_assert_test_report
+#: model:ir.ui.menu,name:account_test.menu_action_license
+msgid "Accounting Tests"
+msgstr ""
+
+#. module: account_test
+#: view:website:account_test.report_accounttest
+msgid "Accouting tests on"
+msgstr ""
+
+#. module: account_test
+#: field:accounting.assert.test,active:0
+msgid "Active"
+msgstr "सक्रिय"
+
+#. module: account_test
+#: model:accounting.assert.test,desc:account_test.account_test_03
+msgid "Check if movement lines are balanced and have the same date and period"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,desc:account_test.account_test_02
+msgid ""
+"Check if the balance of the new opened fiscal year matches with last year's "
+"balance"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,desc:account_test.account_test_04
+msgid "Check if the totally reconciled movements are balanced"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,desc:account_test.account_test_07
+msgid ""
+"Check on bank statement that the Closing Balance = Starting Balance + sum of"
+" statement lines"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,desc:account_test.account_test_08
+msgid "Check that general accounts and partners on account moves are active"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,desc:account_test.account_test_06
+msgid "Check that paid/reconciled invoices are not in 'Open' state"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,desc:account_test.account_test_05_2
+msgid ""
+"Check that reconciled account moves, that define Payable and Receivable "
+"accounts, are belonging to reconciled invoices"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,desc:account_test.account_test_05
+msgid ""
+"Check that reconciled invoice for Sales/Purchases has reconciled entries for"
+" Payable and Receivable Accounts"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,desc:account_test.account_test_06_1
+msgid "Check that there's no move for any account with « View » account type"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,desc:account_test.account_test_01
+msgid "Check the balance: Debit sum = Credit sum"
+msgstr ""
+
+#. module: account_test
+#: view:accounting.assert.test:account_test.account_assert_form
+msgid "Code Help"
+msgstr ""
+
+#. module: account_test
+#: view:accounting.assert.test:account_test.account_assert_form
+msgid ""
+"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
+"a dictionary. If `result` is an empty list, it means that the test was succesful. Otherwise it will\n"
+"try to translate and print what is inside `result`.\n"
+"\n"
+"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
+"what order you want to print `result`'s content.\n"
+"\n"
+"Should you need them, you can also use the following variables into your code:\n"
+" * cr: cursor to the database\n"
+" * uid: ID of the current user\n"
+"\n"
+"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
+"\n"
+"Example: \n"
+" sql = '''SELECT id, name, ref, date\n"
+" FROM account_move_line \n"
+" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
+" '''\n"
+" cr.execute(sql)\n"
+" result = cr.dictfetchall()"
+msgstr ""
+
+#. module: account_test
+#: field:accounting.assert.test,create_uid:0
+msgid "Created by"
+msgstr "निर्माण कर्ता"
+
+#. module: account_test
+#: field:accounting.assert.test,create_date:0
+msgid "Created on"
+msgstr "निर्माण तिथि"
+
+#. module: account_test
+#: view:accounting.assert.test:account_test.account_assert_form
+msgid "Description"
+msgstr "विवरण"
+
+#. module: account_test
+#: view:website:account_test.report_accounttest
+msgid "Description:"
+msgstr ""
+
+#. module: account_test
+#: view:accounting.assert.test:account_test.account_assert_form
+msgid "Expression"
+msgstr ""
+
+#. module: account_test
+#: field:accounting.assert.test,id:0
+#: field:report.account_test.report_accounttest,id:0
+msgid "ID"
+msgstr "पहचान"
+
+#. module: account_test
+#: field:accounting.assert.test,write_uid:0
+msgid "Last Updated by"
+msgstr "अंतिम सुधारकर्ता"
+
+#. module: account_test
+#: field:accounting.assert.test,write_date:0
+msgid "Last Updated on"
+msgstr "अंतिम सुधार की तिथि"
+
+#. module: account_test
+#: view:website:account_test.report_accounttest
+msgid "Name:"
+msgstr ""
+
+#. module: account_test
+#: view:accounting.assert.test:account_test.account_assert_form
+msgid "Python Code"
+msgstr ""
+
+#. module: account_test
+#: field:accounting.assert.test,code_exec:0
+msgid "Python code"
+msgstr ""
+
+#. module: account_test
+#: field:accounting.assert.test,sequence:0
+msgid "Sequence"
+msgstr "अनुक्रम"
+
+#. module: account_test
+#: model:accounting.assert.test,name:account_test.account_test_01
+msgid "Test 1: General balance"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,name:account_test.account_test_02
+msgid "Test 2: Opening a fiscal year"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,name:account_test.account_test_03
+msgid "Test 3: Movement lines"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,name:account_test.account_test_04
+msgid "Test 4: Totally reconciled mouvements"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,name:account_test.account_test_05
+msgid ""
+"Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,name:account_test.account_test_05_2
+msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,name:account_test.account_test_06
+msgid "Test 6 : Invoices status"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,name:account_test.account_test_06_1
+msgid "Test 7: « View » account type"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,name:account_test.account_test_07
+msgid "Test 8 : Closing balance on bank statements"
+msgstr ""
+
+#. module: account_test
+#: model:accounting.assert.test,name:account_test.account_test_08
+msgid "Test 9 : Accounts and partners on account moves"
+msgstr ""
+
+#. module: account_test
+#: field:accounting.assert.test,desc:0
+msgid "Test Description"
+msgstr ""
+
+#. module: account_test
+#: field:accounting.assert.test,name:0
+msgid "Test Name"
+msgstr ""
+
+#. module: account_test
+#: view:accounting.assert.test:account_test.account_assert_form
+#: view:accounting.assert.test:account_test.account_assert_tree
+msgid "Tests"
+msgstr ""
+
+#. module: account_test
+#: code:addons/account_test/report/account_test_report.py:78
+#, python-format
+msgid "The test was passed successfully"
+msgstr ""
diff --git a/addons/account_voucher/account_voucher.py b/addons/account_voucher/account_voucher.py
index 949239f8124c9..2d414569a5e24 100644
--- a/addons/account_voucher/account_voucher.py
+++ b/addons/account_voucher/account_voucher.py
@@ -757,14 +757,15 @@ def _remove_noise_in_o2m():
move_lines_found.append(line.id)
break
#otherwise we will split the voucher amount on each line (by most old first)
- total_credit += line.credit or 0.0
- total_debit += line.debit or 0.0
+ total_credit += line.credit and line.amount_residual or 0.0
+ total_debit += line.debit and line.amount_residual or 0.0
elif currency_id == line.currency_id.id:
if line.amount_residual_currency == price:
move_lines_found.append(line.id)
break
- total_credit += line.credit and line.amount_currency or 0.0
- total_debit += line.debit and line.amount_currency or 0.0
+ line_residual = currency_pool.compute(cr, uid, company_currency, currency_id, abs(line.amount_residual), context=context_multi_currency)
+ total_credit += line.credit and line_residual or 0.0
+ total_debit += line.debit and line_residual or 0.0
remaining_amount = price
#voucher line creation
diff --git a/addons/account_voucher/i18n/bs.po b/addons/account_voucher/i18n/bs.po
index 06a548d37827f..9fb7189ed4593 100644
--- a/addons/account_voucher/i18n/bs.po
+++ b/addons/account_voucher/i18n/bs.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-04-04 22:46+0000\n"
+"PO-Revision-Date: 2016-11-21 12:58+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Bosnian (http://www.transifex.com/odoo/odoo-8/language/bs/)\n"
"MIME-Version: 1.0\n"
@@ -379,7 +379,7 @@ msgstr "Datum dospijeća"
#. module: account_voucher
#: view:sale.receipt.report:account_voucher.view_sale_receipt_report_search
msgid "Due Month"
-msgstr ""
+msgstr "Mjesec dugovanja"
#. module: account_voucher
#: help:account.voucher,date:0
@@ -430,7 +430,7 @@ msgstr "Kompletno zatvaranje"
#: code:addons/account_voucher/account_voucher.py:1104
#, python-format
msgid "Go to the configuration panel"
-msgstr ""
+msgstr "Idite na panel konfiguracije"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_voucher_filter
diff --git a/addons/account_voucher/i18n/ca.po b/addons/account_voucher/i18n/ca.po
index 0da3c7f0922f6..c73d2f5ec002b 100644
--- a/addons/account_voucher/i18n/ca.po
+++ b/addons/account_voucher/i18n/ca.po
@@ -4,13 +4,14 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# RGB Consulting , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-07-13 07:18+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-11-18 16:50+0000\n"
+"Last-Translator: RGB Consulting \n"
"Language-Team: Catalan (http://www.transifex.com/odoo/odoo-8/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -35,7 +36,7 @@ msgstr "Nº de línies de comprovants"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_voucher_form
msgid "(Update)"
-msgstr ""
+msgstr "(Actualitzar)"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_purchase_receipt_form
@@ -247,7 +248,7 @@ msgstr "Error de configuració!"
#. module: account_voucher
#: field:account.voucher,writeoff_acc_id:0
msgid "Counterpart Account"
-msgstr ""
+msgstr "Contrapartida"
#. module: account_voucher
#: field:account.voucher,comment:0
@@ -423,7 +424,7 @@ msgstr "Seguidors"
#. module: account_voucher
#: field:account.voucher.line,reconcile:0
msgid "Full Reconcile"
-msgstr ""
+msgstr "Totalment reconciliat"
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1098
@@ -828,7 +829,7 @@ msgstr "Ref. núm."
#: view:account.invoice:account_voucher.view_invoice_customer
#: view:account.voucher:account_voucher.view_vendor_receipt_dialog_form
msgid "Register Payment"
-msgstr ""
+msgstr "Registrar pagament"
#. module: account_voucher
#: selection:account.voucher,type:0 selection:sale.receipt.report,type:0
@@ -1113,7 +1114,7 @@ msgstr "Línies de comprovant"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_vendor_payment_form
msgid "Voucher Payment"
-msgstr ""
+msgstr "Comprovant de pago"
#. module: account_voucher
#: view:account.voucher:account_voucher.account_cash_statement_graph
@@ -1155,7 +1156,7 @@ msgstr "Compte analític del desajustament"
#: code:addons/account_voucher/account_voucher.py:1202
#, python-format
msgid "Wrong voucher line"
-msgstr ""
+msgstr "Línia de comprovant errònia"
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1243
@@ -1172,7 +1173,7 @@ msgid ""
"You should configure the 'Gain Exchange Rate Account' to manage "
"automatically the booking of accounting entries related to differences "
"between exchange rates."
-msgstr ""
+msgstr "Haurà de configurar 'Guanys per diferència de canvi' per gestionar automàticament els assentaments al llibre comptable associades a les diferències relacionades amb el canvi de moneda."
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1097
@@ -1181,7 +1182,7 @@ msgid ""
"You should configure the 'Loss Exchange Rate Account' to manage "
"automatically the booking of accounting entries related to differences "
"between exchange rates."
-msgstr ""
+msgstr "Haurà de configurar 'Pèrdua per diferència de canvi' per gestionar automàticament els assentaments al llibre comptable associades a les diferències relacionades amb el canvi de moneda."
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1114
@@ -1196,14 +1197,14 @@ msgstr "Canvi"
#: view:account.voucher:account_voucher.view_vendor_receipt_dialog_form
#: view:account.voucher:account_voucher.view_vendor_receipt_form
msgid "e.g. 003/10"
-msgstr ""
+msgstr "Per exemple, 003/10"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_vendor_payment_form
#: view:account.voucher:account_voucher.view_vendor_receipt_dialog_form
#: view:account.voucher:account_voucher.view_vendor_receipt_form
msgid "e.g. Invoice SAJ/0042"
-msgstr ""
+msgstr "Per exemple, factura SAJ/0042"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_vendor_receipt_dialog_form
diff --git a/addons/account_voucher/i18n/hi.po b/addons/account_voucher/i18n/hi.po
index 692971eec438c..0772444bdc971 100644
--- a/addons/account_voucher/i18n/hi.po
+++ b/addons/account_voucher/i18n/hi.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-03 04:50+0000\n"
+"PO-Revision-Date: 2016-09-11 05:26+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -41,7 +41,7 @@ msgstr ""
#: view:account.voucher:account_voucher.view_purchase_receipt_form
#: view:account.voucher:account_voucher.view_sale_receipt_form
msgid "(update)"
-msgstr ""
+msgstr "(सुधार)"
#. module: account_voucher
#: model:ir.actions.act_window,help:account_voucher.action_vendor_payment
@@ -113,7 +113,7 @@ msgstr ""
#. module: account_voucher
#: field:account.voucher,move_id:0
msgid "Account Entry"
-msgstr ""
+msgstr "खाते में एंट्री"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_voucher_form
@@ -130,12 +130,12 @@ msgstr ""
#. module: account_voucher
#: field:account.voucher.line,amount:0
msgid "Amount"
-msgstr ""
+msgstr "रकम"
#. module: account_voucher
#: field:account.voucher.line,account_analytic_id:0
msgid "Analytic Account"
-msgstr ""
+msgstr "विश्लेषणात्मक खाता"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_vendor_payment_form
@@ -257,13 +257,13 @@ msgstr ""
#. module: account_voucher
#: field:account.voucher,create_uid:0 field:account.voucher.line,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: account_voucher
#: field:account.voucher,create_date:0
#: field:account.voucher.line,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: account_voucher
#: selection:account.voucher.line,type:0
@@ -284,7 +284,7 @@ msgstr ""
#: model:ir.model,name:account_voucher.model_res_currency
#: field:sale.receipt.report,currency_id:0
msgid "Currency"
-msgstr ""
+msgstr "मुद्रा"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_vendor_payment_form
@@ -316,7 +316,7 @@ msgstr "तिथि"
#. module: account_voucher
#: help:account.voucher,message_last_post:0
msgid "Date of the last message posted on the record."
-msgstr ""
+msgstr "आखिरी अंकित संदेश की तारीख़।"
#. module: account_voucher
#: selection:account.voucher.line,type:0
@@ -406,7 +406,7 @@ msgstr ""
#. module: account_voucher
#: view:sale.receipt.report:account_voucher.view_sale_receipt_report_search
msgid "Extended Filters..."
-msgstr ""
+msgstr "विस्तारित फिल्टर्स"
#. module: account_voucher
#: help:account.voucher,is_multi_currency:0
@@ -440,7 +440,7 @@ msgstr ""
#: view:account.voucher:account_voucher.view_voucher_filter_vendor_pay
#: view:sale.receipt.report:account_voucher.view_sale_receipt_report_search
msgid "Group By"
-msgstr ""
+msgstr "वर्गीकरण का आधार"
#. module: account_voucher
#: field:account.voucher,currency_help_label:0
@@ -458,7 +458,7 @@ msgstr ""
#: field:account.voucher,id:0 field:account.voucher.line,id:0
#: field:sale.receipt.report,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: account_voucher
#: help:account.voucher,message_unread:0
@@ -537,17 +537,17 @@ msgstr ""
#. module: account_voucher
#: field:account.voucher,message_last_post:0
msgid "Last Message Date"
-msgstr ""
+msgstr "अंतिम संदेश की तारीख"
#. module: account_voucher
#: field:account.voucher,write_uid:0 field:account.voucher.line,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: account_voucher
#: field:account.voucher,write_date:0 field:account.voucher.line,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: account_voucher
#: field:account.voucher,name:0
diff --git a/addons/account_voucher/i18n/mk.po b/addons/account_voucher/i18n/mk.po
index 0f34968b63ab8..f71ed0b5f82fe 100644
--- a/addons/account_voucher/i18n/mk.po
+++ b/addons/account_voucher/i18n/mk.po
@@ -3,7 +3,7 @@
# * account_voucher
#
# Translators:
-# Aleksandar Vangelovski , 2015
+# Aleksandar Vangelovski , 2015-2016
# Anica Milanova, 2015
# FIRST AUTHOR , 2014
msgid ""
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-09-22 11:44+0000\n"
+"PO-Revision-Date: 2016-11-16 12:21+0000\n"
"Last-Translator: Aleksandar Vangelovski \n"
"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-8/language/mk/)\n"
"MIME-Version: 1.0\n"
@@ -749,7 +749,7 @@ msgstr "Ве молиме дефинирајте стандардни сметк
#. module: account_voucher
#: view:account.voucher:account_voucher.view_voucher_form
msgid "Post"
-msgstr "Објави"
+msgstr "Книжи"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_voucher_filter
diff --git a/addons/account_voucher/i18n/sq.po b/addons/account_voucher/i18n/sq.po
index 8c763f893824f..34f5905efbcb4 100644
--- a/addons/account_voucher/i18n/sq.po
+++ b/addons/account_voucher/i18n/sq.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-03-31 15:44+0000\n"
+"PO-Revision-Date: 2016-08-24 11:24+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Albanian (http://www.transifex.com/odoo/odoo-8/language/sq/)\n"
"MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgstr ""
#: view:account.voucher:account_voucher.view_purchase_receipt_form
#: view:account.voucher:account_voucher.view_sale_receipt_form
msgid "(update)"
-msgstr ""
+msgstr "(përditëso)"
#. module: account_voucher
#: model:ir.actions.act_window,help:account_voucher.action_vendor_payment
@@ -582,7 +582,7 @@ msgstr ""
#. module: account_voucher
#: field:account.voucher,number:0
msgid "Number"
-msgstr ""
+msgstr "Numër"
#. module: account_voucher
#: help:account.voucher,tax_id:0
@@ -811,7 +811,7 @@ msgstr ""
#: view:account.voucher:account_voucher.view_vendor_receipt_form
#: selection:account.voucher,type:0 selection:sale.receipt.report,type:0
msgid "Receipt"
-msgstr ""
+msgstr "Fature"
#. module: account_voucher
#: selection:account.voucher,payment_option:0
@@ -1000,7 +1000,7 @@ msgstr ""
#: view:account.voucher:account_voucher.view_sale_receipt_form
#: field:account.voucher,amount:0
msgid "Total"
-msgstr ""
+msgstr "Total"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_low_priority_payment_form
diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po
index 31f0cf248e43c..8e90c4baf671e 100644
--- a/addons/account_voucher/i18n/tr.po
+++ b/addons/account_voucher/i18n/tr.po
@@ -4,13 +4,13 @@
#
# Translators:
# FIRST AUTHOR , 2014
-# Murat Kaplan , 2015
+# Murat Kaplan , 2015-2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-12-11 13:24+0000\n"
+"PO-Revision-Date: 2016-09-24 08:52+0000\n"
"Last-Translator: Murat Kaplan \n"
"Language-Team: Turkish (http://www.transifex.com/odoo/odoo-8/language/tr/)\n"
"MIME-Version: 1.0\n"
@@ -31,7 +31,7 @@ msgstr " * Bir kullanıcı yeni bir ve uzlaşılmamış bir Fiş kodlarken 'Tasl
#. module: account_voucher
#: field:sale.receipt.report,nbr:0
msgid "# of Voucher Lines"
-msgstr "Çek Satır Sayısı"
+msgstr "Ödeme Satır Sayısı"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_voucher_form
@@ -205,7 +205,7 @@ msgstr "Makbuz İptal et"
#: view:account.voucher:account_voucher.view_vendor_payment_form
#: view:account.voucher:account_voucher.view_voucher_form
msgid "Cancel Voucher"
-msgstr "Fiş İptal et"
+msgstr "Makbuzu İptal et"
#. module: account_voucher
#: selection:account.voucher,state:0 selection:sale.receipt.report,state:0
@@ -216,7 +216,7 @@ msgstr "İptal Edildi"
#: code:addons/account_voucher/account_voucher.py:959
#, python-format
msgid "Cannot delete voucher(s) which are already opened or paid."
-msgstr "Hali hazırda açık ya da ödenmiş olan fiş(ler) silinemiyor."
+msgstr "Hali hazırda açık ya da ödenmiş olan makbuz(lar) silinemiyor."
#. module: account_voucher
#: help:account.voucher,audit:0
@@ -237,7 +237,7 @@ msgstr "Firma"
msgid ""
"Computed as the difference between the amount stated in the voucher and the "
"sum of allocation on the voucher lines."
-msgstr "Fişte belirtilen tutar ve fiş satırlarının toplamı arasındaki fark olarak hesaplanmıştır."
+msgstr "Makbuzda belirtilen tutar ve makbuz satırlarının toplamı arasındaki fark olarak hesaplanmıştır."
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1057
@@ -369,7 +369,7 @@ msgstr "Taslak"
#: view:account.voucher:account_voucher.view_voucher_filter_vendor_pay
#: view:sale.receipt.report:account_voucher.view_sale_receipt_report_search
msgid "Draft Vouchers"
-msgstr "Taslak Fişler"
+msgstr "Taslak Makbuzlar"
#. module: account_voucher
#: field:account.voucher,date_due:0 field:account.voucher.line,date_due:0
@@ -414,7 +414,7 @@ msgstr "Genişletilmiş Filtreler..."
msgid ""
"Fields with internal purpose only that depicts if the voucher is a multi "
"currency one or not"
-msgstr "Fişin çoklu para birimli olup olmadığını belirten yalnızca iç amaçlı alanlar"
+msgstr "Makbuzun çoklu para birimli olup olmadığını belirten yalnızca iç amaçlı alanlar"
#. module: account_voucher
#: field:account.voucher,message_follower_ids:0
@@ -568,7 +568,7 @@ msgstr "Mesaj ve iletişim geçmişi"
#. module: account_voucher
#: field:account.voucher,is_multi_currency:0
msgid "Multi Currency Voucher"
-msgstr "Çoklu Para Birimi Fişi"
+msgstr "Çoklu Para Birimi Makbuzu"
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1243
@@ -769,7 +769,7 @@ msgstr "İşlendi"
#: view:account.voucher:account_voucher.view_voucher_filter_vendor
#: view:account.voucher:account_voucher.view_voucher_filter_vendor_pay
msgid "Posted Vouchers"
-msgstr "İşlenmiş Fişler"
+msgstr "İşlenmiş Makbuzlar"
#. module: account_voucher
#: field:account.voucher,pre_line:0
@@ -786,7 +786,7 @@ msgstr "Proforma"
#. module: account_voucher
#: view:sale.receipt.report:account_voucher.view_sale_receipt_report_search
msgid "Pro-forma Vouchers"
-msgstr "Pro-forma Fişleri"
+msgstr "Pro-forma Makbuzları"
#. module: account_voucher
#: selection:account.voucher,type:0 selection:sale.receipt.report,type:0
@@ -807,7 +807,7 @@ msgstr "Satınalma Makbuzları"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_purchase_receipt_form
msgid "Purchase Voucher"
-msgstr "Satınalma Fişi"
+msgstr "Satınalma Makbuzları"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_vendor_receipt_form
@@ -882,7 +882,7 @@ msgstr "Satış Temsilcisi"
#: view:account.voucher:account_voucher.view_voucher_filter_vendor
#: view:account.voucher:account_voucher.view_voucher_filter_vendor_pay
msgid "Search Vouchers"
-msgstr "Fiş Arama"
+msgstr "Makbuz Arama"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_purchase_receipt_form
@@ -944,7 +944,7 @@ msgstr "Tedarikçi Ödemeleri"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_purchase_receipt_form
msgid "Supplier Voucher"
-msgstr "Tedarikçi Fişi"
+msgstr "Tedarikçi Makbuzu"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_purchase_receipt_form
@@ -961,7 +961,7 @@ msgstr "Vergi Tutarı"
#. module: account_voucher
#: help:account.voucher,paid:0
msgid "The Voucher has been totally paid."
-msgstr "Fiş tamamen ödenmiştir."
+msgstr "Makbuz tamamen ödenmiştir."
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1202
@@ -974,7 +974,7 @@ msgstr "Ödemek istediğiniz fatura artık geçerli değil."
msgid ""
"The specific rate that will be used, in this voucher, between the selected "
"currency (in 'Payment Rate Currency' field) and the voucher currency."
-msgstr "Bu fişte kullanılacak özel oran, seçilen para birimi (Ödeme Kuru Alanı) ile fiş para birimi arasındaki"
+msgstr "Bu makbuzda kullanılacak özel oran, seçilen para birimi (Ödeme Kuru Alanı) ile makbuz para birimi arasındaki oran."
#. module: account_voucher
#: help:account.voucher,payment_option:0
@@ -1072,7 +1072,7 @@ msgstr "Ödeme Doğrula"
#. module: account_voucher
#: view:sale.receipt.report:account_voucher.view_sale_receipt_report_search
msgid "Validated Vouchers"
-msgstr "Doğrulanmış Fişler"
+msgstr "Doğrulanmış Makbuzlar"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_voucher_filter
@@ -1085,51 +1085,51 @@ msgstr "Doğrulanmış Fişler"
#: model:res.request.link,name:account_voucher.req_link_voucher
#, python-format
msgid "Voucher"
-msgstr "Fiş"
+msgstr "Makbuz"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_voucher_tree
#: view:account.voucher:account_voucher.view_voucher_tree_nocreate
#: model:ir.actions.act_window,name:account_voucher.act_journal_voucher_open
msgid "Voucher Entries"
-msgstr "Fiş Girişleri"
+msgstr "Makbuz Girişleri"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_voucher_form
msgid "Voucher Entry"
-msgstr "Fiş Girişi"
+msgstr "Makbuz Girişi"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_voucher_form
msgid "Voucher Items"
-msgstr "Fiş Öğeleri"
+msgstr "Makbuz Öğeleri"
#. module: account_voucher
#: field:account.voucher,line_ids:0
#: view:account.voucher.line:account_voucher.view_voucher_line_form
#: model:ir.model,name:account_voucher.model_account_voucher_line
msgid "Voucher Lines"
-msgstr "Fiş Satırları"
+msgstr "Makbuz Satırları"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_vendor_payment_form
msgid "Voucher Payment"
-msgstr "Fiş Ödemesi"
+msgstr "Makbuz Ödemesi"
#. module: account_voucher
#: view:account.voucher:account_voucher.account_cash_statement_graph
msgid "Voucher Statistics"
-msgstr "Fiş İstatistikleri"
+msgstr "Makbuz İstatistikleri"
#. module: account_voucher
#: field:sale.receipt.report,state:0
msgid "Voucher Status"
-msgstr "Fiş Durumu"
+msgstr "Makbuz Durumu"
#. module: account_voucher
#: model:ir.actions.act_window,name:account_voucher.action_review_voucher_list
msgid "Vouchers Entries"
-msgstr "Fiş Girişleri"
+msgstr "Makbuz Girişleri"
#. module: account_voucher
#: field:account.voucher,website_message_ids:0
@@ -1156,7 +1156,7 @@ msgstr "Borç Silme Analitik Hesap"
#: code:addons/account_voucher/account_voucher.py:1202
#, python-format
msgid "Wrong voucher line"
-msgstr "Yanlış fiş satırı"
+msgstr "Yanlış makbuz satırı"
#. module: account_voucher
#: code:addons/account_voucher/account_voucher.py:1243
diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po
index 6fa271aecf9b9..641b2a4b2d048 100644
--- a/addons/account_voucher/i18n/zh_CN.po
+++ b/addons/account_voucher/i18n/zh_CN.po
@@ -7,6 +7,7 @@
# Jeffery Chenn , 2015-2016
# Jeffery Chenn , 2016
# liAnGjiA , 2015
+# liAnGjiA , 2016
# mrshelly , 2015
# Talway <9010446@qq.com>, 2015
# Talway <9010446@qq.com>, 2015
@@ -16,7 +17,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-22 02:43+0000\n"
+"PO-Revision-Date: 2016-10-04 21:25+0000\n"
"Last-Translator: liAnGjiA \n"
"Language-Team: Chinese (China) (http://www.transifex.com/odoo/odoo-8/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
@@ -85,7 +86,7 @@ msgid ""
" invoices or sales receipts.\n"
" \n"
" "
-msgstr "\n单击新建一个付款。\n
\n输入客户和付款方法,或者手动创建一个付款记录,Odoo将建议你调节还处于打开状态的发票或销售收据。\n
"
+msgstr "\n单击新建一个付款。\n
\n输入客户和付款方式,或者手动创建一个付款记录,Odoo将建议你调节还处于打开状态的发票或销售收据。\n
"
#. module: account_voucher
#: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt
@@ -703,7 +704,7 @@ msgstr "付款信息"
#: view:account.voucher:account_voucher.view_vendor_receipt_dialog_form
#: view:account.voucher:account_voucher.view_vendor_receipt_form
msgid "Payment Method"
-msgstr "付款方法"
+msgstr "付款方式"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_vendor_payment_form
@@ -1215,4 +1216,4 @@ msgstr "例如: 发票 SAJ/0042"
#. module: account_voucher
#: view:account.voucher:account_voucher.view_vendor_receipt_dialog_form
msgid "or"
-msgstr "or"
+msgstr "或"
diff --git a/addons/analytic/i18n/bs.po b/addons/analytic/i18n/bs.po
index 122acdf1aba43..6089a02265017 100644
--- a/addons/analytic/i18n/bs.po
+++ b/addons/analytic/i18n/bs.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-04-04 22:46+0000\n"
+"PO-Revision-Date: 2016-11-19 21:11+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Bosnian (http://www.transifex.com/odoo/odoo-8/language/bs/)\n"
"MIME-Version: 1.0\n"
@@ -222,7 +222,7 @@ msgstr "Greška ! Ne možete kreirati rekurzivna analitička konta."
#. module: analytic
#: field:account.analytic.account,date:0
msgid "Expiration Date"
-msgstr ""
+msgstr "Datum isteka roka"
#. module: analytic
#: field:account.analytic.account,message_follower_ids:0
diff --git a/addons/analytic/i18n/ca.po b/addons/analytic/i18n/ca.po
index 39edfc22cb0ac..a2612ca74c8fd 100644
--- a/addons/analytic/i18n/ca.po
+++ b/addons/analytic/i18n/ca.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-07-04 07:47+0000\n"
+"PO-Revision-Date: 2016-10-05 09:31+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Catalan (http://www.transifex.com/odoo/odoo-8/language/ca/)\n"
"MIME-Version: 1.0\n"
@@ -409,7 +409,7 @@ msgstr "Per renovar"
#. module: analytic
#: field:account.analytic.account,type:0
msgid "Type of Account"
-msgstr ""
+msgstr "Tipus de compte"
#. module: analytic
#: field:account.analytic.account,message_unread:0
diff --git a/addons/analytic/i18n/cs.po b/addons/analytic/i18n/cs.po
index 0c0c74a0065ce..26b83d0dd361d 100644
--- a/addons/analytic/i18n/cs.po
+++ b/addons/analytic/i18n/cs.po
@@ -9,9 +9,9 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-05-29 12:57+0000\n"
+"PO-Revision-Date: 2016-11-23 15:00+0000\n"
"Last-Translator: Martin Trigaux\n"
-"Language-Team: Czech (http://www.transifex.com/projects/p/odoo-8/language/cs/)\n"
+"Language-Team: Czech (http://www.transifex.com/odoo/odoo-8/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
@@ -399,7 +399,7 @@ msgstr ""
#. module: analytic
#: view:account.analytic.account:analytic.view_account_analytic_account_form
msgid "Terms and Conditions"
-msgstr ""
+msgstr "Podmínky"
#. module: analytic
#: selection:account.analytic.account,state:0
diff --git a/addons/analytic/i18n/hi.po b/addons/analytic/i18n/hi.po
index f573b757b97f9..ffe076ac3c1d4 100644
--- a/addons/analytic/i18n/hi.po
+++ b/addons/analytic/i18n/hi.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-03 04:50+0000\n"
+"PO-Revision-Date: 2016-09-11 05:26+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -41,7 +41,7 @@ msgstr ""
#. module: analytic
#: field:account.analytic.line,amount:0
msgid "Amount"
-msgstr ""
+msgstr "रकम"
#. module: analytic
#: view:account.analytic.account:analytic.view_account_analytic_account_form
@@ -49,7 +49,7 @@ msgstr ""
#: field:account.analytic.line,account_id:0
#: model:ir.model,name:analytic.model_account_analytic_account
msgid "Analytic Account"
-msgstr ""
+msgstr "विश्लेषणात्मक खाता"
#. module: analytic
#: model:res.groups,name:analytic.group_analytic_accounting
@@ -159,12 +159,12 @@ msgstr ""
#: field:account.analytic.account,create_uid:0
#: field:account.analytic.line,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: analytic
#: field:account.analytic.account,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: analytic
#: field:account.analytic.account,credit:0
@@ -174,7 +174,7 @@ msgstr ""
#. module: analytic
#: field:account.analytic.account,currency_id:0
msgid "Currency"
-msgstr ""
+msgstr "मुद्रा"
#. module: analytic
#: field:account.analytic.account,partner_id:0
@@ -189,7 +189,7 @@ msgstr "तिथि"
#. module: analytic
#: help:account.analytic.account,message_last_post:0
msgid "Date of the last message posted on the record."
-msgstr ""
+msgstr "आखिरी अंकित संदेश की तारीख़।"
#. module: analytic
#: field:account.analytic.account,debit:0
@@ -243,7 +243,7 @@ msgstr ""
#. module: analytic
#: field:account.analytic.account,id:0 field:account.analytic.line,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: analytic
#: help:account.analytic.account,message_unread:0
@@ -280,19 +280,19 @@ msgstr ""
#. module: analytic
#: field:account.analytic.account,message_last_post:0
msgid "Last Message Date"
-msgstr ""
+msgstr "अंतिम संदेश की तारीख"
#. module: analytic
#: field:account.analytic.account,write_uid:0
#: field:account.analytic.line,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: analytic
#: field:account.analytic.account,write_date:0
#: field:account.analytic.line,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: analytic
#: field:account.analytic.account,message_ids:0
diff --git a/addons/analytic_contract_hr_expense/i18n/fr_CA.po b/addons/analytic_contract_hr_expense/i18n/fr_CA.po
new file mode 100644
index 0000000000000..6465fb255014b
--- /dev/null
+++ b/addons/analytic_contract_hr_expense/i18n/fr_CA.po
@@ -0,0 +1,77 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * analytic_contract_hr_expense
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-07-17 06:48+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: French (Canada) (http://www.transifex.com/odoo/odoo-8/language/fr_CA/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr_CA\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: analytic_contract_hr_expense
+#: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account
+msgid "Analytic Account"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: field:account.analytic.account,charge_expenses:0
+msgid "Charge Expenses"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: field:account.analytic.account,est_expenses:0
+msgid "Estimation of Expenses to Invoice"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "Expenses"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "Expenses and Timesheet Invoicing Ratio"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:135
+#, python-format
+msgid "Expenses of %s"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:143
+#, python-format
+msgid "Expenses to Invoice of %s"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "Nothing to invoice, create"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "or view"
+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 "inconnu"
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "⇒ Invoice"
+msgstr ""
diff --git a/addons/analytic_contract_hr_expense/i18n/hi.po b/addons/analytic_contract_hr_expense/i18n/hi.po
new file mode 100644
index 0000000000000..9ce22422fa4e1
--- /dev/null
+++ b/addons/analytic_contract_hr_expense/i18n/hi.po
@@ -0,0 +1,77 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * analytic_contract_hr_expense
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2016-09-01 20:12+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: analytic_contract_hr_expense
+#: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account
+msgid "Analytic Account"
+msgstr "विश्लेषणात्मक खाता"
+
+#. module: analytic_contract_hr_expense
+#: field:account.analytic.account,charge_expenses:0
+msgid "Charge Expenses"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: field:account.analytic.account,est_expenses:0
+msgid "Estimation of Expenses to Invoice"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "Expenses"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "Expenses and Timesheet Invoicing Ratio"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:135
+#, python-format
+msgid "Expenses of %s"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:143
+#, python-format
+msgid "Expenses to Invoice of %s"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "Nothing to invoice, create"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "or view"
+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:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "⇒ Invoice"
+msgstr ""
diff --git a/addons/analytic_contract_hr_expense/i18n/ka.po b/addons/analytic_contract_hr_expense/i18n/ka.po
new file mode 100644
index 0000000000000..9d6228d89aae2
--- /dev/null
+++ b/addons/analytic_contract_hr_expense/i18n/ka.po
@@ -0,0 +1,77 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * analytic_contract_hr_expense
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-07-17 06:48+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Georgian (http://www.transifex.com/odoo/odoo-8/language/ka/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ka\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: analytic_contract_hr_expense
+#: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account
+msgid "Analytic Account"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: field:account.analytic.account,charge_expenses:0
+msgid "Charge Expenses"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: field:account.analytic.account,est_expenses:0
+msgid "Estimation of Expenses to Invoice"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "Expenses"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "Expenses and Timesheet Invoicing Ratio"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:135
+#, python-format
+msgid "Expenses of %s"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:143
+#, python-format
+msgid "Expenses to Invoice of %s"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "Nothing to invoice, create"
+msgstr ""
+
+#. module: analytic_contract_hr_expense
+#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "or view"
+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:analytic_contract_hr_expense.account_analytic_account_form_expense_form
+msgid "⇒ Invoice"
+msgstr ""
diff --git a/addons/analytic_contract_hr_expense/i18n/tr.po b/addons/analytic_contract_hr_expense/i18n/tr.po
index ec432ff61a233..c7862a25c7101 100644
--- a/addons/analytic_contract_hr_expense/i18n/tr.po
+++ b/addons/analytic_contract_hr_expense/i18n/tr.po
@@ -4,13 +4,15 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# Güven YILMAZ , 2016
+# Murat Kaplan , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-12-09 19:27+0000\n"
-"Last-Translator: Murat Kaplan \n"
+"PO-Revision-Date: 2016-10-21 14:11+0000\n"
+"Last-Translator: Güven YILMAZ \n"
"Language-Team: Turkish (http://www.transifex.com/odoo/odoo-8/language/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -26,12 +28,12 @@ msgstr "Analitik Hesap"
#. module: analytic_contract_hr_expense
#: field:account.analytic.account,charge_expenses:0
msgid "Charge Expenses"
-msgstr "Tahsil Edilecek Giderler"
+msgstr "Yansıtılacak Giderler"
#. module: analytic_contract_hr_expense
#: field:account.analytic.account,est_expenses:0
msgid "Estimation of Expenses to Invoice"
-msgstr "Faturalanacak Giderlerin Tahmini"
+msgstr "Beklenen Gider"
#. module: analytic_contract_hr_expense
#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
@@ -41,7 +43,7 @@ msgstr "Giderler"
#. module: analytic_contract_hr_expense
#: view:account.analytic.account:analytic_contract_hr_expense.account_analytic_account_form_expense_form
msgid "Expenses and Timesheet Invoicing Ratio"
-msgstr "Giderler ve Zaman çizelgesi Faturalama Oranı"
+msgstr "Giderler ve Zaman Çizelgeleri Yansıtma Oranı"
#. module: analytic_contract_hr_expense
#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:135
diff --git a/addons/analytic_user_function/i18n/fi.po b/addons/analytic_user_function/i18n/fi.po
index 9a9656e9c6a13..c8ac2093e530b 100644
--- a/addons/analytic_user_function/i18n/fi.po
+++ b/addons/analytic_user_function/i18n/fi.po
@@ -4,13 +4,14 @@
#
# Translators:
# FIRST AUTHOR , 2014
+# Kari Lindgren , 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:48+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-09-07 08:38+0000\n"
+"Last-Translator: Kari Lindgren \n"
"Language-Team: Finnish (http://www.transifex.com/odoo/odoo-8/language/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -45,7 +46,7 @@ msgid ""
"Define a specific service (e.g. Senior Consultant)\n"
" and price for some users to use these data instead\n"
" of the default values when invoicing the customer."
-msgstr ""
+msgstr "Määritä palvelutuote (esim. vanhempi konsultti) ja hinta joillekin käyttäjille oletusarvojen sijaan asiakasta laskutettaessa."
#. module: analytic_user_function
#: code:addons/analytic_user_function/analytic_user_function.py:108
@@ -62,13 +63,13 @@ msgstr "ID"
#. module: analytic_user_function
#: view:account.analytic.account:analytic_user_function.view_account_analytic_account_form_inherit
msgid "Invoice Price Rate per User"
-msgstr ""
+msgstr "Käyttäjän laskutushinta"
#. module: analytic_user_function
#: view:analytic.user.funct.grid:analytic_user_function.analytic_user_funct_grid_form
#: view:analytic.user.funct.grid:analytic_user_function.analytic_user_funct_grid_tree
msgid "Invoicing Data"
-msgstr ""
+msgstr "Laskutustiedot"
#. module: analytic_user_function
#: field:analytic.user.funct.grid,write_uid:0
@@ -87,7 +88,7 @@ msgid ""
" to check if specific conditions are defined for a\n"
" specific user. This allows to set invoicing\n"
" conditions for a group of contracts."
-msgstr ""
+msgstr "Odoo etsii ylätilejä rekursiivisesti tarkistaakseen jos erityisehtoja on määritelty tietylle käyttäjälle. Tämä mahdollistaa laskutusehtojen asettamisen ryhmälle sopimuksia."
#. module: analytic_user_function
#: field:analytic.user.funct.grid,price:0
@@ -97,12 +98,12 @@ msgstr "Hinta"
#. module: analytic_user_function
#: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid
msgid "Price per User"
-msgstr ""
+msgstr "Käyttäjähinta"
#. module: analytic_user_function
#: help:analytic.user.funct.grid,price:0
msgid "Price per hour for this user."
-msgstr ""
+msgstr "Käyttäjän tuntihinta."
#. module: analytic_user_function
#: field:analytic.user.funct.grid,product_id:0
@@ -114,7 +115,7 @@ msgstr "Palvelu"
#: code:addons/analytic_user_function/analytic_user_function.py:138
#, python-format
msgid "There is no expense account defined for this product: \"%s\" (id:%d)"
-msgstr ""
+msgstr "Tälle tuotteelle ei ole määritelty kulutiliä: \"%s\" (id:%d)."
#. module: analytic_user_function
#: model:ir.model,name:analytic_user_function.model_hr_analytic_timesheet
diff --git a/addons/analytic_user_function/i18n/hi.po b/addons/analytic_user_function/i18n/hi.po
new file mode 100644
index 0000000000000..41a188c9f60bf
--- /dev/null
+++ b/addons/analytic_user_function/i18n/hi.po
@@ -0,0 +1,136 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * analytic_user_function
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2016-09-01 20:43+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: analytic_user_function
+#: field:analytic.user.funct.grid,account_id:0
+#: model:ir.model,name:analytic_user_function.model_account_analytic_account
+msgid "Analytic Account"
+msgstr "विश्लेषणात्मक खाता"
+
+#. module: analytic_user_function
+#: model:ir.model,name:analytic_user_function.model_account_analytic_line
+msgid "Analytic Line"
+msgstr ""
+
+#. module: analytic_user_function
+#: field:analytic.user.funct.grid,create_uid:0
+msgid "Created by"
+msgstr "निर्माण कर्ता"
+
+#. module: analytic_user_function
+#: field:analytic.user.funct.grid,create_date:0
+msgid "Created on"
+msgstr "निर्माण तिथि"
+
+#. module: analytic_user_function
+#: view:account.analytic.account:analytic_user_function.view_account_analytic_account_form_inherit
+msgid ""
+"Define a specific service (e.g. Senior Consultant)\n"
+" and price for some users to use these data instead\n"
+" of the default values when invoicing the customer."
+msgstr ""
+
+#. module: analytic_user_function
+#: code:addons/analytic_user_function/analytic_user_function.py:108
+#: code:addons/analytic_user_function/analytic_user_function.py:137
+#, python-format
+msgid "Error!"
+msgstr "त्रुटि!"
+
+#. module: analytic_user_function
+#: field:analytic.user.funct.grid,id:0
+msgid "ID"
+msgstr "पहचान"
+
+#. module: analytic_user_function
+#: view:account.analytic.account:analytic_user_function.view_account_analytic_account_form_inherit
+msgid "Invoice Price Rate per User"
+msgstr ""
+
+#. module: analytic_user_function
+#: view:analytic.user.funct.grid:analytic_user_function.analytic_user_funct_grid_form
+#: view:analytic.user.funct.grid:analytic_user_function.analytic_user_funct_grid_tree
+msgid "Invoicing Data"
+msgstr ""
+
+#. module: analytic_user_function
+#: field:analytic.user.funct.grid,write_uid:0
+msgid "Last Updated by"
+msgstr "अंतिम सुधारकर्ता"
+
+#. module: analytic_user_function
+#: field:analytic.user.funct.grid,write_date:0
+msgid "Last Updated on"
+msgstr "अंतिम सुधार की तिथि"
+
+#. module: analytic_user_function
+#: view:account.analytic.account:analytic_user_function.view_account_analytic_account_form_inherit
+msgid ""
+"Odoo will recursively search on parent accounts\n"
+" to check if specific conditions are defined for a\n"
+" specific user. This allows to set invoicing\n"
+" conditions for a group of contracts."
+msgstr ""
+
+#. module: analytic_user_function
+#: field:analytic.user.funct.grid,price:0
+msgid "Price"
+msgstr ""
+
+#. module: analytic_user_function
+#: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid
+msgid "Price per User"
+msgstr ""
+
+#. module: analytic_user_function
+#: help:analytic.user.funct.grid,price:0
+msgid "Price per hour for this user."
+msgstr ""
+
+#. module: analytic_user_function
+#: field:analytic.user.funct.grid,product_id:0
+msgid "Service"
+msgstr ""
+
+#. module: analytic_user_function
+#: code:addons/analytic_user_function/analytic_user_function.py:109
+#: code:addons/analytic_user_function/analytic_user_function.py:138
+#, python-format
+msgid "There is no expense account defined for this product: \"%s\" (id:%d)"
+msgstr ""
+
+#. module: analytic_user_function
+#: model:ir.model,name:analytic_user_function.model_hr_analytic_timesheet
+msgid "Timesheet Line"
+msgstr ""
+
+#. module: analytic_user_function
+#: field:analytic.user.funct.grid,uom_id:0
+msgid "Unit of Measure"
+msgstr ""
+
+#. module: analytic_user_function
+#: field:analytic.user.funct.grid,user_id:0
+msgid "User"
+msgstr "उपयोगकर्ता"
+
+#. module: analytic_user_function
+#: field:account.analytic.account,user_product_ids:0
+msgid "Users/Products Rel."
+msgstr ""
diff --git a/addons/anglo_saxon_dropshipping/__init__.py b/addons/anglo_saxon_dropshipping/__init__.py
new file mode 100644
index 0000000000000..2425d5b7bfe49
--- /dev/null
+++ b/addons/anglo_saxon_dropshipping/__init__.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+# OpenERP, Open Source Management Solution
+# Copyright (C) 2004-2010 Tiny SPRL ().
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+##############################################################################
+import stock_dropshipping
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
diff --git a/addons/anglo_saxon_dropshipping/__openerp__.py b/addons/anglo_saxon_dropshipping/__openerp__.py
new file mode 100644
index 0000000000000..bf3861c11b130
--- /dev/null
+++ b/addons/anglo_saxon_dropshipping/__openerp__.py
@@ -0,0 +1,38 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+# OpenERP, Open Source Management Solution
+# Copyright (C) 2014 OpenERP S.A. ().
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+##############################################################################
+
+{
+ 'name': 'Drop Shipping anglosaxon',
+ 'version': '1.0',
+ 'category': 'Warehouse Management',
+ 'summary': 'Drop Shipping in anglo-saxon',
+ 'description': """
+
+""",
+ 'author': 'OpenERP SA',
+ 'website': 'https://www.odoo.com/page/warehouse',
+ 'depends': ['account_anglo_saxon', 'stock_dropshipping'],
+ 'test': [
+ ],
+ 'installable': True,
+ 'auto_install': True,
+}
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
diff --git a/addons/anglo_saxon_dropshipping/stock_dropshipping.py b/addons/anglo_saxon_dropshipping/stock_dropshipping.py
new file mode 100644
index 0000000000000..ec19610900168
--- /dev/null
+++ b/addons/anglo_saxon_dropshipping/stock_dropshipping.py
@@ -0,0 +1,33 @@
+# coding: utf-8
+
+from openerp.osv import osv
+
+
+class stock_quant(osv.osv):
+ _inherit = "stock.quant"
+
+ def _account_entry_move(self, cr, uid, quants, move, context=None):
+ if context is None:
+ context = {}
+
+ #checks to see if we need to create accounting entries
+ if move.product_id.valuation != 'real_time':
+ return super(stock_quant, self)._account_entry_move(cr, uid, quants, move, context=context)
+ for q in quants:
+ if q.owner_id:
+ #if the quant isn't owned by the company, we don't make any valuation entry
+ return super(stock_quant, self)._account_entry_move(cr, uid, quants, move, context=context)
+ if q.qty <= 0:
+ #we don't make any stock valuation for negative quants because the valuation is already made for the counterpart.
+ #At that time the valuation will be made at the product cost price and afterward there will be new accounting entries
+ #to make the adjustments when we know the real cost price.
+ return super(stock_quant, self)._account_entry_move(cr, uid, quants, move, context=context)
+
+ if move.location_id.usage == 'supplier' and move.location_dest_id.usage == 'customer':
+ #Creates an account entry from stock_input to stock_output on a dropship move. https://github.com/odoo/odoo/issues/12687
+ ctx = context.copy()
+ ctx['force_company'] = move.company_id.id
+ journal_id, acc_src, acc_dest, acc_valuation = self._get_accounting_data_for_valuation(cr, uid, move, context=ctx)
+ return self._create_account_move_line(cr, uid, quants, move, acc_src, acc_dest, journal_id, context=ctx)
+
+ return super(stock_quant, self)._account_entry_move(cr, uid, quants, move, context=context)
diff --git a/addons/anonymization/i18n/hi.po b/addons/anonymization/i18n/hi.po
index a776ec8234385..e57c2f177488d 100644
--- a/addons/anonymization/i18n/hi.po
+++ b/addons/anonymization/i18n/hi.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-02 11:00+0000\n"
+"PO-Revision-Date: 2016-09-09 21:52+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -88,7 +88,7 @@ msgstr ""
#: field:ir.model.fields.anonymization.migration.fix,create_uid:0
#: field:ir.model.fields.anonymize.wizard,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: anonymization
#: field:ir.model.fields.anonymization,create_date:0
@@ -96,7 +96,7 @@ msgstr ""
#: field:ir.model.fields.anonymization.migration.fix,create_date:0
#: field:ir.model.fields.anonymize.wizard,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: anonymization
#: view:ir.model.fields.anonymize.wizard:anonymization.view_ir_model_fields_anonymize_wizard_form
@@ -173,12 +173,12 @@ msgstr ""
#: field:ir.model.fields.anonymization.migration.fix,id:0
#: field:ir.model.fields.anonymize.wizard,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: anonymization
#: field:ir.model.fields.anonymize.wizard,file_import:0
msgid "Import"
-msgstr ""
+msgstr "आयात"
#. module: anonymization
#: code:addons/anonymization/anonymization.py:533
@@ -194,7 +194,7 @@ msgstr ""
#: field:ir.model.fields.anonymization.migration.fix,write_uid:0
#: field:ir.model.fields.anonymize.wizard,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: anonymization
#: field:ir.model.fields.anonymization,write_date:0
@@ -202,7 +202,7 @@ msgstr ""
#: field:ir.model.fields.anonymization.migration.fix,write_date:0
#: field:ir.model.fields.anonymize.wizard,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: anonymization
#: view:ir.model.fields.anonymization.history:anonymization.view_ir_model_fields_anonymization_history_form
diff --git a/addons/anonymization/i18n/hr.po b/addons/anonymization/i18n/hr.po
index ef672a9796af9..cf64bc1096a61 100644
--- a/addons/anonymization/i18n/hr.po
+++ b/addons/anonymization/i18n/hr.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:49+0000\n"
+"PO-Revision-Date: 2016-11-14 09:01+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Croatian (http://www.transifex.com/odoo/odoo-8/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -340,12 +340,12 @@ msgstr ""
#. module: anonymization
#: selection:ir.model.fields.anonymization.migration.fix,query_type:0
msgid "python"
-msgstr ""
+msgstr "python"
#. module: anonymization
#: selection:ir.model.fields.anonymization.migration.fix,query_type:0
msgid "sql"
-msgstr ""
+msgstr "sql"
#. module: anonymization
#: field:ir.model.fields.anonymization,state:0
diff --git a/addons/anonymization/i18n/ja.po b/addons/anonymization/i18n/ja.po
index 7af5541ef4e15..d342fa7ba3df5 100644
--- a/addons/anonymization/i18n/ja.po
+++ b/addons/anonymization/i18n/ja.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-08-15 09:35+0000\n"
+"PO-Revision-Date: 2016-10-14 04:30+0000\n"
"Last-Translator: Yoshi Tashiro \n"
"Language-Team: Japanese (http://www.transifex.com/odoo/odoo-8/language/ja/)\n"
"MIME-Version: 1.0\n"
@@ -340,7 +340,7 @@ msgstr "クリア -> 匿名"
#. module: anonymization
#: selection:ir.model.fields.anonymization.migration.fix,query_type:0
msgid "python"
-msgstr ""
+msgstr "python"
#. module: anonymization
#: selection:ir.model.fields.anonymization.migration.fix,query_type:0
diff --git a/addons/association/i18n/af.po b/addons/association/i18n/af.po
new file mode 100644
index 0000000000000..53bdbc492495a
--- /dev/null
+++ b/addons/association/i18n/af.po
@@ -0,0 +1,135 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+# * association
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: support@openerp.com\n"
+"POT-Creation-Date: 2011-01-11 11:14:36+0000\n"
+"PO-Revision-Date: 2015-11-26 09:32+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Afrikaans (http://www.transifex.com/odoo/odoo-8/language/af/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: af\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,wiki:0
+msgid "Wiki"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Event Management"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,project_gtd:0
+msgid "Getting Things Done"
+msgstr ""
+
+#. module: association
+#: model:ir.module.module,description:association.module_meta_information
+msgid "This module is to create Profile for Associates"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,progress:0
+msgid "Configuration Progress"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid ""
+"Here are specific applications related to the Association Profile you "
+"selected."
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "title"
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,event_project:0
+msgid "Helps you to manage and organize your events."
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,config_logo:0
+msgid "Image"
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,hr_expense:0
+msgid ""
+"Tracks and manages employee expenses, and can automatically re-invoice "
+"clients if the expenses are project-related."
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,project_gtd:0
+msgid ""
+"GTD is a methodology to efficiently organise yourself and your tasks. This "
+"module fully integrates GTD principle with OpenERP's project management."
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Resources Management"
+msgstr ""
+
+#. module: association
+#: model:ir.module.module,shortdesc:association.module_meta_information
+msgid "Association profile"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,hr_expense:0
+msgid "Expenses Tracking"
+msgstr ""
+
+#. module: association
+#: model:ir.actions.act_window,name:association.action_config_install_module
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Association Application Configuration"
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,wiki:0
+msgid ""
+"Lets you create wiki pages and page groups in order to keep track of "
+"business knowledge and share it with and between your employees."
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,project:0
+msgid ""
+"Helps you manage your projects and tasks by tracking them, generating "
+"plannings, etc..."
+msgstr "Help om jou projekte en take te bestuur deur dit na te volg, planne te maak, ens .."
+
+#. module: association
+#: model:ir.model,name:association.model_profile_association_config_install_modules_wizard
+msgid "profile.association.config.install_modules_wizard"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,event_project:0
+msgid "Events"
+msgstr "Byeenkomste"
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+#: field:profile.association.config.install_modules_wizard,project:0
+msgid "Project Management"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Configure"
+msgstr ""
diff --git a/addons/association/i18n/es_BO.po b/addons/association/i18n/es_BO.po
new file mode 100644
index 0000000000000..702b326b9bef3
--- /dev/null
+++ b/addons/association/i18n/es_BO.po
@@ -0,0 +1,135 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+# * association
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: support@openerp.com\n"
+"POT-Creation-Date: 2011-01-11 11:14:36+0000\n"
+"PO-Revision-Date: 2015-05-18 11:26+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-8/language/es_BO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_BO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,wiki:0
+msgid "Wiki"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Event Management"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,project_gtd:0
+msgid "Getting Things Done"
+msgstr ""
+
+#. module: association
+#: model:ir.module.module,description:association.module_meta_information
+msgid "This module is to create Profile for Associates"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,progress:0
+msgid "Configuration Progress"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid ""
+"Here are specific applications related to the Association Profile you "
+"selected."
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "title"
+msgstr "título"
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,event_project:0
+msgid "Helps you to manage and organize your events."
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,config_logo:0
+msgid "Image"
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,hr_expense:0
+msgid ""
+"Tracks and manages employee expenses, and can automatically re-invoice "
+"clients if the expenses are project-related."
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,project_gtd:0
+msgid ""
+"GTD is a methodology to efficiently organise yourself and your tasks. This "
+"module fully integrates GTD principle with OpenERP's project management."
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Resources Management"
+msgstr ""
+
+#. module: association
+#: model:ir.module.module,shortdesc:association.module_meta_information
+msgid "Association profile"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,hr_expense:0
+msgid "Expenses Tracking"
+msgstr ""
+
+#. module: association
+#: model:ir.actions.act_window,name:association.action_config_install_module
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Association Application Configuration"
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,wiki:0
+msgid ""
+"Lets you create wiki pages and page groups in order to keep track of "
+"business knowledge and share it with and between your employees."
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,project:0
+msgid ""
+"Helps you manage your projects and tasks by tracking them, generating "
+"plannings, etc..."
+msgstr ""
+
+#. module: association
+#: model:ir.model,name:association.model_profile_association_config_install_modules_wizard
+msgid "profile.association.config.install_modules_wizard"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,event_project:0
+msgid "Events"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+#: field:profile.association.config.install_modules_wizard,project:0
+msgid "Project Management"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Configure"
+msgstr ""
diff --git a/addons/association/i18n/es_PE.po b/addons/association/i18n/es_PE.po
new file mode 100644
index 0000000000000..8045e9e58b056
--- /dev/null
+++ b/addons/association/i18n/es_PE.po
@@ -0,0 +1,135 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+# * association
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: support@openerp.com\n"
+"POT-Creation-Date: 2011-01-11 11:14:36+0000\n"
+"PO-Revision-Date: 2015-05-18 11:26+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-8/language/es_PE/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_PE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,wiki:0
+msgid "Wiki"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Event Management"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,project_gtd:0
+msgid "Getting Things Done"
+msgstr ""
+
+#. module: association
+#: model:ir.module.module,description:association.module_meta_information
+msgid "This module is to create Profile for Associates"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,progress:0
+msgid "Configuration Progress"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid ""
+"Here are specific applications related to the Association Profile you "
+"selected."
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "title"
+msgstr "título"
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,event_project:0
+msgid "Helps you to manage and organize your events."
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,config_logo:0
+msgid "Image"
+msgstr "Imagen"
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,hr_expense:0
+msgid ""
+"Tracks and manages employee expenses, and can automatically re-invoice "
+"clients if the expenses are project-related."
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,project_gtd:0
+msgid ""
+"GTD is a methodology to efficiently organise yourself and your tasks. This "
+"module fully integrates GTD principle with OpenERP's project management."
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Resources Management"
+msgstr ""
+
+#. module: association
+#: model:ir.module.module,shortdesc:association.module_meta_information
+msgid "Association profile"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,hr_expense:0
+msgid "Expenses Tracking"
+msgstr ""
+
+#. module: association
+#: model:ir.actions.act_window,name:association.action_config_install_module
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Association Application Configuration"
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,wiki:0
+msgid ""
+"Lets you create wiki pages and page groups in order to keep track of "
+"business knowledge and share it with and between your employees."
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,project:0
+msgid ""
+"Helps you manage your projects and tasks by tracking them, generating "
+"plannings, etc..."
+msgstr ""
+
+#. module: association
+#: model:ir.model,name:association.model_profile_association_config_install_modules_wizard
+msgid "profile.association.config.install_modules_wizard"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,event_project:0
+msgid "Events"
+msgstr "Eventos"
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+#: field:profile.association.config.install_modules_wizard,project:0
+msgid "Project Management"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Configure"
+msgstr "Configurar"
diff --git a/addons/association/i18n/fa.po b/addons/association/i18n/fa.po
index 16507c61351e6..4d902aaea0de3 100644
--- a/addons/association/i18n/fa.po
+++ b/addons/association/i18n/fa.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2011-01-11 11:14:36+0000\n"
-"PO-Revision-Date: 2016-03-01 05:02+0000\n"
+"PO-Revision-Date: 2016-08-28 18:46+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Persian (http://www.transifex.com/odoo/odoo-8/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -132,4 +132,4 @@ msgstr "مدیریت پروژه"
#. module: association
#: view:profile.association.config.install_modules_wizard:0
msgid "Configure"
-msgstr ""
+msgstr "پیکربندی"
diff --git a/addons/association/i18n/hi.po b/addons/association/i18n/hi.po
new file mode 100644
index 0000000000000..c60f5af99c954
--- /dev/null
+++ b/addons/association/i18n/hi.po
@@ -0,0 +1,135 @@
+# Translation of OpenERP Server.
+# This file contains the translation of the following modules:
+# * association
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: support@openerp.com\n"
+"POT-Creation-Date: 2011-01-11 11:14:36+0000\n"
+"PO-Revision-Date: 2015-05-18 11:26+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,wiki:0
+msgid "Wiki"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Event Management"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,project_gtd:0
+msgid "Getting Things Done"
+msgstr ""
+
+#. module: association
+#: model:ir.module.module,description:association.module_meta_information
+msgid "This module is to create Profile for Associates"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,progress:0
+msgid "Configuration Progress"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid ""
+"Here are specific applications related to the Association Profile you "
+"selected."
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "title"
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,event_project:0
+msgid "Helps you to manage and organize your events."
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,config_logo:0
+msgid "Image"
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,hr_expense:0
+msgid ""
+"Tracks and manages employee expenses, and can automatically re-invoice "
+"clients if the expenses are project-related."
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,project_gtd:0
+msgid ""
+"GTD is a methodology to efficiently organise yourself and your tasks. This "
+"module fully integrates GTD principle with OpenERP's project management."
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Resources Management"
+msgstr ""
+
+#. module: association
+#: model:ir.module.module,shortdesc:association.module_meta_information
+msgid "Association profile"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,hr_expense:0
+msgid "Expenses Tracking"
+msgstr ""
+
+#. module: association
+#: model:ir.actions.act_window,name:association.action_config_install_module
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Association Application Configuration"
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,wiki:0
+msgid ""
+"Lets you create wiki pages and page groups in order to keep track of "
+"business knowledge and share it with and between your employees."
+msgstr ""
+
+#. module: association
+#: help:profile.association.config.install_modules_wizard,project:0
+msgid ""
+"Helps you manage your projects and tasks by tracking them, generating "
+"plannings, etc..."
+msgstr ""
+
+#. module: association
+#: model:ir.model,name:association.model_profile_association_config_install_modules_wizard
+msgid "profile.association.config.install_modules_wizard"
+msgstr ""
+
+#. module: association
+#: field:profile.association.config.install_modules_wizard,event_project:0
+msgid "Events"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+#: field:profile.association.config.install_modules_wizard,project:0
+msgid "Project Management"
+msgstr ""
+
+#. module: association
+#: view:profile.association.config.install_modules_wizard:0
+msgid "Configure"
+msgstr ""
diff --git a/addons/auth_crypt/i18n/es_BO.po b/addons/auth_crypt/i18n/es_BO.po
new file mode 100644
index 0000000000000..508aaa1ea6cb6
--- /dev/null
+++ b/addons/auth_crypt/i18n/es_BO.po
@@ -0,0 +1,28 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_crypt
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-05-18 11:26+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-8/language/es_BO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_BO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auth_crypt
+#: field:res.users,password_crypt:0
+msgid "Encrypted Password"
+msgstr ""
+
+#. module: auth_crypt
+#: model:ir.model,name:auth_crypt.model_res_users
+msgid "Users"
+msgstr ""
diff --git a/addons/auth_crypt/i18n/hi.po b/addons/auth_crypt/i18n/hi.po
new file mode 100644
index 0000000000000..d0af0b13f78b7
--- /dev/null
+++ b/addons/auth_crypt/i18n/hi.po
@@ -0,0 +1,28 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_crypt
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-05-18 11:26+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auth_crypt
+#: field:res.users,password_crypt:0
+msgid "Encrypted Password"
+msgstr ""
+
+#. module: auth_crypt
+#: model:ir.model,name:auth_crypt.model_res_users
+msgid "Users"
+msgstr ""
diff --git a/addons/auth_ldap/i18n/hi.po b/addons/auth_ldap/i18n/hi.po
new file mode 100644
index 0000000000000..b38c23a50ac14
--- /dev/null
+++ b/addons/auth_ldap/i18n/hi.po
@@ -0,0 +1,178 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_ldap
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2016-09-01 20:43+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auth_ldap
+#: help:res.company.ldap,create_user:0
+msgid ""
+"Automatically create local user accounts for new users authenticating via "
+"LDAP"
+msgstr ""
+
+#. module: auth_ldap
+#: model:ir.model,name:auth_ldap.model_res_company
+msgid "Companies"
+msgstr ""
+
+#. module: auth_ldap
+#: field:res.company.ldap,company:0
+msgid "Company"
+msgstr "संस्था"
+
+#. module: auth_ldap
+#: field:res.company.ldap,create_user:0
+msgid "Create user"
+msgstr ""
+
+#. module: auth_ldap
+#: field:res.company.ldap,create_uid:0
+msgid "Created by"
+msgstr "निर्माण कर्ता"
+
+#. module: auth_ldap
+#: field:res.company.ldap,create_date:0
+msgid "Created on"
+msgstr "निर्माण तिथि"
+
+#. module: auth_ldap
+#: field:res.company.ldap,id:0
+msgid "ID"
+msgstr "पहचान"
+
+#. module: auth_ldap
+#: view:res.company:auth_ldap.company_form_view
+#: view:res.company.ldap:auth_ldap.view_ldap_installer_form
+msgid "LDAP Configuration"
+msgstr ""
+
+#. module: auth_ldap
+#: view:res.company:auth_ldap.company_form_view field:res.company,ldaps:0
+msgid "LDAP Parameters"
+msgstr ""
+
+#. module: auth_ldap
+#: field:res.company.ldap,ldap_server:0
+msgid "LDAP Server address"
+msgstr ""
+
+#. module: auth_ldap
+#: field:res.company.ldap,ldap_server_port:0
+msgid "LDAP Server port"
+msgstr ""
+
+#. module: auth_ldap
+#: field:res.company.ldap,ldap_base:0
+msgid "LDAP base"
+msgstr ""
+
+#. module: auth_ldap
+#: field:res.company.ldap,ldap_binddn:0
+msgid "LDAP binddn"
+msgstr ""
+
+#. module: auth_ldap
+#: field:res.company.ldap,ldap_filter:0
+msgid "LDAP filter"
+msgstr ""
+
+#. module: auth_ldap
+#: field:res.company.ldap,ldap_password:0
+msgid "LDAP password"
+msgstr ""
+
+#. module: auth_ldap
+#: field:res.company.ldap,write_uid:0
+msgid "Last Updated by"
+msgstr "अंतिम सुधारकर्ता"
+
+#. module: auth_ldap
+#: field:res.company.ldap,write_date:0
+msgid "Last Updated on"
+msgstr "अंतिम सुधार की तिथि"
+
+#. module: auth_ldap
+#: view:res.company.ldap:auth_ldap.view_ldap_installer_form
+msgid "Login Information"
+msgstr ""
+
+#. module: auth_ldap
+#: view:res.company.ldap:auth_ldap.view_ldap_installer_form
+msgid "Process Parameter"
+msgstr ""
+
+#. module: auth_ldap
+#: help:res.company.ldap,ldap_tls:0
+msgid ""
+"Request secure TLS/SSL encryption when connecting to the LDAP server. This "
+"option requires a server with STARTTLS enabled, otherwise all authentication"
+" attempts will fail."
+msgstr ""
+
+#. module: auth_ldap
+#: field:res.company.ldap,sequence:0
+msgid "Sequence"
+msgstr "अनुक्रम"
+
+#. module: auth_ldap
+#: view:res.company.ldap:auth_ldap.view_ldap_installer_form
+msgid "Server Information"
+msgstr ""
+
+#. module: auth_ldap
+#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer
+msgid "Setup your LDAP Server"
+msgstr ""
+
+#. module: auth_ldap
+#: field:res.company.ldap,user:0
+msgid "Template User"
+msgstr ""
+
+#. module: auth_ldap
+#: help:res.company.ldap,ldap_password:0
+msgid ""
+"The password of the user account on the LDAP server that is used to query "
+"the directory."
+msgstr ""
+
+#. module: auth_ldap
+#: help:res.company.ldap,ldap_binddn:0
+msgid ""
+"The user account on the LDAP server that is used to query the directory. "
+"Leave empty to connect anonymously."
+msgstr ""
+
+#. module: auth_ldap
+#: field:res.company.ldap,ldap_tls:0
+msgid "Use TLS"
+msgstr ""
+
+#. module: auth_ldap
+#: view:res.company.ldap:auth_ldap.view_ldap_installer_form
+msgid "User Information"
+msgstr ""
+
+#. module: auth_ldap
+#: help:res.company.ldap,user:0
+msgid "User to copy when creating new users"
+msgstr ""
+
+#. module: auth_ldap
+#: model:ir.model,name:auth_ldap.model_res_users
+msgid "Users"
+msgstr ""
diff --git a/addons/auth_ldap/i18n/hr.po b/addons/auth_ldap/i18n/hr.po
index da24c8a5194d9..ca487e6191d1a 100644
--- a/addons/auth_ldap/i18n/hr.po
+++ b/addons/auth_ldap/i18n/hr.po
@@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-05-10 12:53+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-11-14 09:01+0000\n"
+"Last-Translator: Bole \n"
"Language-Team: Croatian (http://www.transifex.com/odoo/odoo-8/language/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -161,7 +161,7 @@ msgstr ""
#. module: auth_ldap
#: field:res.company.ldap,ldap_tls:0
msgid "Use TLS"
-msgstr ""
+msgstr "Koristi TLS"
#. module: auth_ldap
#: view:res.company.ldap:auth_ldap.view_ldap_installer_form
diff --git a/addons/auth_ldap/i18n/id.po b/addons/auth_ldap/i18n/id.po
index 96249d98fddfd..ee11dbc464545 100644
--- a/addons/auth_ldap/i18n/id.po
+++ b/addons/auth_ldap/i18n/id.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-12-02 23:35+0000\n"
+"PO-Revision-Date: 2016-09-03 00:37+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Indonesian (http://www.transifex.com/odoo/odoo-8/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -22,7 +22,7 @@ msgstr ""
msgid ""
"Automatically create local user accounts for new users authenticating via "
"LDAP"
-msgstr ""
+msgstr "Secara otomatis membuat akun pengguna lokal untuk pengguna baru yang melakukan autentikasi melalui LDAP"
#. module: auth_ldap
#: model:ir.model,name:auth_ldap.model_res_company
@@ -37,7 +37,7 @@ msgstr "Perusahaan:"
#. module: auth_ldap
#: field:res.company.ldap,create_user:0
msgid "Create user"
-msgstr ""
+msgstr "Buat pengguna"
#. module: auth_ldap
#: field:res.company.ldap,create_uid:0
@@ -58,42 +58,42 @@ msgstr "ID"
#: view:res.company:auth_ldap.company_form_view
#: view:res.company.ldap:auth_ldap.view_ldap_installer_form
msgid "LDAP Configuration"
-msgstr ""
+msgstr "Konfigurasi LDAP"
#. module: auth_ldap
#: view:res.company:auth_ldap.company_form_view field:res.company,ldaps:0
msgid "LDAP Parameters"
-msgstr ""
+msgstr "Parameter LDAP"
#. module: auth_ldap
#: field:res.company.ldap,ldap_server:0
msgid "LDAP Server address"
-msgstr ""
+msgstr "Alamat Server LDAP"
#. module: auth_ldap
#: field:res.company.ldap,ldap_server_port:0
msgid "LDAP Server port"
-msgstr ""
+msgstr "Port Server LDAP"
#. module: auth_ldap
#: field:res.company.ldap,ldap_base:0
msgid "LDAP base"
-msgstr ""
+msgstr "base LDAP"
#. module: auth_ldap
#: field:res.company.ldap,ldap_binddn:0
msgid "LDAP binddn"
-msgstr ""
+msgstr "binddn LDAP"
#. module: auth_ldap
#: field:res.company.ldap,ldap_filter:0
msgid "LDAP filter"
-msgstr ""
+msgstr "filter LDAP"
#. module: auth_ldap
#: field:res.company.ldap,ldap_password:0
msgid "LDAP password"
-msgstr ""
+msgstr "kata sandi LDAP"
#. module: auth_ldap
#: field:res.company.ldap,write_uid:0
@@ -113,7 +113,7 @@ msgstr "Informasi Login"
#. module: auth_ldap
#: view:res.company.ldap:auth_ldap.view_ldap_installer_form
msgid "Process Parameter"
-msgstr ""
+msgstr "Parameter Proses"
#. module: auth_ldap
#: help:res.company.ldap,ldap_tls:0
@@ -121,7 +121,7 @@ msgid ""
"Request secure TLS/SSL encryption when connecting to the LDAP server. This "
"option requires a server with STARTTLS enabled, otherwise all authentication"
" attempts will fail."
-msgstr ""
+msgstr "Meminta enkripsi TLS/SSL ketika mencoba terhubung ke server LDAP. Opsi ini membutuhkan server dengan fitur STARTTLS yang aktif, jika tidak, seluruh usaha autentikasi akan gagal."
#. module: auth_ldap
#: field:res.company.ldap,sequence:0
@@ -136,41 +136,41 @@ msgstr "Information Server"
#. module: auth_ldap
#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer
msgid "Setup your LDAP Server"
-msgstr ""
+msgstr "Persiapkan server LDAP Anda"
#. module: auth_ldap
#: field:res.company.ldap,user:0
msgid "Template User"
-msgstr ""
+msgstr "Pengguna Template"
#. module: auth_ldap
#: help:res.company.ldap,ldap_password:0
msgid ""
"The password of the user account on the LDAP server that is used to query "
"the directory."
-msgstr ""
+msgstr "Kata sandi dari akun pengguna di server LDAP yang digunakan untuk melakukan query direktori."
#. module: auth_ldap
#: help:res.company.ldap,ldap_binddn:0
msgid ""
"The user account on the LDAP server that is used to query the directory. "
"Leave empty to connect anonymously."
-msgstr ""
+msgstr "Kata sandi dari akun pengguna di server LDAP yang digunakan untuk melakukan query direktori. Biarkan kosong jika terhubung secara anonim."
#. module: auth_ldap
#: field:res.company.ldap,ldap_tls:0
msgid "Use TLS"
-msgstr ""
+msgstr "Menggunakan TLS"
#. module: auth_ldap
#: view:res.company.ldap:auth_ldap.view_ldap_installer_form
msgid "User Information"
-msgstr ""
+msgstr "Informasi Pengguna"
#. module: auth_ldap
#: help:res.company.ldap,user:0
msgid "User to copy when creating new users"
-msgstr ""
+msgstr "Data pengguna yang hendak disalin saat membuat pengguna baru"
#. module: auth_ldap
#: model:ir.model,name:auth_ldap.model_res_users
diff --git a/addons/auth_ldap/i18n/uk.po b/addons/auth_ldap/i18n/uk.po
index 3d35764391bcf..30de9478ab2e1 100644
--- a/addons/auth_ldap/i18n/uk.po
+++ b/addons/auth_ldap/i18n/uk.po
@@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-12-19 19:49+0000\n"
-"Last-Translator: Bogdan\n"
+"PO-Revision-Date: 2016-08-23 18:24+0000\n"
+"Last-Translator: Bohdan Lisnenko\n"
"Language-Team: Ukrainian (http://www.transifex.com/odoo/odoo-8/language/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -22,7 +22,7 @@ msgstr ""
msgid ""
"Automatically create local user accounts for new users authenticating via "
"LDAP"
-msgstr ""
+msgstr "Автоматично створювати локальних користувачів для нових користувачів аутентифікованих за допомогою LDAP"
#. module: auth_ldap
#: model:ir.model,name:auth_ldap.model_res_company
diff --git a/addons/auth_oauth/i18n/da.po b/addons/auth_oauth/i18n/da.po
index 45d352490a89b..785ca995d5e62 100644
--- a/addons/auth_oauth/i18n/da.po
+++ b/addons/auth_oauth/i18n/da.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-09-19 11:38+0000\n"
+"PO-Revision-Date: 2016-08-22 12:56+0000\n"
"Last-Translator: Hans Henrik Gabelgaard \n"
"Language-Team: Danish (http://www.transifex.com/odoo/odoo-8/language/da/)\n"
"MIME-Version: 1.0\n"
@@ -70,7 +70,7 @@ msgstr "Tilladt"
#. module: auth_oauth
#: field:auth.oauth.provider,auth_endpoint:0
msgid "Authentication URL"
-msgstr ""
+msgstr "Godkendelses URL"
#. module: auth_oauth
#: field:auth.oauth.provider,body:0
@@ -80,7 +80,7 @@ msgstr "Brødtekst"
#. module: auth_oauth
#: field:auth.oauth.provider,css_class:0
msgid "CSS class"
-msgstr ""
+msgstr "CSS class"
#. module: auth_oauth
#: field:auth.oauth.provider,client_id:0
@@ -132,47 +132,47 @@ msgstr "Kopier og indsæt kunde_id her_"
#. module: auth_oauth
#: field:res.users,oauth_access_token:0
msgid "OAuth Access Token"
-msgstr ""
+msgstr "OAuth Access Token"
#. module: auth_oauth
#: field:res.users,oauth_provider_id:0
msgid "OAuth Provider"
-msgstr ""
+msgstr "OAuth Provider"
#. module: auth_oauth
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
msgid "OAuth Providers"
-msgstr ""
+msgstr "OAuth Providers"
#. module: auth_oauth
#: sql_constraint:res.users:0
msgid "OAuth UID must be unique per provider"
-msgstr ""
+msgstr "OAuth UID skal være unik pr. udbyder"
#. module: auth_oauth
#: field:res.users,oauth_uid:0
msgid "OAuth User ID"
-msgstr ""
+msgstr "OAuth Bruger ID"
#. module: auth_oauth
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
msgid "OAuth2 provider"
-msgstr ""
+msgstr "OAuth2 provider"
#. module: auth_oauth
#: view:res.users:auth_oauth.view_users_form
msgid "Oauth"
-msgstr ""
+msgstr "Oauth"
#. module: auth_oauth
#: help:res.users,oauth_uid:0
msgid "Oauth Provider user_id"
-msgstr ""
+msgstr "Oauth udbyder user_id"
#. module: auth_oauth
#: field:auth.oauth.provider,name:0
msgid "Provider name"
-msgstr ""
+msgstr "Udbyder navn"
#. module: auth_oauth
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
@@ -205,7 +205,7 @@ msgstr "Brugere"
#. module: auth_oauth
#: field:auth.oauth.provider,validation_endpoint:0
msgid "Validation URL"
-msgstr ""
+msgstr "Godkendelses URL"
#. module: auth_oauth
#: code:addons/auth_oauth/controllers/main.py:102
@@ -220,12 +220,12 @@ msgstr "Du har ikke adgang til denne database eller din invitation er udløbet.
#: view:auth.oauth.provider:auth_oauth.view_oauth_provider_form
#: view:auth.oauth.provider:auth_oauth.view_oauth_provider_list
msgid "arch"
-msgstr ""
+msgstr "arch"
#. module: auth_oauth
#: view:base.config.settings:auth_oauth.view_general_configuration
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
-msgstr ""
+msgstr "eks. 1234-xyz.apps.googleusercontent.com"
#. module: auth_oauth
#: field:auth.oauth.provider,sequence:0
diff --git a/addons/auth_oauth/i18n/fi.po b/addons/auth_oauth/i18n/fi.po
index c773c929e0a63..0be3ce4951783 100644
--- a/addons/auth_oauth/i18n/fi.po
+++ b/addons/auth_oauth/i18n/fi.po
@@ -5,15 +5,15 @@
# Translators:
# Jarmo Kortetjärvi , 2016
# Kari Lindgren , 2015
-# Kari Lindgren , 2015
+# Kari Lindgren , 2015-2016
# Veikko Väätäjä , 2015
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-02-24 22:44+0000\n"
-"Last-Translator: Jarmo Kortetjärvi \n"
+"PO-Revision-Date: 2016-09-07 08:42+0000\n"
+"Last-Translator: Kari Lindgren \n"
"Language-Team: Finnish (http://www.transifex.com/odoo/odoo-8/language/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -41,12 +41,12 @@ msgstr ""
#. module: auth_oauth
#: view:base.config.settings:auth_oauth.view_general_configuration
msgid "- Go to Api Access"
-msgstr ""
+msgstr "- Siirry API yhteyteen"
#. module: auth_oauth
#: view:base.config.settings:auth_oauth.view_general_configuration
msgid "- Go to the"
-msgstr ""
+msgstr "- Siirry"
#. module: auth_oauth
#: code:addons/auth_oauth/controllers/main.py:100
@@ -72,7 +72,7 @@ msgstr "Sallittu"
#. module: auth_oauth
#: field:auth.oauth.provider,auth_endpoint:0
msgid "Authentication URL"
-msgstr ""
+msgstr "Autentikointi/todennus URL"
#. module: auth_oauth
#: field:auth.oauth.provider,body:0
@@ -89,7 +89,7 @@ msgstr "CSS luokka"
#: field:base.config.settings,auth_oauth_facebook_client_id:0
#: field:base.config.settings,auth_oauth_google_client_id:0
msgid "Client ID"
-msgstr ""
+msgstr "Asiakkaan tunniste/ID"
#. module: auth_oauth
#: field:auth.oauth.provider,create_uid:0
@@ -129,7 +129,7 @@ msgstr "Viimeksi päivitetty"
#. module: auth_oauth
#: view:base.config.settings:auth_oauth.view_general_configuration
msgid "Now copy paste the client_id here:"
-msgstr ""
+msgstr "Kopioi asiakkaan ID tähän:"
#. module: auth_oauth
#: field:res.users,oauth_access_token:0
@@ -169,22 +169,22 @@ msgstr "Oauth"
#. module: auth_oauth
#: help:res.users,oauth_uid:0
msgid "Oauth Provider user_id"
-msgstr ""
+msgstr "Oauth tarjoajan käyttäjätunnus/user_id"
#. module: auth_oauth
#: field:auth.oauth.provider,name:0
msgid "Provider name"
-msgstr ""
+msgstr "Palveluntarjoajan nimi"
#. module: auth_oauth
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
msgid "Providers"
-msgstr ""
+msgstr "Palveluntarjoajat"
#. module: auth_oauth
#: field:auth.oauth.provider,scope:0
msgid "Scope"
-msgstr ""
+msgstr "Laajuus"
#. module: auth_oauth
#: code:addons/auth_oauth/controllers/main.py:98
@@ -197,7 +197,7 @@ msgstr "Kirjautuminen tietokantaan ei ole sallittu."
msgid ""
"To setup the signin process with Google, first you have to perform the "
"following steps:"
-msgstr ""
+msgstr "Luodaksesi kirjautumisprosessin Googlen kanssa, sinun täytyy ensin tehdä seuraavat toimenpiteet:"
#. module: auth_oauth
#: model:ir.model,name:auth_oauth.model_res_users
@@ -216,7 +216,7 @@ msgid ""
"You do not have access to this database or your invitation has expired. "
"Please ask for an invitation and be sure to follow the link in your "
"invitation email."
-msgstr ""
+msgstr "Sinulla ei ole pääsyä tähän tietokantaan tai käyttäjäkutsusi on vanhentunut. Pyydä uutta kutsua ja varmista että seuraat kutsuviestissä olevaa linkkiä."
#. module: auth_oauth
#: view:auth.oauth.provider:auth_oauth.view_oauth_provider_form
diff --git a/addons/auth_oauth/i18n/gu.po b/addons/auth_oauth/i18n/gu.po
new file mode 100644
index 0000000000000..daf64da1bbfce
--- /dev/null
+++ b/addons/auth_oauth/i18n/gu.po
@@ -0,0 +1,231 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_oauth
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-07-17 06:49+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Gujarati (http://www.transifex.com/odoo/odoo-8/language/gu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: gu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "- Ceate a new project"
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "- Create an oauth client_id"
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid ""
+"- Edit settings and set both Authorized Redirect URIs and Authorized "
+"JavaScript Origins to your hostname."
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "- Go to Api Access"
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "- Go to the"
+msgstr ""
+
+#. module: auth_oauth
+#: code:addons/auth_oauth/controllers/main.py:100
+#, python-format
+msgid "Access Denied"
+msgstr ""
+
+#. module: auth_oauth
+#: field:base.config.settings,auth_oauth_facebook_enabled:0
+msgid "Allow users to sign in with Facebook"
+msgstr ""
+
+#. module: auth_oauth
+#: field:base.config.settings,auth_oauth_google_enabled:0
+msgid "Allow users to sign in with Google"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,enabled:0
+msgid "Allowed"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,auth_endpoint:0
+msgid "Authentication URL"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,body:0
+msgid "Body"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,css_class:0
+msgid "CSS class"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,client_id:0
+#: field:base.config.settings,auth_oauth_facebook_client_id:0
+#: field:base.config.settings,auth_oauth_google_client_id:0
+msgid "Client ID"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,create_uid:0
+msgid "Created by"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,create_date:0
+msgid "Created on"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,data_endpoint:0
+msgid "Data URL"
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "Google APIs console"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,id:0
+msgid "ID"
+msgstr "ઓળખ"
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,write_uid:0
+msgid "Last Updated by"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,write_date:0
+msgid "Last Updated on"
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "Now copy paste the client_id here:"
+msgstr ""
+
+#. module: auth_oauth
+#: field:res.users,oauth_access_token:0
+msgid "OAuth Access Token"
+msgstr ""
+
+#. module: auth_oauth
+#: field:res.users,oauth_provider_id:0
+msgid "OAuth Provider"
+msgstr ""
+
+#. module: auth_oauth
+#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
+msgid "OAuth Providers"
+msgstr ""
+
+#. module: auth_oauth
+#: sql_constraint:res.users:0
+msgid "OAuth UID must be unique per provider"
+msgstr ""
+
+#. module: auth_oauth
+#: field:res.users,oauth_uid:0
+msgid "OAuth User ID"
+msgstr ""
+
+#. module: auth_oauth
+#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
+msgid "OAuth2 provider"
+msgstr ""
+
+#. module: auth_oauth
+#: view:res.users:auth_oauth.view_users_form
+msgid "Oauth"
+msgstr ""
+
+#. module: auth_oauth
+#: help:res.users,oauth_uid:0
+msgid "Oauth Provider user_id"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,name:0
+msgid "Provider name"
+msgstr ""
+
+#. module: auth_oauth
+#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
+msgid "Providers"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,scope:0
+msgid "Scope"
+msgstr ""
+
+#. module: auth_oauth
+#: code:addons/auth_oauth/controllers/main.py:98
+#, python-format
+msgid "Sign up is not allowed on this database."
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid ""
+"To setup the signin process with Google, first you have to perform the "
+"following steps:"
+msgstr ""
+
+#. module: auth_oauth
+#: model:ir.model,name:auth_oauth.model_res_users
+msgid "Users"
+msgstr "વપરાશકર્તાઓ"
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,validation_endpoint:0
+msgid "Validation URL"
+msgstr ""
+
+#. module: auth_oauth
+#: code:addons/auth_oauth/controllers/main.py:102
+#, python-format
+msgid ""
+"You do not have access to this database or your invitation has expired. "
+"Please ask for an invitation and be sure to follow the link in your "
+"invitation email."
+msgstr ""
+
+#. module: auth_oauth
+#: view:auth.oauth.provider:auth_oauth.view_oauth_provider_form
+#: view:auth.oauth.provider:auth_oauth.view_oauth_provider_list
+msgid "arch"
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "e.g. 1234-xyz.apps.googleusercontent.com"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,sequence:0
+msgid "unknown"
+msgstr "અજ્ઞાત"
diff --git a/addons/auth_oauth/i18n/hi.po b/addons/auth_oauth/i18n/hi.po
new file mode 100644
index 0000000000000..4273d5684f57a
--- /dev/null
+++ b/addons/auth_oauth/i18n/hi.po
@@ -0,0 +1,231 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_oauth
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-05-18 11:26+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "- Ceate a new project"
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "- Create an oauth client_id"
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid ""
+"- Edit settings and set both Authorized Redirect URIs and Authorized "
+"JavaScript Origins to your hostname."
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "- Go to Api Access"
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "- Go to the"
+msgstr ""
+
+#. module: auth_oauth
+#: code:addons/auth_oauth/controllers/main.py:100
+#, python-format
+msgid "Access Denied"
+msgstr ""
+
+#. module: auth_oauth
+#: field:base.config.settings,auth_oauth_facebook_enabled:0
+msgid "Allow users to sign in with Facebook"
+msgstr ""
+
+#. module: auth_oauth
+#: field:base.config.settings,auth_oauth_google_enabled:0
+msgid "Allow users to sign in with Google"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,enabled:0
+msgid "Allowed"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,auth_endpoint:0
+msgid "Authentication URL"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,body:0
+msgid "Body"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,css_class:0
+msgid "CSS class"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,client_id:0
+#: field:base.config.settings,auth_oauth_facebook_client_id:0
+#: field:base.config.settings,auth_oauth_google_client_id:0
+msgid "Client ID"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,create_uid:0
+msgid "Created by"
+msgstr "निर्माण कर्ता"
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,create_date:0
+msgid "Created on"
+msgstr "निर्माण तिथि"
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,data_endpoint:0
+msgid "Data URL"
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "Google APIs console"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,id:0
+msgid "ID"
+msgstr "पहचान"
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,write_uid:0
+msgid "Last Updated by"
+msgstr "अंतिम सुधारकर्ता"
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,write_date:0
+msgid "Last Updated on"
+msgstr "अंतिम सुधार की तिथि"
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "Now copy paste the client_id here:"
+msgstr ""
+
+#. module: auth_oauth
+#: field:res.users,oauth_access_token:0
+msgid "OAuth Access Token"
+msgstr ""
+
+#. module: auth_oauth
+#: field:res.users,oauth_provider_id:0
+msgid "OAuth Provider"
+msgstr ""
+
+#. module: auth_oauth
+#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
+msgid "OAuth Providers"
+msgstr ""
+
+#. module: auth_oauth
+#: sql_constraint:res.users:0
+msgid "OAuth UID must be unique per provider"
+msgstr ""
+
+#. module: auth_oauth
+#: field:res.users,oauth_uid:0
+msgid "OAuth User ID"
+msgstr ""
+
+#. module: auth_oauth
+#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
+msgid "OAuth2 provider"
+msgstr ""
+
+#. module: auth_oauth
+#: view:res.users:auth_oauth.view_users_form
+msgid "Oauth"
+msgstr ""
+
+#. module: auth_oauth
+#: help:res.users,oauth_uid:0
+msgid "Oauth Provider user_id"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,name:0
+msgid "Provider name"
+msgstr ""
+
+#. module: auth_oauth
+#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
+msgid "Providers"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,scope:0
+msgid "Scope"
+msgstr ""
+
+#. module: auth_oauth
+#: code:addons/auth_oauth/controllers/main.py:98
+#, python-format
+msgid "Sign up is not allowed on this database."
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid ""
+"To setup the signin process with Google, first you have to perform the "
+"following steps:"
+msgstr ""
+
+#. module: auth_oauth
+#: model:ir.model,name:auth_oauth.model_res_users
+msgid "Users"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,validation_endpoint:0
+msgid "Validation URL"
+msgstr ""
+
+#. module: auth_oauth
+#: code:addons/auth_oauth/controllers/main.py:102
+#, python-format
+msgid ""
+"You do not have access to this database or your invitation has expired. "
+"Please ask for an invitation and be sure to follow the link in your "
+"invitation email."
+msgstr ""
+
+#. module: auth_oauth
+#: view:auth.oauth.provider:auth_oauth.view_oauth_provider_form
+#: view:auth.oauth.provider:auth_oauth.view_oauth_provider_list
+msgid "arch"
+msgstr ""
+
+#. module: auth_oauth
+#: view:base.config.settings:auth_oauth.view_general_configuration
+msgid "e.g. 1234-xyz.apps.googleusercontent.com"
+msgstr ""
+
+#. module: auth_oauth
+#: field:auth.oauth.provider,sequence:0
+msgid "unknown"
+msgstr ""
diff --git a/addons/auth_oauth/i18n/hr.po b/addons/auth_oauth/i18n/hr.po
index 59a0e89d54f1c..d1c0ead7d587a 100644
--- a/addons/auth_oauth/i18n/hr.po
+++ b/addons/auth_oauth/i18n/hr.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-05-06 12:20+0000\n"
+"PO-Revision-Date: 2016-09-29 13:18+0000\n"
"Last-Translator: Bole \n"
"Language-Team: Croatian (http://www.transifex.com/odoo/odoo-8/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -34,12 +34,12 @@ msgstr "- Kreiraj oauth client_id"
msgid ""
"- Edit settings and set both Authorized Redirect URIs and Authorized "
"JavaScript Origins to your hostname."
-msgstr ""
+msgstr "- uredite postavke i postavite oba Authorized Redirect URIs and Authorized JavaScript Origins da pokazuju na naziv vašeg poslužitelja."
#. module: auth_oauth
#: view:base.config.settings:auth_oauth.view_general_configuration
msgid "- Go to Api Access"
-msgstr ""
+msgstr "- idite na API pristup"
#. module: auth_oauth
#: view:base.config.settings:auth_oauth.view_general_configuration
@@ -70,7 +70,7 @@ msgstr "Dopušteno"
#. module: auth_oauth
#: field:auth.oauth.provider,auth_endpoint:0
msgid "Authentication URL"
-msgstr ""
+msgstr "Autorizacijski URL"
#. module: auth_oauth
#: field:auth.oauth.provider,body:0
@@ -102,12 +102,12 @@ msgstr "Vrijeme kreiranja"
#. module: auth_oauth
#: field:auth.oauth.provider,data_endpoint:0
msgid "Data URL"
-msgstr ""
+msgstr "Podatkovni URL"
#. module: auth_oauth
#: view:base.config.settings:auth_oauth.view_general_configuration
msgid "Google APIs console"
-msgstr ""
+msgstr "Konzola Google API-a"
#. module: auth_oauth
#: field:auth.oauth.provider,id:0
@@ -127,57 +127,57 @@ msgstr "Vrijeme promjene"
#. module: auth_oauth
#: view:base.config.settings:auth_oauth.view_general_configuration
msgid "Now copy paste the client_id here:"
-msgstr ""
+msgstr "sada zaljepite client_id ovdje:"
#. module: auth_oauth
#: field:res.users,oauth_access_token:0
msgid "OAuth Access Token"
-msgstr ""
+msgstr "Token OAuth pristupa"
#. module: auth_oauth
#: field:res.users,oauth_provider_id:0
msgid "OAuth Provider"
-msgstr ""
+msgstr "Pružatelj OAuth"
#. module: auth_oauth
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
msgid "OAuth Providers"
-msgstr ""
+msgstr "Pružatelji OAuth"
#. module: auth_oauth
#: sql_constraint:res.users:0
msgid "OAuth UID must be unique per provider"
-msgstr ""
+msgstr "OAuth UID mora biti jedinstven po pružatelju"
#. module: auth_oauth
#: field:res.users,oauth_uid:0
msgid "OAuth User ID"
-msgstr ""
+msgstr "OAuth Korisnički ID"
#. module: auth_oauth
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
msgid "OAuth2 provider"
-msgstr ""
+msgstr "OAuth2 pružatelj"
#. module: auth_oauth
#: view:res.users:auth_oauth.view_users_form
msgid "Oauth"
-msgstr ""
+msgstr "Oauth"
#. module: auth_oauth
#: help:res.users,oauth_uid:0
msgid "Oauth Provider user_id"
-msgstr ""
+msgstr "user_id OAuth pružatelja usluge"
#. module: auth_oauth
#: field:auth.oauth.provider,name:0
msgid "Provider name"
-msgstr ""
+msgstr "Naziv pružatelja usluge"
#. module: auth_oauth
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
msgid "Providers"
-msgstr ""
+msgstr "Pružatelji"
#. module: auth_oauth
#: field:auth.oauth.provider,scope:0
@@ -188,14 +188,14 @@ msgstr "Opseg"
#: code:addons/auth_oauth/controllers/main.py:98
#, python-format
msgid "Sign up is not allowed on this database."
-msgstr ""
+msgstr "Prijava nije dozvoljena na ovoj bazi."
#. module: auth_oauth
#: view:base.config.settings:auth_oauth.view_general_configuration
msgid ""
"To setup the signin process with Google, first you have to perform the "
"following steps:"
-msgstr ""
+msgstr "Za podešavanje procesa prijave sa Google računom, prvo morate odraditi sljedeće korake:"
#. module: auth_oauth
#: model:ir.model,name:auth_oauth.model_res_users
@@ -205,7 +205,7 @@ msgstr "Korisnici"
#. module: auth_oauth
#: field:auth.oauth.provider,validation_endpoint:0
msgid "Validation URL"
-msgstr ""
+msgstr "Validacijski URL"
#. module: auth_oauth
#: code:addons/auth_oauth/controllers/main.py:102
@@ -214,18 +214,18 @@ msgid ""
"You do not have access to this database or your invitation has expired. "
"Please ask for an invitation and be sure to follow the link in your "
"invitation email."
-msgstr ""
+msgstr "Nemate pristup ovoj bazi ili je vaša pozivnica istekla. Molimo zatražite pozivnicu i kliknite na link u mailu prije nego istekne."
#. module: auth_oauth
#: view:auth.oauth.provider:auth_oauth.view_oauth_provider_form
#: view:auth.oauth.provider:auth_oauth.view_oauth_provider_list
msgid "arch"
-msgstr ""
+msgstr "arhitektura"
#. module: auth_oauth
#: view:base.config.settings:auth_oauth.view_general_configuration
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
-msgstr ""
+msgstr "npr. 1234-xyz.apps.googleusercontent.com"
#. module: auth_oauth
#: field:auth.oauth.provider,sequence:0
diff --git a/addons/auth_oauth/i18n/ja.po b/addons/auth_oauth/i18n/ja.po
index db887b9c0c28a..4150ab64f6817 100644
--- a/addons/auth_oauth/i18n/ja.po
+++ b/addons/auth_oauth/i18n/ja.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-08-15 09:35+0000\n"
+"PO-Revision-Date: 2016-10-11 06:57+0000\n"
"Last-Translator: Yoshi Tashiro \n"
"Language-Team: Japanese (http://www.transifex.com/odoo/odoo-8/language/ja/)\n"
"MIME-Version: 1.0\n"
@@ -58,17 +58,17 @@ msgstr ""
#. module: auth_oauth
#: field:base.config.settings,auth_oauth_google_enabled:0
msgid "Allow users to sign in with Google"
-msgstr ""
+msgstr "Googleでのサインインを許可"
#. module: auth_oauth
#: field:auth.oauth.provider,enabled:0
msgid "Allowed"
-msgstr ""
+msgstr "許可"
#. module: auth_oauth
#: field:auth.oauth.provider,auth_endpoint:0
msgid "Authentication URL"
-msgstr ""
+msgstr "認証URL"
#. module: auth_oauth
#: field:auth.oauth.provider,body:0
@@ -85,7 +85,7 @@ msgstr ""
#: field:base.config.settings,auth_oauth_facebook_client_id:0
#: field:base.config.settings,auth_oauth_google_client_id:0
msgid "Client ID"
-msgstr ""
+msgstr "クライアントID"
#. module: auth_oauth
#: field:auth.oauth.provider,create_uid:0
@@ -100,7 +100,7 @@ msgstr "作成日"
#. module: auth_oauth
#: field:auth.oauth.provider,data_endpoint:0
msgid "Data URL"
-msgstr ""
+msgstr "データURL"
#. module: auth_oauth
#: view:base.config.settings:auth_oauth.view_general_configuration
@@ -130,17 +130,17 @@ msgstr ""
#. module: auth_oauth
#: field:res.users,oauth_access_token:0
msgid "OAuth Access Token"
-msgstr ""
+msgstr "OAuthアクセストークン"
#. module: auth_oauth
#: field:res.users,oauth_provider_id:0
msgid "OAuth Provider"
-msgstr ""
+msgstr "OAuthプロバイダ"
#. module: auth_oauth
#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers
msgid "OAuth Providers"
-msgstr ""
+msgstr "OAuthプロバイダ"
#. module: auth_oauth
#: sql_constraint:res.users:0
@@ -150,12 +150,12 @@ msgstr ""
#. module: auth_oauth
#: field:res.users,oauth_uid:0
msgid "OAuth User ID"
-msgstr ""
+msgstr "OAuthユーザID"
#. module: auth_oauth
#: model:ir.model,name:auth_oauth.model_auth_oauth_provider
msgid "OAuth2 provider"
-msgstr ""
+msgstr "OAuth2プロバイダ"
#. module: auth_oauth
#: view:res.users:auth_oauth.view_users_form
@@ -165,22 +165,22 @@ msgstr ""
#. module: auth_oauth
#: help:res.users,oauth_uid:0
msgid "Oauth Provider user_id"
-msgstr ""
+msgstr "OAuthプロバイダユーザ"
#. module: auth_oauth
#: field:auth.oauth.provider,name:0
msgid "Provider name"
-msgstr ""
+msgstr "プロバイダ名"
#. module: auth_oauth
#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider
msgid "Providers"
-msgstr ""
+msgstr "プロバイダ"
#. module: auth_oauth
#: field:auth.oauth.provider,scope:0
msgid "Scope"
-msgstr ""
+msgstr "スコープ"
#. module: auth_oauth
#: code:addons/auth_oauth/controllers/main.py:98
@@ -203,7 +203,7 @@ msgstr "ユーザ"
#. module: auth_oauth
#: field:auth.oauth.provider,validation_endpoint:0
msgid "Validation URL"
-msgstr ""
+msgstr "確認URL"
#. module: auth_oauth
#: code:addons/auth_oauth/controllers/main.py:102
@@ -223,7 +223,7 @@ msgstr ""
#. module: auth_oauth
#: view:base.config.settings:auth_oauth.view_general_configuration
msgid "e.g. 1234-xyz.apps.googleusercontent.com"
-msgstr ""
+msgstr "例: 1234-xyz.apps.googleusercontent.com"
#. module: auth_oauth
#: field:auth.oauth.provider,sequence:0
diff --git a/addons/auth_oauth/i18n/sq.po b/addons/auth_oauth/i18n/sq.po
index 285f13df7fc3b..81e1bc98ed3d8 100644
--- a/addons/auth_oauth/i18n/sq.po
+++ b/addons/auth_oauth/i18n/sq.po
@@ -85,7 +85,7 @@ msgstr ""
#: field:base.config.settings,auth_oauth_facebook_client_id:0
#: field:base.config.settings,auth_oauth_google_client_id:0
msgid "Client ID"
-msgstr ""
+msgstr "ID Klienti"
#. module: auth_oauth
#: field:auth.oauth.provider,create_uid:0
diff --git a/addons/auth_openid/i18n/es_BO.po b/addons/auth_openid/i18n/es_BO.po
new file mode 100644
index 0000000000000..cf75bcbf2a4bc
--- /dev/null
+++ b/addons/auth_openid/i18n/es_BO.po
@@ -0,0 +1,97 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_openid
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-05-18 11:26+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-8/language/es_BO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_BO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:9
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10
+#, python-format
+msgid "Google"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10
+#, python-format
+msgid "Google Apps"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:18
+#, python-format
+msgid "Google Apps Domain"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:11
+#, python-format
+msgid "Launchpad"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:12
+#: view:res.users:auth_openid.view_users_form
+#, python-format
+msgid "OpenID"
+msgstr ""
+
+#. module: auth_openid
+#: field:res.users,openid_email:0
+msgid "OpenID Email"
+msgstr ""
+
+#. module: auth_openid
+#: field:res.users,openid_key:0
+msgid "OpenID Key"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:30
+#: field:res.users,openid_url:0
+#, python-format
+msgid "OpenID URL"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:8
+#, python-format
+msgid "Password"
+msgstr ""
+
+#. module: auth_openid
+#: help:res.users,openid_email:0
+msgid "Used for disambiguation in case of a shared OpenID URL"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:24
+#, python-format
+msgid "Username"
+msgstr ""
+
+#. module: auth_openid
+#: model:ir.model,name:auth_openid.model_res_users
+msgid "Users"
+msgstr ""
diff --git a/addons/auth_openid/i18n/es_PE.po b/addons/auth_openid/i18n/es_PE.po
new file mode 100644
index 0000000000000..c2ea04f847377
--- /dev/null
+++ b/addons/auth_openid/i18n/es_PE.po
@@ -0,0 +1,97 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_openid
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-05-18 11:26+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-8/language/es_PE/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_PE\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:9
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10
+#, python-format
+msgid "Google"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10
+#, python-format
+msgid "Google Apps"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:18
+#, python-format
+msgid "Google Apps Domain"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:11
+#, python-format
+msgid "Launchpad"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:12
+#: view:res.users:auth_openid.view_users_form
+#, python-format
+msgid "OpenID"
+msgstr ""
+
+#. module: auth_openid
+#: field:res.users,openid_email:0
+msgid "OpenID Email"
+msgstr ""
+
+#. module: auth_openid
+#: field:res.users,openid_key:0
+msgid "OpenID Key"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:30
+#: field:res.users,openid_url:0
+#, python-format
+msgid "OpenID URL"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:8
+#, python-format
+msgid "Password"
+msgstr "Contraseña"
+
+#. module: auth_openid
+#: help:res.users,openid_email:0
+msgid "Used for disambiguation in case of a shared OpenID URL"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:24
+#, python-format
+msgid "Username"
+msgstr ""
+
+#. module: auth_openid
+#: model:ir.model,name:auth_openid.model_res_users
+msgid "Users"
+msgstr "Usuarios"
diff --git a/addons/auth_openid/i18n/es_PY.po b/addons/auth_openid/i18n/es_PY.po
new file mode 100644
index 0000000000000..976fa0b21387e
--- /dev/null
+++ b/addons/auth_openid/i18n/es_PY.po
@@ -0,0 +1,97 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_openid
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-07-17 06:50+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Spanish (Paraguay) (http://www.transifex.com/odoo/odoo-8/language/es_PY/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_PY\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:9
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10
+#, python-format
+msgid "Google"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10
+#, python-format
+msgid "Google Apps"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:18
+#, python-format
+msgid "Google Apps Domain"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:11
+#, python-format
+msgid "Launchpad"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:12
+#: view:res.users:auth_openid.view_users_form
+#, python-format
+msgid "OpenID"
+msgstr ""
+
+#. module: auth_openid
+#: field:res.users,openid_email:0
+msgid "OpenID Email"
+msgstr ""
+
+#. module: auth_openid
+#: field:res.users,openid_key:0
+msgid "OpenID Key"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:30
+#: field:res.users,openid_url:0
+#, python-format
+msgid "OpenID URL"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:8
+#, python-format
+msgid "Password"
+msgstr ""
+
+#. module: auth_openid
+#: help:res.users,openid_email:0
+msgid "Used for disambiguation in case of a shared OpenID URL"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:24
+#, python-format
+msgid "Username"
+msgstr ""
+
+#. module: auth_openid
+#: model:ir.model,name:auth_openid.model_res_users
+msgid "Users"
+msgstr "Usuarios"
diff --git a/addons/auth_openid/i18n/fr_CA.po b/addons/auth_openid/i18n/fr_CA.po
new file mode 100644
index 0000000000000..87e1453937a44
--- /dev/null
+++ b/addons/auth_openid/i18n/fr_CA.po
@@ -0,0 +1,97 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_openid
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-07-17 06:50+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: French (Canada) (http://www.transifex.com/odoo/odoo-8/language/fr_CA/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr_CA\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:9
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10
+#, python-format
+msgid "Google"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10
+#, python-format
+msgid "Google Apps"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:18
+#, python-format
+msgid "Google Apps Domain"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:11
+#, python-format
+msgid "Launchpad"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:12
+#: view:res.users:auth_openid.view_users_form
+#, python-format
+msgid "OpenID"
+msgstr ""
+
+#. module: auth_openid
+#: field:res.users,openid_email:0
+msgid "OpenID Email"
+msgstr ""
+
+#. module: auth_openid
+#: field:res.users,openid_key:0
+msgid "OpenID Key"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:30
+#: field:res.users,openid_url:0
+#, python-format
+msgid "OpenID URL"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:8
+#, python-format
+msgid "Password"
+msgstr ""
+
+#. module: auth_openid
+#: help:res.users,openid_email:0
+msgid "Used for disambiguation in case of a shared OpenID URL"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:24
+#, python-format
+msgid "Username"
+msgstr ""
+
+#. module: auth_openid
+#: model:ir.model,name:auth_openid.model_res_users
+msgid "Users"
+msgstr "Utilisateurs"
diff --git a/addons/auth_openid/i18n/hi.po b/addons/auth_openid/i18n/hi.po
new file mode 100644
index 0000000000000..9a385560a7679
--- /dev/null
+++ b/addons/auth_openid/i18n/hi.po
@@ -0,0 +1,97 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_openid
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2015-05-18 11:26+0000\n"
+"Last-Translator: <>\n"
+"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:9
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10
+#, python-format
+msgid "Google"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10
+#, python-format
+msgid "Google Apps"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:18
+#, python-format
+msgid "Google Apps Domain"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:11
+#, python-format
+msgid "Launchpad"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:12
+#: view:res.users:auth_openid.view_users_form
+#, python-format
+msgid "OpenID"
+msgstr ""
+
+#. module: auth_openid
+#: field:res.users,openid_email:0
+msgid "OpenID Email"
+msgstr ""
+
+#. module: auth_openid
+#: field:res.users,openid_key:0
+msgid "OpenID Key"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:30
+#: field:res.users,openid_url:0
+#, python-format
+msgid "OpenID URL"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:8
+#, python-format
+msgid "Password"
+msgstr ""
+
+#. module: auth_openid
+#: help:res.users,openid_email:0
+msgid "Used for disambiguation in case of a shared OpenID URL"
+msgstr ""
+
+#. module: auth_openid
+#. openerp-web
+#: code:addons/auth_openid/static/src/xml/auth_openid.xml:24
+#, python-format
+msgid "Username"
+msgstr ""
+
+#. module: auth_openid
+#: model:ir.model,name:auth_openid.model_res_users
+msgid "Users"
+msgstr ""
diff --git a/addons/auth_signup/i18n/bs.po b/addons/auth_signup/i18n/bs.po
index e961830384516..6fa87df78442c 100644
--- a/addons/auth_signup/i18n/bs.po
+++ b/addons/auth_signup/i18n/bs.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-16 13:15+0000\n"
-"PO-Revision-Date: 2016-06-05 14:52+0000\n"
+"PO-Revision-Date: 2016-11-21 14:33+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Bosnian (http://www.transifex.com/odoo/odoo-8/language/bs/)\n"
"MIME-Version: 1.0\n"
@@ -253,7 +253,7 @@ msgstr ""
#. module: auth_signup
#: view:website:auth_signup.fields
msgid "Your Name"
-msgstr ""
+msgstr "Vaše ime"
#. module: auth_signup
#: view:website:auth_signup.fields
diff --git a/addons/auth_signup/i18n/es_BO.po b/addons/auth_signup/i18n/es_BO.po
new file mode 100644
index 0000000000000..d042a4c6cece4
--- /dev/null
+++ b/addons/auth_signup/i18n/es_BO.po
@@ -0,0 +1,261 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_signup
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-12-16 13:15+0000\n"
+"PO-Revision-Date: 2015-12-17 08:25+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Spanish (Bolivia) (http://www.transifex.com/odoo/odoo-8/language/es_BO/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_BO\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auth_signup
+#: model:email.template,body_html:auth_signup.set_password_email
+msgid ""
+"\n"
+" \n"
+" \n"
+" ${object.name},\n"
+"
\n"
+" \n"
+" You have been invited to connect to \"${object.company_id.name}\" in order to get access to your documents in Odoo.\n"
+"
\n"
+" \n"
+" To accept the invitation, click on the following link:\n"
+"
\n"
+" \n"
+" \n"
+" Thanks,\n"
+"
\n"
+" \n"
+"--\n"
+"${object.company_id.name or ''}\n"
+"${object.company_id.email or ''}\n"
+"${object.company_id.phone or ''}\n"
+"
\n"
+" \n"
+" "
+msgstr ""
+
+#. module: auth_signup
+#: model:email.template,body_html:auth_signup.reset_password_email
+msgid ""
+"\n"
+"A password reset was requested for the Odoo account linked to this email.
\n"
+"\n"
+"You may change your password by following this link.
\n"
+"\n"
+"Note: If you do not expect this, you can safely ignore this email.
"
+msgstr ""
+
+#. module: auth_signup
+#: model:email.template,subject:auth_signup.set_password_email
+msgid "${object.company_id.name} invitation to connect on Odoo"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid ""
+"A password reset has been requested for this user. An email containing the "
+"following link has been sent:"
+msgstr ""
+
+#. module: auth_signup
+#: selection:res.users,state:0
+msgid "Activated"
+msgstr ""
+
+#. module: auth_signup
+#: field:base.config.settings,auth_signup_uninvited:0
+msgid "Allow external users to sign up"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:78
+#, python-format
+msgid "An email has been sent with credentials to reset your password"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid ""
+"An invitation email containing the following subscription link has been "
+"sent:"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:58
+#, python-format
+msgid "Another user is already registered using this email address."
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:130
+#, python-format
+msgid "Authentification Failed."
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.reset_password view:website:auth_signup.signup
+msgid "Back to Login"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/res_users.py:294
+#, python-format
+msgid "Cannot send email: user has no email address."
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "Confirm Password"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:61
+#, python-format
+msgid "Could not create a new account."
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:84
+#, python-format
+msgid "Could not reset your password"
+msgstr ""
+
+#. module: auth_signup
+#: field:base.config.settings,auth_signup_reset_password:0
+msgid "Enable password reset from Login page"
+msgstr ""
+
+#. module: auth_signup
+#: help:base.config.settings,auth_signup_uninvited:0
+msgid "If unchecked, only invited users may sign up."
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:109
+#, python-format
+msgid "Invalid signup token"
+msgstr ""
+
+#. module: auth_signup
+#: selection:res.users,state:0
+msgid "Never Connected"
+msgstr ""
+
+#. module: auth_signup
+#: model:ir.model,name:auth_signup.model_res_partner
+msgid "Partner"
+msgstr "Empresa"
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "Password"
+msgstr ""
+
+#. module: auth_signup
+#: model:email.template,subject:auth_signup.reset_password_email
+msgid "Password reset"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:web.login
+msgid "Reset Password"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.reset_password
+msgid "Reset password"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/res_users.py:267
+#, python-format
+msgid "Reset password: invalid username or email"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid "Send Reset Password Instructions"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid "Send an Invitation Email"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.signup view:website:web.login
+msgid "Sign up"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_expiration:0
+msgid "Signup Expiration"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_token:0
+msgid "Signup Token"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_type:0
+msgid "Signup Token Type"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_valid:0
+msgid "Signup Token is Valid"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_url:0
+msgid "Signup URL"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.users,state:0
+msgid "Status"
+msgstr "Estado"
+
+#. module: auth_signup
+#: field:base.config.settings,auth_signup_template_user_id:0
+msgid "Template user for new users created through signup"
+msgstr ""
+
+#. module: auth_signup
+#: help:base.config.settings,auth_signup_reset_password:0
+msgid "This allows users to trigger a password reset from the Login page."
+msgstr ""
+
+#. module: auth_signup
+#: model:ir.model,name:auth_signup.model_res_users
+msgid "Users"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields view:website:auth_signup.reset_password
+msgid "Your Email"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "Your Name"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "e.g. John Doe"
+msgstr ""
diff --git a/addons/auth_signup/i18n/es_CL.po b/addons/auth_signup/i18n/es_CL.po
index e78a7be2a219d..18ff3e527ccf9 100644
--- a/addons/auth_signup/i18n/es_CL.po
+++ b/addons/auth_signup/i18n/es_CL.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-16 13:15+0000\n"
-"PO-Revision-Date: 2015-12-17 08:25+0000\n"
+"PO-Revision-Date: 2016-10-18 03:02+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-8/language/es_CL/)\n"
"MIME-Version: 1.0\n"
@@ -253,7 +253,7 @@ msgstr ""
#. module: auth_signup
#: view:website:auth_signup.fields
msgid "Your Name"
-msgstr ""
+msgstr "Tu nombre"
#. module: auth_signup
#: view:website:auth_signup.fields
diff --git a/addons/auth_signup/i18n/es_PY.po b/addons/auth_signup/i18n/es_PY.po
new file mode 100644
index 0000000000000..1a72e52dfe727
--- /dev/null
+++ b/addons/auth_signup/i18n/es_PY.po
@@ -0,0 +1,261 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_signup
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-12-16 13:15+0000\n"
+"PO-Revision-Date: 2015-12-17 08:25+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Spanish (Paraguay) (http://www.transifex.com/odoo/odoo-8/language/es_PY/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_PY\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auth_signup
+#: model:email.template,body_html:auth_signup.set_password_email
+msgid ""
+"\n"
+" \n"
+" \n"
+" ${object.name},\n"
+"
\n"
+" \n"
+" You have been invited to connect to \"${object.company_id.name}\" in order to get access to your documents in Odoo.\n"
+"
\n"
+" \n"
+" To accept the invitation, click on the following link:\n"
+"
\n"
+" \n"
+" \n"
+" Thanks,\n"
+"
\n"
+" \n"
+"--\n"
+"${object.company_id.name or ''}\n"
+"${object.company_id.email or ''}\n"
+"${object.company_id.phone or ''}\n"
+"
\n"
+" \n"
+" "
+msgstr ""
+
+#. module: auth_signup
+#: model:email.template,body_html:auth_signup.reset_password_email
+msgid ""
+"\n"
+"A password reset was requested for the Odoo account linked to this email.
\n"
+"\n"
+"You may change your password by following this link.
\n"
+"\n"
+"Note: If you do not expect this, you can safely ignore this email.
"
+msgstr ""
+
+#. module: auth_signup
+#: model:email.template,subject:auth_signup.set_password_email
+msgid "${object.company_id.name} invitation to connect on Odoo"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid ""
+"A password reset has been requested for this user. An email containing the "
+"following link has been sent:"
+msgstr ""
+
+#. module: auth_signup
+#: selection:res.users,state:0
+msgid "Activated"
+msgstr ""
+
+#. module: auth_signup
+#: field:base.config.settings,auth_signup_uninvited:0
+msgid "Allow external users to sign up"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:78
+#, python-format
+msgid "An email has been sent with credentials to reset your password"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid ""
+"An invitation email containing the following subscription link has been "
+"sent:"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:58
+#, python-format
+msgid "Another user is already registered using this email address."
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:130
+#, python-format
+msgid "Authentification Failed."
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.reset_password view:website:auth_signup.signup
+msgid "Back to Login"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/res_users.py:294
+#, python-format
+msgid "Cannot send email: user has no email address."
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "Confirm Password"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:61
+#, python-format
+msgid "Could not create a new account."
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:84
+#, python-format
+msgid "Could not reset your password"
+msgstr ""
+
+#. module: auth_signup
+#: field:base.config.settings,auth_signup_reset_password:0
+msgid "Enable password reset from Login page"
+msgstr ""
+
+#. module: auth_signup
+#: help:base.config.settings,auth_signup_uninvited:0
+msgid "If unchecked, only invited users may sign up."
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:109
+#, python-format
+msgid "Invalid signup token"
+msgstr ""
+
+#. module: auth_signup
+#: selection:res.users,state:0
+msgid "Never Connected"
+msgstr ""
+
+#. module: auth_signup
+#: model:ir.model,name:auth_signup.model_res_partner
+msgid "Partner"
+msgstr "Socio"
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "Password"
+msgstr ""
+
+#. module: auth_signup
+#: model:email.template,subject:auth_signup.reset_password_email
+msgid "Password reset"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:web.login
+msgid "Reset Password"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.reset_password
+msgid "Reset password"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/res_users.py:267
+#, python-format
+msgid "Reset password: invalid username or email"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid "Send Reset Password Instructions"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid "Send an Invitation Email"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.signup view:website:web.login
+msgid "Sign up"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_expiration:0
+msgid "Signup Expiration"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_token:0
+msgid "Signup Token"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_type:0
+msgid "Signup Token Type"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_valid:0
+msgid "Signup Token is Valid"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_url:0
+msgid "Signup URL"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.users,state:0
+msgid "Status"
+msgstr "Estado"
+
+#. module: auth_signup
+#: field:base.config.settings,auth_signup_template_user_id:0
+msgid "Template user for new users created through signup"
+msgstr ""
+
+#. module: auth_signup
+#: help:base.config.settings,auth_signup_reset_password:0
+msgid "This allows users to trigger a password reset from the Login page."
+msgstr ""
+
+#. module: auth_signup
+#: model:ir.model,name:auth_signup.model_res_users
+msgid "Users"
+msgstr "Usuarios"
+
+#. module: auth_signup
+#: view:website:auth_signup.fields view:website:auth_signup.reset_password
+msgid "Your Email"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "Your Name"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "e.g. John Doe"
+msgstr ""
diff --git a/addons/auth_signup/i18n/fr_CA.po b/addons/auth_signup/i18n/fr_CA.po
new file mode 100644
index 0000000000000..ab74ab185a937
--- /dev/null
+++ b/addons/auth_signup/i18n/fr_CA.po
@@ -0,0 +1,261 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_signup
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-12-16 13:15+0000\n"
+"PO-Revision-Date: 2015-12-17 08:25+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: French (Canada) (http://www.transifex.com/odoo/odoo-8/language/fr_CA/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr_CA\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: auth_signup
+#: model:email.template,body_html:auth_signup.set_password_email
+msgid ""
+"\n"
+" \n"
+" \n"
+" ${object.name},\n"
+"
\n"
+" \n"
+" You have been invited to connect to \"${object.company_id.name}\" in order to get access to your documents in Odoo.\n"
+"
\n"
+" \n"
+" To accept the invitation, click on the following link:\n"
+"
\n"
+" \n"
+" \n"
+" Thanks,\n"
+"
\n"
+" \n"
+"--\n"
+"${object.company_id.name or ''}\n"
+"${object.company_id.email or ''}\n"
+"${object.company_id.phone or ''}\n"
+"
\n"
+" \n"
+" "
+msgstr ""
+
+#. module: auth_signup
+#: model:email.template,body_html:auth_signup.reset_password_email
+msgid ""
+"\n"
+"A password reset was requested for the Odoo account linked to this email.
\n"
+"\n"
+"You may change your password by following this link.
\n"
+"\n"
+"Note: If you do not expect this, you can safely ignore this email.
"
+msgstr ""
+
+#. module: auth_signup
+#: model:email.template,subject:auth_signup.set_password_email
+msgid "${object.company_id.name} invitation to connect on Odoo"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid ""
+"A password reset has been requested for this user. An email containing the "
+"following link has been sent:"
+msgstr ""
+
+#. module: auth_signup
+#: selection:res.users,state:0
+msgid "Activated"
+msgstr ""
+
+#. module: auth_signup
+#: field:base.config.settings,auth_signup_uninvited:0
+msgid "Allow external users to sign up"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:78
+#, python-format
+msgid "An email has been sent with credentials to reset your password"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid ""
+"An invitation email containing the following subscription link has been "
+"sent:"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:58
+#, python-format
+msgid "Another user is already registered using this email address."
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:130
+#, python-format
+msgid "Authentification Failed."
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.reset_password view:website:auth_signup.signup
+msgid "Back to Login"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/res_users.py:294
+#, python-format
+msgid "Cannot send email: user has no email address."
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "Confirm Password"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:61
+#, python-format
+msgid "Could not create a new account."
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:84
+#, python-format
+msgid "Could not reset your password"
+msgstr ""
+
+#. module: auth_signup
+#: field:base.config.settings,auth_signup_reset_password:0
+msgid "Enable password reset from Login page"
+msgstr ""
+
+#. module: auth_signup
+#: help:base.config.settings,auth_signup_uninvited:0
+msgid "If unchecked, only invited users may sign up."
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:109
+#, python-format
+msgid "Invalid signup token"
+msgstr ""
+
+#. module: auth_signup
+#: selection:res.users,state:0
+msgid "Never Connected"
+msgstr ""
+
+#. module: auth_signup
+#: model:ir.model,name:auth_signup.model_res_partner
+msgid "Partner"
+msgstr "Partenaire"
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "Password"
+msgstr ""
+
+#. module: auth_signup
+#: model:email.template,subject:auth_signup.reset_password_email
+msgid "Password reset"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:web.login
+msgid "Reset Password"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.reset_password
+msgid "Reset password"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/res_users.py:267
+#, python-format
+msgid "Reset password: invalid username or email"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid "Send Reset Password Instructions"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid "Send an Invitation Email"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.signup view:website:web.login
+msgid "Sign up"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_expiration:0
+msgid "Signup Expiration"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_token:0
+msgid "Signup Token"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_type:0
+msgid "Signup Token Type"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_valid:0
+msgid "Signup Token is Valid"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_url:0
+msgid "Signup URL"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.users,state:0
+msgid "Status"
+msgstr "Statut"
+
+#. module: auth_signup
+#: field:base.config.settings,auth_signup_template_user_id:0
+msgid "Template user for new users created through signup"
+msgstr ""
+
+#. module: auth_signup
+#: help:base.config.settings,auth_signup_reset_password:0
+msgid "This allows users to trigger a password reset from the Login page."
+msgstr ""
+
+#. module: auth_signup
+#: model:ir.model,name:auth_signup.model_res_users
+msgid "Users"
+msgstr "Utilisateurs"
+
+#. module: auth_signup
+#: view:website:auth_signup.fields view:website:auth_signup.reset_password
+msgid "Your Email"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "Your Name"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "e.g. John Doe"
+msgstr ""
diff --git a/addons/auth_signup/i18n/hi.po b/addons/auth_signup/i18n/hi.po
new file mode 100644
index 0000000000000..b07c05f101fff
--- /dev/null
+++ b/addons/auth_signup/i18n/hi.po
@@ -0,0 +1,261 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * auth_signup
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-12-16 13:15+0000\n"
+"PO-Revision-Date: 2015-12-17 08:25+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: auth_signup
+#: model:email.template,body_html:auth_signup.set_password_email
+msgid ""
+"\n"
+" \n"
+" \n"
+" ${object.name},\n"
+"
\n"
+" \n"
+" You have been invited to connect to \"${object.company_id.name}\" in order to get access to your documents in Odoo.\n"
+"
\n"
+" \n"
+" To accept the invitation, click on the following link:\n"
+"
\n"
+" \n"
+" \n"
+" Thanks,\n"
+"
\n"
+" \n"
+"--\n"
+"${object.company_id.name or ''}\n"
+"${object.company_id.email or ''}\n"
+"${object.company_id.phone or ''}\n"
+"
\n"
+" \n"
+" "
+msgstr ""
+
+#. module: auth_signup
+#: model:email.template,body_html:auth_signup.reset_password_email
+msgid ""
+"\n"
+"A password reset was requested for the Odoo account linked to this email.
\n"
+"\n"
+"You may change your password by following this link.
\n"
+"\n"
+"Note: If you do not expect this, you can safely ignore this email.
"
+msgstr ""
+
+#. module: auth_signup
+#: model:email.template,subject:auth_signup.set_password_email
+msgid "${object.company_id.name} invitation to connect on Odoo"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid ""
+"A password reset has been requested for this user. An email containing the "
+"following link has been sent:"
+msgstr ""
+
+#. module: auth_signup
+#: selection:res.users,state:0
+msgid "Activated"
+msgstr ""
+
+#. module: auth_signup
+#: field:base.config.settings,auth_signup_uninvited:0
+msgid "Allow external users to sign up"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:78
+#, python-format
+msgid "An email has been sent with credentials to reset your password"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid ""
+"An invitation email containing the following subscription link has been "
+"sent:"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:58
+#, python-format
+msgid "Another user is already registered using this email address."
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:130
+#, python-format
+msgid "Authentification Failed."
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.reset_password view:website:auth_signup.signup
+msgid "Back to Login"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/res_users.py:294
+#, python-format
+msgid "Cannot send email: user has no email address."
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "Confirm Password"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:61
+#, python-format
+msgid "Could not create a new account."
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:84
+#, python-format
+msgid "Could not reset your password"
+msgstr ""
+
+#. module: auth_signup
+#: field:base.config.settings,auth_signup_reset_password:0
+msgid "Enable password reset from Login page"
+msgstr ""
+
+#. module: auth_signup
+#: help:base.config.settings,auth_signup_uninvited:0
+msgid "If unchecked, only invited users may sign up."
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/controllers/main.py:109
+#, python-format
+msgid "Invalid signup token"
+msgstr ""
+
+#. module: auth_signup
+#: selection:res.users,state:0
+msgid "Never Connected"
+msgstr ""
+
+#. module: auth_signup
+#: model:ir.model,name:auth_signup.model_res_partner
+msgid "Partner"
+msgstr "साथी"
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "Password"
+msgstr ""
+
+#. module: auth_signup
+#: model:email.template,subject:auth_signup.reset_password_email
+msgid "Password reset"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:web.login
+msgid "Reset Password"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.reset_password
+msgid "Reset password"
+msgstr ""
+
+#. module: auth_signup
+#: code:addons/auth_signup/res_users.py:267
+#, python-format
+msgid "Reset password: invalid username or email"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid "Send Reset Password Instructions"
+msgstr ""
+
+#. module: auth_signup
+#: view:res.users:auth_signup.res_users_form_view
+msgid "Send an Invitation Email"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.signup view:website:web.login
+msgid "Sign up"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_expiration:0
+msgid "Signup Expiration"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_token:0
+msgid "Signup Token"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_type:0
+msgid "Signup Token Type"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_valid:0
+msgid "Signup Token is Valid"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.partner,signup_url:0
+msgid "Signup URL"
+msgstr ""
+
+#. module: auth_signup
+#: field:res.users,state:0
+msgid "Status"
+msgstr "स्थिति"
+
+#. module: auth_signup
+#: field:base.config.settings,auth_signup_template_user_id:0
+msgid "Template user for new users created through signup"
+msgstr ""
+
+#. module: auth_signup
+#: help:base.config.settings,auth_signup_reset_password:0
+msgid "This allows users to trigger a password reset from the Login page."
+msgstr ""
+
+#. module: auth_signup
+#: model:ir.model,name:auth_signup.model_res_users
+msgid "Users"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields view:website:auth_signup.reset_password
+msgid "Your Email"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "Your Name"
+msgstr ""
+
+#. module: auth_signup
+#: view:website:auth_signup.fields
+msgid "e.g. John Doe"
+msgstr ""
diff --git a/addons/auth_signup/i18n/hr.po b/addons/auth_signup/i18n/hr.po
index 8c34359fa1604..22864d2faab19 100644
--- a/addons/auth_signup/i18n/hr.po
+++ b/addons/auth_signup/i18n/hr.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-16 13:15+0000\n"
-"PO-Revision-Date: 2015-12-17 08:25+0000\n"
+"PO-Revision-Date: 2016-10-15 21:46+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Croatian (http://www.transifex.com/odoo/odoo-8/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -126,13 +126,13 @@ msgstr "Potvrdi lozinku"
#: code:addons/auth_signup/controllers/main.py:61
#, python-format
msgid "Could not create a new account."
-msgstr ""
+msgstr "Stvaranje novog računa nije uspjelo."
#. module: auth_signup
#: code:addons/auth_signup/controllers/main.py:84
#, python-format
msgid "Could not reset your password"
-msgstr ""
+msgstr "Nismo uspjeli resetirati vašu lozinku"
#. module: auth_signup
#: field:base.config.settings,auth_signup_reset_password:0
@@ -148,7 +148,7 @@ msgstr "Dozvoli prijavu svima ili samo pozvanim korisnicima"
#: code:addons/auth_signup/controllers/main.py:109
#, python-format
msgid "Invalid signup token"
-msgstr ""
+msgstr "Netočan token prijave"
#. module: auth_signup
#: selection:res.users,state:0
diff --git a/addons/auth_signup/i18n/ja.po b/addons/auth_signup/i18n/ja.po
index 95495aa2f6e99..c3eff0ea7a331 100644
--- a/addons/auth_signup/i18n/ja.po
+++ b/addons/auth_signup/i18n/ja.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-16 13:15+0000\n"
-"PO-Revision-Date: 2016-07-21 01:11+0000\n"
+"PO-Revision-Date: 2016-11-14 09:06+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Japanese (http://www.transifex.com/odoo/odoo-8/language/ja/)\n"
"MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
#: code:addons/auth_signup/controllers/main.py:109
#, python-format
msgid "Invalid signup token"
-msgstr ""
+msgstr "サインアップトークンは無効です。"
#. module: auth_signup
#: selection:res.users,state:0
@@ -194,7 +194,7 @@ msgstr "パスワードリセットのEメールを送信"
#. module: auth_signup
#: view:res.users:auth_signup.res_users_form_view
msgid "Send an Invitation Email"
-msgstr ""
+msgstr "招待メールを送る"
#. module: auth_signup
#: view:website:auth_signup.signup view:website:web.login
@@ -204,22 +204,22 @@ msgstr ""
#. module: auth_signup
#: field:res.partner,signup_expiration:0
msgid "Signup Expiration"
-msgstr ""
+msgstr "サインアップ期限"
#. module: auth_signup
#: field:res.partner,signup_token:0
msgid "Signup Token"
-msgstr ""
+msgstr "サインアップトークン"
#. module: auth_signup
#: field:res.partner,signup_type:0
msgid "Signup Token Type"
-msgstr ""
+msgstr "サインアップトークンタイプ"
#. module: auth_signup
#: field:res.partner,signup_valid:0
msgid "Signup Token is Valid"
-msgstr ""
+msgstr "サインアップトークンは無効です。"
#. module: auth_signup
#: field:res.partner,signup_url:0
@@ -234,7 +234,7 @@ msgstr "ステータス"
#. module: auth_signup
#: field:base.config.settings,auth_signup_template_user_id:0
msgid "Template user for new users created through signup"
-msgstr ""
+msgstr "サインアップで作成されるユーザのテンプレートユーザ"
#. module: auth_signup
#: help:base.config.settings,auth_signup_reset_password:0
diff --git a/addons/auth_signup/i18n/ro.po b/addons/auth_signup/i18n/ro.po
index 82ec9d3513565..0cacfdbaa691f 100644
--- a/addons/auth_signup/i18n/ro.po
+++ b/addons/auth_signup/i18n/ro.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-16 13:15+0000\n"
-"PO-Revision-Date: 2015-12-17 08:25+0000\n"
+"PO-Revision-Date: 2016-10-23 20:38+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Romanian (http://www.transifex.com/odoo/odoo-8/language/ro/)\n"
"MIME-Version: 1.0\n"
@@ -99,7 +99,7 @@ msgstr "Un e-mail invitație conținând următorul link-ul de înscriere a fost
#: code:addons/auth_signup/controllers/main.py:58
#, python-format
msgid "Another user is already registered using this email address."
-msgstr ""
+msgstr "Un alt utilizator este deja înregistrat cu acest email"
#. module: auth_signup
#: code:addons/auth_signup/controllers/main.py:130
@@ -127,7 +127,7 @@ msgstr "Confirmare parolă"
#: code:addons/auth_signup/controllers/main.py:61
#, python-format
msgid "Could not create a new account."
-msgstr ""
+msgstr "Nu s-a putut crea un cont nou"
#. module: auth_signup
#: code:addons/auth_signup/controllers/main.py:84
@@ -185,7 +185,7 @@ msgstr "Resetează parola"
#: code:addons/auth_signup/res_users.py:267
#, python-format
msgid "Reset password: invalid username or email"
-msgstr ""
+msgstr "Resetare parolă: nume invalid sau adresă de mail incorectă"
#. module: auth_signup
#: view:res.users:auth_signup.res_users_form_view
diff --git a/addons/auth_signup/i18n/zh_CN.po b/addons/auth_signup/i18n/zh_CN.po
index 9cf29b7ffb61c..85f5c94006700 100644
--- a/addons/auth_signup/i18n/zh_CN.po
+++ b/addons/auth_signup/i18n/zh_CN.po
@@ -5,14 +5,15 @@
# Translators:
# FIRST AUTHOR , 2014
# Jeffery Chenn , 2016
+# liAnGjiA , 2016
# mrshelly , 2015
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-16 13:15+0000\n"
-"PO-Revision-Date: 2016-04-15 12:00+0000\n"
-"Last-Translator: Jeffery Chenn \n"
+"PO-Revision-Date: 2016-09-08 15:56+0000\n"
+"Last-Translator: liAnGjiA \n"
"Language-Team: Chinese (China) (http://www.transifex.com/odoo/odoo-8/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -211,12 +212,12 @@ msgstr "注册过期"
#. module: auth_signup
#: field:res.partner,signup_token:0
msgid "Signup Token"
-msgstr "注册令牌( Token )"
+msgstr "注册令牌 Token"
#. module: auth_signup
#: field:res.partner,signup_type:0
msgid "Signup Token Type"
-msgstr "注册令牌(Token)类型"
+msgstr "注册令牌Token类型"
#. module: auth_signup
#: field:res.partner,signup_valid:0
diff --git a/addons/base_action_rule/i18n/hi.po b/addons/base_action_rule/i18n/hi.po
index 53ab2e70d213f..5f6a776f29762 100644
--- a/addons/base_action_rule/i18n/hi.po
+++ b/addons/base_action_rule/i18n/hi.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-02 11:00+0000\n"
+"PO-Revision-Date: 2016-09-01 20:43+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
"MIME-Version: 1.0\n"
@@ -98,12 +98,12 @@ msgstr ""
#: field:base.action.rule,create_uid:0
#: field:base.action.rule.lead.test,create_uid:0
msgid "Created by"
-msgstr ""
+msgstr "निर्माण कर्ता"
#. module: base_action_rule
#: field:base.action.rule.lead.test,create_date:0
msgid "Created on"
-msgstr ""
+msgstr "निर्माण तिथि"
#. module: base_action_rule
#: selection:base.action.rule,trg_date_range_type:0
@@ -169,7 +169,7 @@ msgstr ""
#. module: base_action_rule
#: field:base.action.rule,id:0 field:base.action.rule.lead.test,id:0
msgid "ID"
-msgstr ""
+msgstr "पहचान"
#. module: base_action_rule
#: help:base.action.rule,filter_id:0
@@ -217,13 +217,13 @@ msgstr ""
#: field:base.action.rule,write_uid:0
#: field:base.action.rule.lead.test,write_uid:0
msgid "Last Updated by"
-msgstr ""
+msgstr "अंतिम सुधारकर्ता"
#. module: base_action_rule
#: field:base.action.rule,write_date:0
#: field:base.action.rule.lead.test,write_date:0
msgid "Last Updated on"
-msgstr ""
+msgstr "अंतिम सुधार की तिथि"
#. module: base_action_rule
#: selection:base.action.rule,trg_date_range_type:0
diff --git a/addons/base_action_rule/i18n/hr.po b/addons/base_action_rule/i18n/hr.po
index d982b178cc2f1..0b7fe578ad48f 100644
--- a/addons/base_action_rule/i18n/hr.po
+++ b/addons/base_action_rule/i18n/hr.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-07-17 06:51+0000\n"
+"PO-Revision-Date: 2016-11-25 14:18+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Croatian (http://www.transifex.com/odoo/odoo-8/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -249,17 +249,17 @@ msgstr "Novi"
#. module: base_action_rule
#: selection:base.action.rule,kind:0
msgid "On Creation"
-msgstr ""
+msgstr "Pri kreiranju"
#. module: base_action_rule
#: selection:base.action.rule,kind:0
msgid "On Creation & Update"
-msgstr ""
+msgstr "Pri kreiranju ili ažuriranju"
#. module: base_action_rule
#: selection:base.action.rule,kind:0
msgid "On Update"
-msgstr ""
+msgstr "Prilikom ažuriranja"
#. module: base_action_rule
#: field:base.action.rule.lead.test,partner_id:0
@@ -337,7 +337,7 @@ msgstr "Datum okidača"
#. module: base_action_rule
#: field:base.action.rule,trg_date_calendar_id:0
msgid "Use Calendar"
-msgstr ""
+msgstr "Koristi kalendar"
#. module: base_action_rule
#: help:base.action.rule,trg_date_calendar_id:0
diff --git a/addons/base_action_rule/i18n/ja.po b/addons/base_action_rule/i18n/ja.po
index ef55f1270f53b..b130b3fa82baf 100644
--- a/addons/base_action_rule/i18n/ja.po
+++ b/addons/base_action_rule/i18n/ja.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-05-20 06:53+0000\n"
+"PO-Revision-Date: 2016-09-10 07:43+0000\n"
"Last-Translator: Yoshi Tashiro \n"
"Language-Team: Japanese (http://www.transifex.com/odoo/odoo-8/language/ja/)\n"
"MIME-Version: 1.0\n"
@@ -160,7 +160,7 @@ msgid ""
"Go to your \"Related Document Model\" page and set the filter parameters in "
"the \"Search\" view (Example of filter based on Leads/Opportunities: "
"Creation Date \"is equal to\" 01/01/2012)"
-msgstr ""
+msgstr "「関連ドキュメントモデル」ページにて、検索ビューにフィルタパラメタを設定します。(リード/案件のフィルタ例: 「作成日」「が次と一致する」「2012年1月1日」)"
#. module: base_action_rule
#: selection:base.action.rule,trg_date_range_type:0
@@ -202,7 +202,7 @@ 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 ""
+msgstr "同じ検索ビューにて、「現在のフィルタを保存」メニューを選択します。名称を設定し、「全ユーザと共有」オプションを選択してください。"
#. module: base_action_rule
#: field:base.action.rule.lead.test,date_action_last:0
@@ -307,12 +307,12 @@ msgstr "サーバーアクション"
#. module: base_action_rule
#: view:base.action.rule:base_action_rule.view_base_action_rule_form
msgid "Server actions to run"
-msgstr ""
+msgstr "実行するサーバアクション"
#. module: base_action_rule
#: field:base.action.rule,act_user_id:0
msgid "Set Responsible"
-msgstr ""
+msgstr "担当者を設定"
#. module: base_action_rule
#: field:base.action.rule.lead.test,state:0
@@ -356,7 +356,7 @@ msgstr ""
#. module: base_action_rule
#: field:base.action.rule,kind:0
msgid "When to Run"
-msgstr ""
+msgstr "実行タイミング"
#. module: base_action_rule
#: help:base.action.rule,active:0
diff --git a/addons/base_action_rule/i18n/uk.po b/addons/base_action_rule/i18n/uk.po
index 2f03d72516b18..7ec67e7ced936 100644
--- a/addons/base_action_rule/i18n/uk.po
+++ b/addons/base_action_rule/i18n/uk.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-04-28 13:46+0000\n"
+"PO-Revision-Date: 2016-08-24 10:57+0000\n"
"Last-Translator: Bohdan Lisnenko\n"
"Language-Team: Ukrainian (http://www.transifex.com/odoo/odoo-8/language/uk/)\n"
"MIME-Version: 1.0\n"
@@ -36,7 +36,7 @@ msgstr ""
#: view:base.action.rule:base_action_rule.view_base_action_rule_form
#: view:base.action.rule:base_action_rule.view_base_action_rule_tree
msgid "Action Rule"
-msgstr ""
+msgstr "Правило дій"
#. module: base_action_rule
#: model:ir.model,name:base_action_rule.model_base_action_rule
diff --git a/addons/base_gengo/i18n/hi.po b/addons/base_gengo/i18n/hi.po
new file mode 100644
index 0000000000000..a9b769ecb2e37
--- /dev/null
+++ b/addons/base_gengo/i18n/hi.po
@@ -0,0 +1,295 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * base_gengo
+#
+# Translators:
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo 8.0\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2015-01-21 14:07+0000\n"
+"PO-Revision-Date: 2016-09-01 20:43+0000\n"
+"Last-Translator: Martin Trigaux\n"
+"Language-Team: Hindi (http://www.transifex.com/odoo/odoo-8/language/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: base_gengo
+#: view:res.company:base_gengo.view_company_inherit_base_gengo_form
+msgid "Add Gengo login Private Key..."
+msgstr ""
+
+#. module: base_gengo
+#: view:res.company:base_gengo.view_company_inherit_base_gengo_form
+msgid "Add Gengo login Public Key..."
+msgstr ""
+
+#. module: base_gengo
+#: view:res.company:base_gengo.view_company_inherit_base_gengo_form
+msgid "Add your comments here for translator...."
+msgstr ""
+
+#. module: base_gengo
+#: field:res.company,gengo_auto_approve:0
+msgid "Auto Approve Translation ?"
+msgstr ""
+
+#. module: base_gengo
+#: selection:base.gengo.translations,sync_type:0
+msgid "Both"
+msgstr ""
+
+#. module: base_gengo
+#: view:base.gengo.translations:base_gengo.base_gengo_translation_wizard_from
+msgid "Cancel"
+msgstr "रद्द"
+
+#. module: base_gengo
+#: help:res.company,gengo_sandbox:0
+msgid ""
+"Check this box if you're using the sandbox mode of Gengo, mainly used for "
+"testing purpose."
+msgstr ""
+
+#. module: base_gengo
+#: field:res.company,gengo_comment:0
+msgid "Comments"
+msgstr "टिप्पणियाँ"
+
+#. module: base_gengo
+#: field:ir.translation,gengo_comment:0
+msgid "Comments & Activity Linked to Gengo"
+msgstr ""
+
+#. module: base_gengo
+#: view:res.company:base_gengo.view_company_inherit_base_gengo_form
+msgid "Comments for Translator"
+msgstr ""
+
+#. module: base_gengo
+#: model:ir.model,name:base_gengo.model_res_company
+msgid "Companies"
+msgstr ""
+
+#. module: base_gengo
+#: field:base.gengo.translations,create_uid:0
+msgid "Created by"
+msgstr "निर्माण कर्ता"
+
+#. module: base_gengo
+#: field:base.gengo.translations,create_date:0
+msgid "Created on"
+msgstr "निर्माण तिथि"
+
+#. module: base_gengo
+#: code:addons/base_gengo/ir_translation.py:76
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:102
+#, python-format
+msgid "Gengo Authentication Error"
+msgstr ""
+
+#. module: base_gengo
+#: view:ir.translation:base_gengo.view_ir_translation_inherit_base_gengo_form
+msgid "Gengo Comments & Activity..."
+msgstr ""
+
+#. module: base_gengo
+#: field:ir.translation,order_id:0
+msgid "Gengo Order ID"
+msgstr ""
+
+#. module: base_gengo
+#: view:res.company:base_gengo.view_company_inherit_base_gengo_form
+msgid "Gengo Parameters"
+msgstr ""
+
+#. module: base_gengo
+#: field:res.company,gengo_private_key:0
+msgid "Gengo Private Key"
+msgstr ""
+
+#. module: base_gengo
+#: field:res.company,gengo_public_key:0
+msgid "Gengo Public Key"
+msgstr ""
+
+#. module: base_gengo
+#: view:base.gengo.translations:base_gengo.base_gengo_translation_wizard_from
+msgid "Gengo Request Form"
+msgstr ""
+
+#. module: base_gengo
+#: view:ir.translation:base_gengo.view_ir_translation_inherit_base_gengo_form
+msgid "Gengo Translation Service"
+msgstr ""
+
+#. module: base_gengo
+#: field:ir.translation,gengo_translation:0
+msgid "Gengo Translation Service Level"
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:80
+#, python-format
+msgid ""
+"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo "
+"authentication parameters under `Settings > Companies > Gengo Parameters`."
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:91
+#, python-format
+msgid ""
+"Gengo connection failed with this message:\n"
+"``%s``"
+msgstr ""
+
+#. module: base_gengo
+#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations
+#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations
+msgid "Gengo: Manual Request of Translation"
+msgstr ""
+
+#. module: base_gengo
+#: field:base.gengo.translations,id:0
+msgid "ID"
+msgstr "पहचान"
+
+#. module: base_gengo
+#: help:res.company,gengo_auto_approve:0
+msgid "Jobs are Automatically Approved by Gengo."
+msgstr ""
+
+#. module: base_gengo
+#: field:base.gengo.translations,lang_id:0
+msgid "Language"
+msgstr ""
+
+#. module: base_gengo
+#: field:base.gengo.translations,write_uid:0
+msgid "Last Updated by"
+msgstr "अंतिम सुधारकर्ता"
+
+#. module: base_gengo
+#: field:base.gengo.translations,write_date:0
+msgid "Last Updated on"
+msgstr "अंतिम सुधार की तिथि"
+
+#. module: base_gengo
+#: field:base.gengo.translations,sync_limit:0
+msgid "No. of terms to sync"
+msgstr ""
+
+#. module: base_gengo
+#: view:ir.translation:base_gengo.view_ir_translation_inherit_base_gengo_form
+msgid ""
+"Note: If the translation state is 'In Progress', it means that the "
+"translation has to be approved to be uploaded in this system. You are "
+"supposed to do that directly by using your Gengo Account"
+msgstr ""
+
+#. module: base_gengo
+#: view:res.company:base_gengo.view_company_inherit_base_gengo_form
+msgid "Private Key"
+msgstr ""
+
+#. module: base_gengo
+#: selection:ir.translation,gengo_translation:0
+msgid "Pro"
+msgstr ""
+
+#. module: base_gengo
+#: view:res.company:base_gengo.view_company_inherit_base_gengo_form
+msgid "Public Key"
+msgstr ""
+
+#. module: base_gengo
+#: selection:base.gengo.translations,sync_type:0
+msgid "Receive Translation"
+msgstr ""
+
+#. module: base_gengo
+#: field:res.company,gengo_sandbox:0
+msgid "Sandbox Mode"
+msgstr ""
+
+#. module: base_gengo
+#: view:base.gengo.translations:base_gengo.base_gengo_translation_wizard_from
+msgid "Send"
+msgstr ""
+
+#. module: base_gengo
+#: selection:base.gengo.translations,sync_type:0
+msgid "Send New Terms"
+msgstr ""
+
+#. module: base_gengo
+#: selection:ir.translation,gengo_translation:0
+msgid "Standard"
+msgstr ""
+
+#. module: base_gengo
+#: field:base.gengo.translations,sync_type:0
+msgid "Sync Type"
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:112
+#, python-format
+msgid "Sync limit should between 1 to 200 for Gengo translation services."
+msgstr ""
+
+#. module: base_gengo
+#: help:res.company,gengo_comment:0
+msgid ""
+"This comment will be automatically be enclosed in each an every request sent"
+" to Gengo"
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:107
+#, python-format
+msgid "This language is not supported by the Gengo translation services."
+msgstr ""
+
+#. module: base_gengo
+#: view:ir.translation:base_gengo.view_translation_search
+msgid "To Approve In Gengo"
+msgstr ""
+
+#. module: base_gengo
+#: selection:ir.translation,gengo_translation:0
+msgid "Translation By Machine"
+msgstr ""
+
+#. module: base_gengo
+#: view:ir.translation:base_gengo.view_translation_search
+msgid "Translations"
+msgstr ""
+
+#. module: base_gengo
+#: selection:ir.translation,gengo_translation:0
+msgid "Ultra"
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:107
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:112
+#, python-format
+msgid "Warning"
+msgstr ""
+
+#. module: base_gengo
+#: help:ir.translation,gengo_translation:0
+msgid ""
+"You can select here the service level you want for an automatic translation "
+"using Gengo."
+msgstr ""
+
+#. module: base_gengo
+#: view:base.gengo.translations:base_gengo.base_gengo_translation_wizard_from
+msgid "or"
+msgstr ""
diff --git a/addons/base_gengo/i18n/ja.po b/addons/base_gengo/i18n/ja.po
index fa56156851077..585e9cb716ea1 100644
--- a/addons/base_gengo/i18n/ja.po
+++ b/addons/base_gengo/i18n/ja.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2015-08-15 09:35+0000\n"
+"PO-Revision-Date: 2016-10-05 12:24+0000\n"
"Last-Translator: Yoshi Tashiro \n"
"Language-Team: Japanese (http://www.transifex.com/odoo/odoo-8/language/ja/)\n"
"MIME-Version: 1.0\n"
@@ -20,7 +20,7 @@ msgstr ""
#. module: base_gengo
#: view:res.company:base_gengo.view_company_inherit_base_gengo_form
msgid "Add Gengo login Private Key..."
-msgstr ""
+msgstr "Gengoログインプライベート鍵を追加..."
#. module: base_gengo
#: view:res.company:base_gengo.view_company_inherit_base_gengo_form
diff --git a/addons/base_gengo/i18n/pl.po b/addons/base_gengo/i18n/pl.po
index aadeaf05f30ff..efd4e4d0a4d60 100644
--- a/addons/base_gengo/i18n/pl.po
+++ b/addons/base_gengo/i18n/pl.po
@@ -3,14 +3,15 @@
# * base_gengo
#
# Translators:
+# zbik2607 , 2016
# FIRST AUTHOR , 2014
msgid ""
msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-06-27 12:41+0000\n"
-"Last-Translator: Martin Trigaux\n"
+"PO-Revision-Date: 2016-09-22 20:30+0000\n"
+"Last-Translator: zbik2607 \n"
"Language-Team: Polish (http://www.transifex.com/odoo/odoo-8/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -215,7 +216,7 @@ msgstr "Pobierz tłumaczenie"
#. module: base_gengo
#: field:res.company,gengo_sandbox:0
msgid "Sandbox Mode"
-msgstr "Sandbox Mode"
+msgstr "Tryb Sandbox"
#. module: base_gengo
#: view:base.gengo.translations:base_gengo.base_gengo_translation_wizard_from
diff --git a/addons/base_gengo/i18n/ru.po b/addons/base_gengo/i18n/ru.po
index 0e5a3d9db58c6..671558825b627 100644
--- a/addons/base_gengo/i18n/ru.po
+++ b/addons/base_gengo/i18n/ru.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo 8.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-21 14:07+0000\n"
-"PO-Revision-Date: 2016-05-12 07:49+0000\n"
+"PO-Revision-Date: 2016-10-16 16:57+0000\n"
"Last-Translator: Martin Trigaux\n"
"Language-Team: Russian (http://www.transifex.com/odoo/odoo-8/language/ru/)\n"
"MIME-Version: 1.0\n"
@@ -26,7 +26,7 @@ msgstr "Добавить персональный ключ логина Gengo...
#. module: base_gengo
#: view:res.company:base_gengo.view_company_inherit_base_gengo_form
msgid "Add Gengo login Public Key..."
-msgstr ""
+msgstr "Добавить персональный ключ логина Gengo..."
#. module: base_gengo
#: view:res.company:base_gengo.view_company_inherit_base_gengo_form
@@ -63,7 +63,7 @@ msgstr "Комментарии"
#. module: base_gengo
#: field:ir.translation,gengo_comment:0
msgid "Comments & Activity Linked to Gengo"
-msgstr ""
+msgstr "Комментарии и мероприятия привязаны к Gengo"
#. module: base_gengo
#: view:res.company:base_gengo.view_company_inherit_base_gengo_form
@@ -259,7 +259,7 @@ msgstr "Этот язык не поддерживается службой пе
#. module: base_gengo
#: view:ir.translation:base_gengo.view_translation_search
msgid "To Approve In Gengo"
-msgstr ""
+msgstr "Подтвердить в Gengo"
#. module: base_gengo
#: selection:ir.translation,gengo_translation:0
@@ -274,7 +274,7 @@ msgstr "Переводы"
#. module: base_gengo
#: selection:ir.translation,gengo_translation:0
msgid "Ultra"
-msgstr ""
+msgstr "Ультра"
#. module: base_gengo
#: code:addons/base_gengo/wizard/base_gengo_translations.py:107
diff --git a/addons/base_gengo/i18n/zh_CN.po b/addons/base_gengo/i18n/zh_CN.po
index c9c01cc8cf530..9621cfd714352 100644
--- a/addons/base_gengo/i18n/zh_CN.po
+++ b/addons/base_gengo/i18n/zh_CN.po
@@ -4,14 +4,16 @@
#
# Translators:
# FIRST AUTHOR , 2014
-# leangjia , 2015
+# liAnGjiA