mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
Merge pull request #607 from grindtildeath/11.0-mig-account_credit_control_dunning_fees
[11.0][MIG] account credit control dunning fees
This commit is contained in:
77
account_credit_control_dunning_fees/README.rst
Normal file
77
account_credit_control_dunning_fees/README.rst
Normal file
@@ -0,0 +1,77 @@
|
||||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||
:target: http://www.gnu.org/licenses/agpl
|
||||
:alt: License: AGPL-3
|
||||
|
||||
===========================
|
||||
Credit control dunning fees
|
||||
===========================
|
||||
|
||||
This module extends the functionality of account_credit_control to add
|
||||
the notion of dunning fees on credit control lines.
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
You can specifiy a fixed fees amount, a product and a currency
|
||||
on the credit control level form.
|
||||
|
||||
The amount will be used as fees values the currency will determine
|
||||
the currency of the fee. If the credit control line has not the
|
||||
same currency as the fees currency, fees will be converted to
|
||||
the credit control line currency.
|
||||
|
||||
The product is used to compute taxes in reconciliation process.
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
Fees are automatically computed on credit run and saved
|
||||
on the generated credit lines.
|
||||
|
||||
Fees can be manually edited as long credit line is draft
|
||||
|
||||
Credit control Summary report includes a new fees column:
|
||||
Support of fees price list
|
||||
|
||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||
:alt: Try me on Runbot
|
||||
:target: https://runbot.odoo-community.org/runbot/92/11.0
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues
|
||||
<https://github.com/OCA/account-financial-tools/issues>`_. In case of trouble, please
|
||||
check there if your issue has already been reported. If you spotted it first,
|
||||
help us smash it by providing detailed and welcomed feedback.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Images
|
||||
------
|
||||
|
||||
* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
* Nicolas Bessi (Camptocamp)
|
||||
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
||||
* Adrien Peiffer (acsone)
|
||||
* Akim Juillerat <akim.juillerat@camptocamp.com>
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
To contribute to this module, please visit https://odoo-community.org.
|
||||
2
account_credit_control_dunning_fees/__init__.py
Normal file
2
account_credit_control_dunning_fees/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
from . import model
|
||||
from . import wizard
|
||||
20
account_credit_control_dunning_fees/__manifest__.py
Normal file
20
account_credit_control_dunning_fees/__manifest__.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# Copyright 2014-2017 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
{'name': 'Credit control dunning fees',
|
||||
'version': '11.0.1.0.0',
|
||||
'author': "Camptocamp, Odoo Community Association (OCA)",
|
||||
'maintainer': 'Camptocamp',
|
||||
'category': 'Accounting',
|
||||
'complexity': 'normal',
|
||||
'depends': ['account_credit_control'],
|
||||
'website': 'https://github.com/OCA/account-financial-tools',
|
||||
'data': ['view/policy_view.xml',
|
||||
'view/line_view.xml',
|
||||
'report/report_credit_control_summary.xml',
|
||||
'security/ir.model.access.csv',
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': False,
|
||||
'license': 'AGPL-3',
|
||||
'application': False
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2014-12-22 11:00+0000\n"
|
||||
"PO-Revision-Date: 2014-12-22 11:00+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
106
account_credit_control_dunning_fees/i18n/am.po
Normal file
106
account_credit_control_dunning_fees/i18n/am.po
Normal file
@@ -0,0 +1,106 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-12 10:24+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:57+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/ar.po
Normal file
121
account_credit_control_dunning_fees/i18n/ar.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:48+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "النوع"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/bg.po
Normal file
121
account_credit_control_dunning_fees/i18n/bg.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-11-25 14:57+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Име за Показване"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно обновено от"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Вид"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/bs.po
Normal file
121
account_credit_control_dunning_fees/i18n/bs.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/bs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Prikaži naziv"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Vrsta"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
141
account_credit_control_dunning_fees/i18n/ca.po
Normal file
141
account_credit_control_dunning_fees/i18n/ca.po
Normal file
@@ -0,0 +1,141 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015
|
||||
# Antonio Trueba, 2016
|
||||
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
|
||||
# Bruno JOLIVEAU, 2015
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2015
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2015
|
||||
# danimaribeiro <danimaribeiro@gmail.com>, 2016
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2013
|
||||
# Hotellook, 2014
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# John Toro <johntoro@gmail.com>, 2015
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
# Paolo Valier, 2016
|
||||
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
|
||||
# SaFi J. <safi2266@gmail.com>, 2015
|
||||
# Thomas A. Jaeger, 2015
|
||||
# yterrettaz, 2015
|
||||
# yterrettaz, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-10 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-04-04 15:55+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Veure el nom"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr "Fix "
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Darrera modificació el"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Darrera Actualització per"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Darrera Actualització el"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipus"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/cs.po
Normal file
121
account_credit_control_dunning_fees/i18n/cs.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:48+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořil(a)"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Druh"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/da.po
Normal file
121
account_credit_control_dunning_fees/i18n/da.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:50+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Vist navn"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "Id"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
132
account_credit_control_dunning_fees/i18n/de.po
Normal file
132
account_credit_control_dunning_fees/i18n/de.po
Normal file
@@ -0,0 +1,132 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
# Antonio Trueba, 2016
|
||||
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
|
||||
# danimaribeiro <danimaribeiro@gmail.com>, 2016
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010,2012,2014
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# Paolo Valier, 2016
|
||||
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015-2017
|
||||
# SaFi J. <safi2266@gmail.com>, 2015
|
||||
# Thomas A. Jaeger, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-02-03 23:25+0000\n"
|
||||
"PO-Revision-Date: 2017-02-09 15:58+0000\n"
|
||||
"Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\n"
|
||||
"Language-Team: German (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr "Ein Mahnposten"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr "Eine Mahnregelstufe"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr "Fälliger Saldo inkl. Gebühren"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr "Mahnpostenerzeuger"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr "Währung der Mahngebühren. Wenn leer, wird die Hauswährung angenommen."
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr "Gebühren"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr "Mahn-Festbetrag"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr "Gebührprodukt"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr "Gebührwährung"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr "Fest"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zuletzt geändert am"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt geändert von"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt geändert am"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr "Post und Berichte"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Art"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr "Mahn-Kommunikation"
|
||||
106
account_credit_control_dunning_fees/i18n/el_GR.po
Normal file
106
account_credit_control_dunning_fees/i18n/el_GR.po
Normal file
@@ -0,0 +1,106 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-05 01:25+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 16:40+0000\n"
|
||||
"Last-Translator: Goutoudis Kostas <goutoudis@gmail.com>\n"
|
||||
"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/el_GR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el_GR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Δημιουργήθηκε από "
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Τελευταία ενημέρωση από"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία ενημέρωση στις"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/en_GB.po
Normal file
121
account_credit_control_dunning_fees/i18n/en_GB.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:48+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
133
account_credit_control_dunning_fees/i18n/es.po
Normal file
133
account_credit_control_dunning_fees/i18n/es.po
Normal file
@@ -0,0 +1,133 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2013,2015
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2013
|
||||
# Antonio Trueba, 2016
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2014
|
||||
# Gustavo Lepri <gustavolepri@gmail.com>, 2015
|
||||
# Hotellook, 2014
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
# Paolo Valier, 2016
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
|
||||
# Thomas A. Jaeger, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-25 21:28+0000\n"
|
||||
"PO-Revision-Date: 2016-12-16 00:24+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr "Fijo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/es_AR.po
Normal file
121
account_credit_control_dunning_fees/i18n/es_AR.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:49+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_AR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_AR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nombre"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/es_CL.po
Normal file
121
account_credit_control_dunning_fees/i18n/es_CL.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-23 23:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:24+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/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_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/es_CO.po
Normal file
121
account_credit_control_dunning_fees/i18n/es_CO.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:49+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/es_CR.po
Normal file
121
account_credit_control_dunning_fees/i18n/es_CR.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-23 23:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:23+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/es_DO.po
Normal file
121
account_credit_control_dunning_fees/i18n/es_DO.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-23 23:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:25+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/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_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/es_EC.po
Normal file
121
account_credit_control_dunning_fees/i18n/es_EC.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:48+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
154
account_credit_control_dunning_fees/i18n/es_ES.po
Normal file
154
account_credit_control_dunning_fees/i18n/es_ES.po
Normal file
@@ -0,0 +1,154 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015-2016
|
||||
# Antonio Trueba, 2016
|
||||
# bossnm11 <bossnm11@gmail.com>, 2014
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2015
|
||||
# Chanseok Kang <kcsgoodboy@naver.com>, 2014
|
||||
# Chul Park <parkchul@nate.com>, 2015
|
||||
# danimaribeiro <danimaribeiro@gmail.com>, 2016
|
||||
# David10000 <gameness@naver.com>, 2014
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2013
|
||||
# Gil <gedwarp@gmail.com>, 2014
|
||||
# Guewen Baconnier <guewen.baconnier@camptocamp.com>, 2015
|
||||
# kmooc <shevious@gmail.com>, 2015
|
||||
# Hongseob Lee <shevreg@yahoo.com>, 2015
|
||||
# Hotellook, 2014
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# jeon <bluerespect@nate.com>, 2014
|
||||
# JiyeonLee <leejiyeon00@gmail.com>, 2014
|
||||
# Jong-Dae Park <jdpark7@gmail.com>, 2013
|
||||
# Kevin Min <gr326887@graded.br>, 2015
|
||||
# KimKyudong <choemh@nate.com>, 2014
|
||||
# mariana1201 <gogo3135@naver.com>, 2014
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
# Nicole <dlruddk1112@gmail.com>, 2014
|
||||
# Paolo Valier, 2016
|
||||
# Pope, 2014
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
|
||||
# Sarina Canelake <sarina@edx.org>, 2014
|
||||
# Seok Jun Yoon <fake2real@dctribe.com>, 2015
|
||||
# shin2012 <shin2013@gmail.com>, 2014
|
||||
# Sofce Dimitrijeva <sofce@eskon.com.mk>, 2013
|
||||
# Sujin Lee <sujinlee.me@gmail.com>, 2014
|
||||
# Sunah Lim <whitetree70@snu.ac.kr>, 2013
|
||||
# Young C. Kim, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-02-10 23:22+0000\n"
|
||||
"PO-Revision-Date: 2017-02-16 15:55+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/es_MX.po
Normal file
121
account_credit_control_dunning_fees/i18n/es_MX.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre desplegado"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificacion realizada"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizacion por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización realizada"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/es_PE.po
Normal file
121
account_credit_control_dunning_fees/i18n/es_PE.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:50+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/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_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/es_PY.po
Normal file
121
account_credit_control_dunning_fees/i18n/es_PY.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/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: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/es_VE.po
Normal file
121
account_credit_control_dunning_fees/i18n/es_VE.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:49+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/et.po
Normal file
121
account_credit_control_dunning_fees/i18n/et.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:48+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Loodud"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tüüp"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/eu.po
Normal file
121
account_credit_control_dunning_fees/i18n/eu.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:52+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Mota"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/fa.po
Normal file
121
account_credit_control_dunning_fees/i18n/fa.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:49+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "ایجاد شده در"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "تاریخ آخرین بهروزرسانی"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین به روز رسانی توسط"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین به روز رسانی در"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "نوع"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
146
account_credit_control_dunning_fees/i18n/fi.po
Normal file
146
account_credit_control_dunning_fees/i18n/fi.po
Normal file
@@ -0,0 +1,146 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
# bossnm11 <bossnm11@gmail.com>, 2014
|
||||
# Chanseok Kang <kcsgoodboy@naver.com>, 2014
|
||||
# Chul Park <parkchul@nate.com>, 2015
|
||||
# David10000 <gameness@naver.com>, 2014
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012
|
||||
# Gil <gedwarp@gmail.com>, 2014
|
||||
# kmooc <shevious@gmail.com>, 2015
|
||||
# Hongseob Lee <shevreg@yahoo.com>, 2015
|
||||
# jeon <bluerespect@nate.com>, 2014
|
||||
# JiyeonLee <leejiyeon00@gmail.com>, 2014
|
||||
# Jong-Dae Park <jdpark7@gmail.com>, 2013
|
||||
# Gu Hong Min <placidmoon1@gmail.com>, 2015
|
||||
# KimKyudong <choemh@nate.com>, 2014
|
||||
# kmooc <shevious@gmail.com>, 2015
|
||||
# mariana1201 <gogo3135@naver.com>, 2014
|
||||
# Nicole <dlruddk1112@gmail.com>, 2014
|
||||
# Pope, 2014
|
||||
# SaFi J. <safi2266@gmail.com>, 2015
|
||||
# Sarina Canelake <sarina@edx.org>, 2014
|
||||
# Seok Jun Yoon <fake2real@dctribe.com>, 2015
|
||||
# shin2012 <shin2013@gmail.com>, 2014
|
||||
# Sujin Lee <sujinlee.me@gmail.com>, 2014
|
||||
# Sunah Lim <whitetree70@snu.ac.kr>, 2013
|
||||
# Young C. Kim, 2015
|
||||
# Young C. Kim, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-03-10 23:23+0000\n"
|
||||
"PO-Revision-Date: 2017-05-11 14:14+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tyyppi"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
138
account_credit_control_dunning_fees/i18n/fr.po
Normal file
138
account_credit_control_dunning_fees/i18n/fr.po
Normal file
@@ -0,0 +1,138 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
# Accounts-Payable - Alkemics, 2015
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015
|
||||
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
|
||||
# Bruno JOLIVEAU, 2015
|
||||
# Chen-Do LU <clu@alkemics.com>, 2015
|
||||
# Bole <bole@dajmi5.com>, 2015
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2014
|
||||
# François Breysse <fb@alkemics.com>, 2015
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# llum.birque@gmail.com <llum.birque@gmail.com>, 2015
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
# Paolo Valier, 2016
|
||||
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2016
|
||||
# SaFi J. <safi2266@gmail.com>, 2015
|
||||
# Thomas A. Jaeger, 2015
|
||||
# yterrettaz, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-09-14 00:45+0000\n"
|
||||
"PO-Revision-Date: 2016-09-16 21:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr "Ligne de relance"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr "Une politique de relance"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Créer par"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Créer le"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr "Générateur de relance"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nom à afficher"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr "Frais de relance"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr "Montant des frais"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr "Article lié"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr "Devises"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr "Fixe"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Mis à jour par"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Mis à jour le"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr "Lettres et e-mails"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr "Lettre de relance"
|
||||
121
account_credit_control_dunning_fees/i18n/fr_CA.po
Normal file
121
account_credit_control_dunning_fees/i18n/fr_CA.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-23 23:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:25+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/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: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/fr_CH.po
Normal file
121
account_credit_control_dunning_fees/i18n/fr_CH.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-25 21:28+0000\n"
|
||||
"PO-Revision-Date: 2016-12-01 10:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr_CH/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CH\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Modifié par"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifié le"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
134
account_credit_control_dunning_fees/i18n/gl.po
Normal file
134
account_credit_control_dunning_fees/i18n/gl.po
Normal file
@@ -0,0 +1,134 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015-2016
|
||||
# Antonio Trueba, 2016
|
||||
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
|
||||
# Bole <bole@dajmi5.com>, 2015
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2014
|
||||
# Gustavo Lepri <gustavolepri@gmail.com>, 2015
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# John Toro <johntoro@gmail.com>, 2015
|
||||
# llum.birque@gmail.com <llum.birque@gmail.com>, 2015
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
# Paolo Valier, 2016
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2016
|
||||
# Thomas A. Jaeger, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-09-14 00:45+0000\n"
|
||||
"PO-Revision-Date: 2016-09-09 12:25+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "ültima actualización por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
106
account_credit_control_dunning_fees/i18n/gl_ES.po
Normal file
106
account_credit_control_dunning_fees/i18n/gl_ES.po
Normal file
@@ -0,0 +1,106 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:25+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:57+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gl_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/he.po
Normal file
121
account_credit_control_dunning_fees/i18n/he.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/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_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על ידי"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "השם המוצג"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "תאריך שינוי אחרון"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על ידי"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "עודכן לאחרונה על"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "סוג"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
133
account_credit_control_dunning_fees/i18n/hr.po
Normal file
133
account_credit_control_dunning_fees/i18n/hr.po
Normal file
@@ -0,0 +1,133 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2016
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2016
|
||||
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
|
||||
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# Paolo Valier, 2016
|
||||
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2016
|
||||
# SaFi J. <safi2266@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-11-25 14:56+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Prikaži ime"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja izmjena dana"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano dana"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/hr_HR.po
Normal file
121
account_credit_control_dunning_fees/i18n/hr_HR.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-09-24 00:47+0000\n"
|
||||
"PO-Revision-Date: 2016-10-05 06:29+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr_HR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr_HR\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje modificirano"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/hu.po
Normal file
121
account_credit_control_dunning_fees/i18n/hu.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-25 21:28+0000\n"
|
||||
"PO-Revision-Date: 2016-12-22 14:06+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Készítette"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozás dátuma"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Név megjelenítése"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Utolsó frissítés dátuma"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Utoljára frissítve, által"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Utoljára frissítve "
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Típus"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/id.po
Normal file
121
account_credit_control_dunning_fees/i18n/id.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-23 23:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Dimodifikasi pada"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Diperbaharui oleh"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Diperbaharui pada"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Jenis"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
135
account_credit_control_dunning_fees/i18n/it.po
Normal file
135
account_credit_control_dunning_fees/i18n/it.po
Normal file
@@ -0,0 +1,135 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2016
|
||||
# Antonio Trueba, 2016
|
||||
# Bole <bole@dajmi5.com>, 2015
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2016
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2016
|
||||
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
|
||||
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
|
||||
# Bole <bole@dajmi5.com>, 2015
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011-2012,2014
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# Paolo Valier, 2016
|
||||
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2016
|
||||
# SaFi J. <safi2266@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-09-14 00:45+0000\n"
|
||||
"PO-Revision-Date: 2016-09-09 12:24+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr "Riga controllo di credito"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr "Livello del controllo credito"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creato il"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nome da visualizzare"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr "Mail e report"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/ja.po
Normal file
121
account_credit_control_dunning_fees/i18n/ja.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Japanese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "タイプ"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/ko.po
Normal file
121
account_credit_control_dunning_fees/i18n/ko.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Korean (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "작성일"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "표시 이름"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 날짜"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "유형"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/lt.po
Normal file
121
account_credit_control_dunning_fees/i18n/lt.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Vaizduojamas pavadinimas"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipas"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/lt_LT.po
Normal file
121
account_credit_control_dunning_fees/i18n/lt_LT.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-23 23:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lt_LT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt_LT\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/lv.po
Normal file
121
account_credit_control_dunning_fees/i18n/lv.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:48+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Latvian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējo reizi atjaunoja"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējās izmaiņas"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tips"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/mk.po
Normal file
121
account_credit_control_dunning_fees/i18n/mk.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:50+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Тип"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/mn.po
Normal file
121
account_credit_control_dunning_fees/i18n/mn.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:52+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэгч"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэцийн Нэр"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлийн засвар хийсэн"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Төрөл"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/nb.po
Normal file
121
account_credit_control_dunning_fees/i18n/nb.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:52+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet den"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Visnings navn"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist oppdatert "
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/nb_NO.po
Normal file
121
account_credit_control_dunning_fees/i18n/nb_NO.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-23 23:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:26+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nb_NO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb_NO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Laget av"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Laget den"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret den"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert den"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/nl.po
Normal file
121
account_credit_control_dunning_fees/i18n/nl.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 12:24+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Te tonen naam"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/nl_BE.po
Normal file
121
account_credit_control_dunning_fees/i18n/nl_BE.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl_BE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl_BE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Gemaakt door"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Gemaakt op"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst Aangepast op"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/pl.po
Normal file
121
account_credit_control_dunning_fees/i18n/pl.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Utworzone przez"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Utworzono"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Wyświetlana nazwa "
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ostatnio modyfikowano"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio modyfikowane przez"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ostatnia zmiana"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Typ"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
135
account_credit_control_dunning_fees/i18n/pt.po
Normal file
135
account_credit_control_dunning_fees/i18n/pt.po
Normal file
@@ -0,0 +1,135 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2015
|
||||
# Alejandro Santana <alejandrosantana@anubia.es>, 2015
|
||||
# Antonio Trueba, 2016
|
||||
# Bruno JOLIVEAU, 2015
|
||||
# danimaribeiro <danimaribeiro@gmail.com>, 2016
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010-2013
|
||||
# Hotellook, 2014
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2016
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
# Paolo Valier, 2016
|
||||
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
|
||||
# yterrettaz, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-11-25 14:58+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificado a última vez por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/pt_BR.po
Normal file
121
account_credit_control_dunning_fees/i18n/pt_BR.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-09-24 00:47+0000\n"
|
||||
"PO-Revision-Date: 2016-10-04 09:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nome para Mostrar"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "Identificação"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
134
account_credit_control_dunning_fees/i18n/pt_PT.po
Normal file
134
account_credit_control_dunning_fees/i18n/pt_PT.po
Normal file
@@ -0,0 +1,134 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altınışık <aaltinisik@altinkaya.com.tr>, 2016
|
||||
# Antonio Trueba, 2016
|
||||
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
|
||||
# danimaribeiro <danimaribeiro@gmail.com>, 2016
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2013
|
||||
# Hotellook, 2014
|
||||
# Isabelle RICHARD <isabellerichard89@gmail.com>, 2015
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# John Toro <johntoro@gmail.com>, 2015
|
||||
# LS Development <ls.development.nc@gmail.com>, 2016
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015
|
||||
# SaFi J. <safi2266@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-05-21 00:52+0000\n"
|
||||
"PO-Revision-Date: 2016-05-22 18:16+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_PT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_PT\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a exibir"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificado pela última vez em"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/ro.po
Normal file
121
account_credit_control_dunning_fees/i18n/ro.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-23 23:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:24+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Romanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creat la"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nume Afişat"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima actualizare în"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare la"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/ru.po
Normal file
121
account_credit_control_dunning_fees/i18n/ru.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-23 23:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Создано"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Создан"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/sk.po
Normal file
121
account_credit_control_dunning_fees/i18n/sk.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 16:25+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Slovak (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Zobraziť meno"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná modifikácia"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravil"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravené"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Typ"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
107
account_credit_control_dunning_fees/i18n/sl.po
Normal file
107
account_credit_control_dunning_fees/i18n/sl.po
Normal file
@@ -0,0 +1,107 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:25+0000\n"
|
||||
"PO-Revision-Date: 2015-06-08 04:48+0000\n"
|
||||
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr "Postavka kreditnega nadzora"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr "Nivo pravilnika kreditnega nadzora"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr "Generator postavk kreditnega nadzora"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr "Valuta terjatev. Če je prazno upošteva valuto družbe."
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr "Terjatve"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr "Fiksni znesek terjatev"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr "Proizvod terjatev"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr "Valuta terjatev"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr "Fiksne"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnjič posodobil"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr "Pošta in poročanje"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr "komunikacija kreditnega nadzora"
|
||||
121
account_credit_control_dunning_fees/i18n/sr.po
Normal file
121
account_credit_control_dunning_fees/i18n/sr.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-23 23:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:25+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Serbian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/sr@latin.po
Normal file
121
account_credit_control_dunning_fees/i18n/sr@latin.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:49+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sr@latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Ime za prikaz"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/sv.po
Normal file
121
account_credit_control_dunning_fees/i18n/sv.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:53+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Visa namn"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Typ"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/th.po
Normal file
121
account_credit_control_dunning_fees/i18n/th.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:49+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Thai (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "ชื่อที่ใช้แสดง"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "รหัส"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัพเดทครั้งสุดท้ายโดย"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "ชนิด"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/tr.po
Normal file
121
account_credit_control_dunning_fees/i18n/tr.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-23 23:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-30 21:21+0000\n"
|
||||
"Last-Translator: Ahmet Altinisik <aaltinisik@altinkaya.com.tr>\n"
|
||||
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturuldu"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen İsim"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son değişiklik"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son güncelleyen"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son güncelleme"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tipi"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/tr_TR.po
Normal file
121
account_credit_control_dunning_fees/i18n/tr_TR.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-30 23:29+0000\n"
|
||||
"PO-Revision-Date: 2017-01-04 14:44+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/tr_TR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr_TR\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma tarihi"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen ad"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "Kimlik"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "En son güncelleme tarihi"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "En son güncelleyen "
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "En son güncelleme tarihi"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Tip"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/uk.po
Normal file
121
account_credit_control_dunning_fees/i18n/uk.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Дата створення"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Тип"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/vi.po
Normal file
121
account_credit_control_dunning_fees/i18n/vi.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "Loại"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/vi_VN.po
Normal file
121
account_credit_control_dunning_fees/i18n/vi_VN.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-23 23:20+0000\n"
|
||||
"PO-Revision-Date: 2016-12-27 08:24+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/vi_VN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi_VN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Tạo bởi"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Tạo vào"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/zh_CN.po
Normal file
121
account_credit_control_dunning_fees/i18n/zh_CN.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-11-25 14:56+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "创建者"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新者"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "上次更新日期"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "类型"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
121
account_credit_control_dunning_fees/i18n/zh_TW.po
Normal file
121
account_credit_control_dunning_fees/i18n/zh_TW.po
Normal file
@@ -0,0 +1,121 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_credit_control_dunning_fees
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-13 03:39+0000\n"
|
||||
"PO-Revision-Date: 2016-10-11 09:52+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_line
|
||||
msgid "A credit control line"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_policy_level
|
||||
msgid "A credit control policy level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,balance_due_total:0
|
||||
msgid "Balance due with fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "建立者"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "建立於"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_run
|
||||
msgid "Credit control line generator"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: help:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid ""
|
||||
"Currency of the dunning fees. If empty, it takes the company's currency."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.line,dunning_fees_amount:0
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
#: view:website:account_credit_control.report_credit_control_summary_document
|
||||
msgid "Fees"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fixed_amount:0
|
||||
msgid "Fees Fixed Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_product_id:0
|
||||
msgid "Fees Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_currency_id:0
|
||||
msgid "Fees currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: selection:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Fixed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,id:0
|
||||
msgid "ID"
|
||||
msgstr "編號"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改:"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新:"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.dunning.fees.computer,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新於"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: view:credit.control.policy:account_credit_control_dunning_fees.add_dunning_fees_on_policy
|
||||
msgid "Mail and reporting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: field:credit.control.policy.level,dunning_fees_type:0
|
||||
msgid "Type"
|
||||
msgstr "類型"
|
||||
|
||||
#. module: account_credit_control_dunning_fees
|
||||
#: model:ir.model,name:account_credit_control_dunning_fees.model_credit_control_communication
|
||||
msgid "credit control communication"
|
||||
msgstr ""
|
||||
4
account_credit_control_dunning_fees/model/__init__.py
Normal file
4
account_credit_control_dunning_fees/model/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
from . import line
|
||||
from . import policy
|
||||
from . import run
|
||||
from . import dunning
|
||||
104
account_credit_control_dunning_fees/model/dunning.py
Normal file
104
account_credit_control_dunning_fees/model/dunning.py
Normal file
@@ -0,0 +1,104 @@
|
||||
# Copyright 2014-2017 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
from odoo import models, api
|
||||
|
||||
|
||||
class FeesComputer(models.BaseModel):
|
||||
"""Model that compute dunnig fees.
|
||||
|
||||
This class does not need any database storage as
|
||||
it contains pure logic.
|
||||
|
||||
It inherits form ``models.BaseModel`` to benefit of orm facility
|
||||
|
||||
Similar to AbstractModel but log access and actions
|
||||
"""
|
||||
|
||||
_name = 'credit.control.dunning.fees.computer'
|
||||
_auto = False
|
||||
_log_access = True
|
||||
_register = True
|
||||
_transient = False
|
||||
|
||||
@api.model
|
||||
def _get_compute_fun(self, level_fees_type):
|
||||
"""Retrieve function of class that should compute the fees based
|
||||
on type
|
||||
|
||||
:param level_fee_type: type existing in model
|
||||
`credit.control.policy.level`
|
||||
for field dunning_fees_type
|
||||
|
||||
:returns: a function of class :class:`FeesComputer`
|
||||
with following signature
|
||||
self, credit_line (record)
|
||||
|
||||
"""
|
||||
if level_fees_type == 'fixed':
|
||||
return self.compute_fixed_fees
|
||||
else:
|
||||
raise NotImplementedError('fees type %s is not supported' %
|
||||
level_fees_type)
|
||||
|
||||
@api.model
|
||||
def _compute_fees(self, credit_lines):
|
||||
"""Compute fees for `credit_lines` parameter
|
||||
|
||||
Fees amount is written on credit lines in the field dunning_fees_amount
|
||||
|
||||
:param credit_lines: recordset of `credit.control.line`
|
||||
|
||||
:returns: recordset of `credit.control.line`
|
||||
|
||||
"""
|
||||
if not credit_lines:
|
||||
return credit_lines
|
||||
for credit in credit_lines:
|
||||
# if there is no dependence between generated credit lines
|
||||
# this could be threaded
|
||||
self._compute(credit)
|
||||
return credit_lines
|
||||
|
||||
@api.model
|
||||
def _compute(self, credit_line):
|
||||
"""Compute fees for a given credit line
|
||||
|
||||
Fees amount is written on credit line in then field dunning_fees_amount
|
||||
|
||||
:param credit_line: credit line record
|
||||
|
||||
:returns: `credit_line` record
|
||||
"""
|
||||
fees_type = credit_line.policy_level_id.dunning_fees_type
|
||||
compute = self._get_compute_fun(fees_type)
|
||||
fees = compute(credit_line)
|
||||
if fees:
|
||||
credit_line.write({'dunning_fees_amount': fees})
|
||||
return credit_line
|
||||
|
||||
@api.model
|
||||
def compute_fixed_fees(self, credit_line):
|
||||
"""Compute fees amount for fixed fees.
|
||||
Correspond to the fixed dunning fees type
|
||||
|
||||
if currency of the fees is not the same as the currency
|
||||
of the credit line, fees amount is converted to
|
||||
currency of credit line.
|
||||
|
||||
:param credit_line: credit line record
|
||||
|
||||
:return: fees amount float (in credit line currency)
|
||||
|
||||
"""
|
||||
credit_currency = (credit_line.currency_id or
|
||||
credit_line.company_id.currency_id)
|
||||
level = credit_line.policy_level_id
|
||||
fees_amount = level.dunning_fixed_amount
|
||||
if not fees_amount:
|
||||
return 0.0
|
||||
fees_currency = (level.dunning_currency_id or
|
||||
level.policy_id.company_id.currency_id)
|
||||
if fees_currency == credit_currency:
|
||||
return fees_amount
|
||||
else:
|
||||
return fees_currency.compute(fees_amount, credit_currency)
|
||||
18
account_credit_control_dunning_fees/model/line.py
Normal file
18
account_credit_control_dunning_fees/model/line.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Copyright 2014-2017 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
from odoo import models, fields, api
|
||||
|
||||
|
||||
class CreditControlLine(models.Model):
|
||||
"""Add dunning_fees_amount_fees field"""
|
||||
|
||||
_inherit = "credit.control.line"
|
||||
|
||||
dunning_fees_amount = fields.Float(string='Fees')
|
||||
balance_due_total = fields.Float(string='Balance due with fees',
|
||||
compute='compute_balance_due')
|
||||
|
||||
@api.one
|
||||
@api.depends('dunning_fees_amount', 'balance_due')
|
||||
def compute_balance_due(self):
|
||||
self.balance_due_total = self.balance_due + self.dunning_fees_amount
|
||||
26
account_credit_control_dunning_fees/model/policy.py
Normal file
26
account_credit_control_dunning_fees/model/policy.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# Copyright 2014-2017 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
from odoo import models, fields
|
||||
|
||||
|
||||
class CreditControlPolicy(models.Model):
|
||||
"""ADD dunning fees fields"""
|
||||
|
||||
_inherit = "credit.control.policy.level"
|
||||
|
||||
dunning_product_id = fields.Many2one('product.product',
|
||||
string='Fees Product')
|
||||
|
||||
dunning_fixed_amount = fields.Float(string='Fees Fixed Amount')
|
||||
|
||||
dunning_currency_id = fields.Many2one(
|
||||
'res.currency',
|
||||
string='Fees currency',
|
||||
help="Currency of the dunning fees. If empty, it takes the "
|
||||
"company's currency."
|
||||
)
|
||||
|
||||
# planned type are fixed, percent, compound
|
||||
dunning_fees_type = fields.Selection([('fixed', 'Fixed')],
|
||||
string='Type',
|
||||
default='fixed')
|
||||
18
account_credit_control_dunning_fees/model/run.py
Normal file
18
account_credit_control_dunning_fees/model/run.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Copyright 2014-2017 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
from odoo import models, api
|
||||
|
||||
|
||||
class CreditControlRun(models.Model):
|
||||
"""Add computation of fees"""
|
||||
|
||||
_inherit = "credit.control.run"
|
||||
|
||||
@api.multi
|
||||
@api.returns('credit.control.line')
|
||||
def _generate_credit_lines(self):
|
||||
"""Override method to add fees computation"""
|
||||
credit_lines = super(CreditControlRun, self)._generate_credit_lines()
|
||||
fees_model = self.env['credit.control.dunning.fees.computer']
|
||||
fees_model._compute_fees(credit_lines)
|
||||
return credit_lines
|
||||
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<template id="report_credit_control_summary_document_fees"
|
||||
inherit_id="account_credit_control.report_credit_control_summary_document">
|
||||
<xpath expr="//table[@id='summary_table']/thead/tr/th[last()]" position="before">
|
||||
<th class="text-right">Fees</th>
|
||||
</xpath>
|
||||
<xpath expr="//table[@id='summary_table']/tbody/tr/td[last()]" position="before">
|
||||
<td class="text-right">
|
||||
<span t-field="l.dunning_fees_amount"/>
|
||||
</td>
|
||||
</xpath>
|
||||
<xpath expr="//span[@t-field='l.balance_due']" position="replace">
|
||||
<span t-field="l.balance_due_total"
|
||||
t-options='{"widget": "monetary",
|
||||
"display_currency": "l.currency_id or l.company_id.currency_id"}'/>
|
||||
</xpath>
|
||||
</template>
|
||||
|
||||
</odoo>
|
||||
@@ -0,0 +1,7 @@
|
||||
id,group_id/id,name,model_id/id,perm_read,perm_write,perm_create,perm_unlink
|
||||
dunning_fees_manager,account_credit_control.group_account_credit_control_manager,dunning_fees_manager,model_credit_control_dunning_fees_computer,1,1,1,1
|
||||
dunning_fees_user,account_credit_control.group_account_credit_control_user,dunning_fees_user,model_credit_control_dunning_fees_computer,1,1,1,1
|
||||
dunning_fees_user,account_credit_control.group_account_credit_control_info,dunning_fees_user,model_credit_control_dunning_fees_computer,1,0,0,0
|
||||
dunning_fees_account_user,account.group_account_user,dunning_fees_account_user,model_credit_control_dunning_fees_computer,1,0,0,0
|
||||
dunning_fees_account_manager,account.group_account_manager,dunning_fees_account_manager,model_credit_control_dunning_fees_computer,1,1,1,1
|
||||
dunning_fees_invoices,account.group_account_invoice,dunning_fees_invoice,model_credit_control_dunning_fees_computer,1,0,0,0
|
||||
|
BIN
account_credit_control_dunning_fees/static/description/icon.png
Normal file
BIN
account_credit_control_dunning_fees/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
1
account_credit_control_dunning_fees/tests/__init__.py
Normal file
1
account_credit_control_dunning_fees/tests/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import test_fees_generation
|
||||
@@ -0,0 +1,108 @@
|
||||
# Copyright 2014-2017 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
from odoo.tests import common
|
||||
|
||||
|
||||
class FixedFeesTester(common.TransactionCase):
|
||||
|
||||
def setUp(self):
|
||||
"""Initialize credit control level mock to test fees computations"""
|
||||
super(FixedFeesTester, self).setUp()
|
||||
self.currency_model = self.env['res.currency']
|
||||
self.euro = self.currency_model.search([('name', '=', 'EUR')])
|
||||
self.assertTrue(self.euro)
|
||||
self.usd = self.currency_model.search([('name', '=', 'USD')])
|
||||
self.assertTrue(self.usd)
|
||||
|
||||
self.company = self.browse_ref('base.main_company')
|
||||
self.company.currency_id = self.euro
|
||||
|
||||
level_obj = self.env['credit.control.policy.level']
|
||||
self.euro_level = level_obj.new({
|
||||
'name': 'Euro Level',
|
||||
'dunning_fixed_amount': 5.0,
|
||||
'dunning_currency_id': self.euro,
|
||||
'dunning_type': 'fixed',
|
||||
})
|
||||
|
||||
self.usd_level = level_obj.new({
|
||||
'name': 'USD Level',
|
||||
'dunning_fixed_amount': 5.0,
|
||||
'dunning_currency_id': self.usd,
|
||||
'dunning_type': 'fixed',
|
||||
})
|
||||
self.dunning_model = self.env['credit.control.dunning.fees.computer']
|
||||
self.line_model = self.env['credit.control.line']
|
||||
|
||||
def test_type_getter(self):
|
||||
"""Test that correct compute function is returned for "fixed" type"""
|
||||
c_fun = self.dunning_model._get_compute_fun('fixed')
|
||||
self.assertEqual(c_fun, self.dunning_model.compute_fixed_fees)
|
||||
|
||||
def test_unknow_type(self):
|
||||
"""Test that non implemented error is raised if invalide fees type"""
|
||||
with self.assertRaises(NotImplementedError):
|
||||
self.dunning_model._get_compute_fun('bang')
|
||||
|
||||
def test_computation_same_currency(self):
|
||||
"""Test that fees are correctly computed with same currency"""
|
||||
credit_line = self.line_model.new({
|
||||
'policy_level_id': self.euro_level,
|
||||
'currency_id': self.euro,
|
||||
'company_id': self.company,
|
||||
})
|
||||
fees = self.dunning_model.compute_fixed_fees(credit_line)
|
||||
self.assertEqual(fees, self.euro_level.dunning_fixed_amount)
|
||||
|
||||
def test_computation_different_currency(self):
|
||||
"""Test that fees are correctly computed with different currency"""
|
||||
credit_line = self.line_model.new({
|
||||
'policy_level_id': self.euro_level,
|
||||
'currency_id': self.usd.id,
|
||||
'company_id': self.company,
|
||||
})
|
||||
fees = self.dunning_model.compute_fixed_fees(credit_line)
|
||||
self.assertNotEqual(fees, self.euro_level.dunning_fixed_amount)
|
||||
|
||||
def test_computation_credit_currency_empty(self):
|
||||
"""Test that fees are correctly computed with empty credit currency"""
|
||||
credit_line = self.line_model.new({
|
||||
'policy_level_id': self.euro_level,
|
||||
'currency_id': False,
|
||||
'company_id': self.company,
|
||||
})
|
||||
fees = self.dunning_model.compute_fixed_fees(credit_line)
|
||||
self.assertEqual(fees, self.euro_level.dunning_fixed_amount)
|
||||
|
||||
def test_computation_level_currency_empty(self):
|
||||
"""Test that fees are correctly computed with empty level currency"""
|
||||
credit_line = self.line_model.new({
|
||||
'policy_level_id': self.euro_level,
|
||||
'currency_id': self.euro,
|
||||
'company_id': self.company,
|
||||
})
|
||||
self.euro_level.currency_id = False
|
||||
fees = self.dunning_model.compute_fixed_fees(credit_line)
|
||||
self.assertEqual(fees, self.euro_level.dunning_fixed_amount)
|
||||
|
||||
def test_computation_all_currency_empty(self):
|
||||
"""Test that fees are correctly computed with empty currencies"""
|
||||
credit_line = self.line_model.new({
|
||||
'policy_level_id': self.euro_level,
|
||||
'currency_id': False,
|
||||
'company_id': self.company,
|
||||
})
|
||||
self.euro_level.currency_id = False
|
||||
fees = self.dunning_model.compute_fixed_fees(credit_line)
|
||||
self.assertEqual(fees, self.euro_level.dunning_fixed_amount)
|
||||
|
||||
def test_no_fees(self):
|
||||
"""Test that fees are not generated if no amount defined on level"""
|
||||
credit_line = self.line_model.new({
|
||||
'policy_level_id': self.euro_level,
|
||||
'currency_id': self.usd,
|
||||
'company_id': self.company,
|
||||
})
|
||||
self.euro_level.dunning_fixed_amount = 0.0
|
||||
fees = self.dunning_model.compute_fixed_fees(credit_line)
|
||||
self.assertEqual(fees, 0.0)
|
||||
29
account_credit_control_dunning_fees/view/line_view.xml
Normal file
29
account_credit_control_dunning_fees/view/line_view.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="add_fees_on_credit_control_line" model="ir.ui.view">
|
||||
<field name="name">add fees on credit control line</field>
|
||||
<field name="model">credit.control.line</field>
|
||||
<field name="inherit_id" ref="account_credit_control.credit_control_line_tree" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="balance_due" position="after">
|
||||
<field name="dunning_fees_amount"
|
||||
attrs="{'readonly': [('state', '!=', 'draft')]}"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="add_fees_on_credit_control_line_from" model="ir.ui.view">
|
||||
<field name="name">add fees on credit control line form</field>
|
||||
<field name="model">credit.control.line</field>
|
||||
<field name="inherit_id" ref="account_credit_control.credit_control_line_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="balance_due" position="after">
|
||||
<field name="dunning_fees_amount"
|
||||
attrs="{'readonly': [('state', '!=', 'draft')]}"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
|
||||
</odoo>
|
||||
20
account_credit_control_dunning_fees/view/policy_view.xml
Normal file
20
account_credit_control_dunning_fees/view/policy_view.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="add_dunning_fees_on_policy" model="ir.ui.view">
|
||||
<field name="name">add dunning fees on policy</field>
|
||||
<field name="model">credit.control.policy</field>
|
||||
<field name="inherit_id" ref="account_credit_control.credit_control_policy_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//notebook//notebook/page[//field[@name='email_template_id']]" position="after">
|
||||
<page string="Fees">
|
||||
<group name="fees">
|
||||
<field name="dunning_fixed_amount"/>
|
||||
<field name="dunning_product_id"/>
|
||||
<field name="dunning_currency_id"/>
|
||||
</group>
|
||||
</page>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
1
account_credit_control_dunning_fees/wizard/__init__.py
Normal file
1
account_credit_control_dunning_fees/wizard/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import credit_control_communication
|
||||
@@ -0,0 +1,12 @@
|
||||
# Copyright 2014-2017 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
from odoo import models, api
|
||||
|
||||
|
||||
class CreditCommunication(models.TransientModel):
|
||||
_inherit = 'credit.control.communication'
|
||||
|
||||
@api.model
|
||||
def _get_total_due(self):
|
||||
balance_field = 'credit_control_line_ids.balance_due_total'
|
||||
return sum(self.mapped(balance_field))
|
||||
@@ -1 +1,2 @@
|
||||
server-ux
|
||||
account-financial-tools https://github.com/kenvac/account-financial-tools 11.0-account_credit_control
|
||||
|
||||
Reference in New Issue
Block a user