From 85280f626c3b97c5446829a0591b25045081cbac Mon Sep 17 00:00:00 2001 From: Cyril Gaudin Date: Tue, 17 May 2016 09:50:29 +0200 Subject: [PATCH 1/9] account_operation_rules: migration V9 --- account_operation_rule/README.rst | 102 +++++++++++ account_operation_rule/__init__.py | 3 + account_operation_rule/__openerp__.py | 24 +++ .../i18n/account_statement_operation_rule.pot | 152 ++++++++++++++++ account_operation_rule/i18n/de.po | 161 +++++++++++++++++ account_operation_rule/i18n/es.po | 161 +++++++++++++++++ account_operation_rule/i18n/fr.po | 158 ++++++++++++++++ account_operation_rule/i18n/it.po | 161 +++++++++++++++++ account_operation_rule/i18n/sl.po | 162 +++++++++++++++++ account_operation_rule/model/__init__.py | 5 + .../model/account_journal.py | 16 ++ .../model/account_operation_rule.py | 168 ++++++++++++++++++ .../model/account_statement_line.py | 15 ++ .../security/ir.model.access.csv | 2 + .../static/src/js/account_widgets.js | 37 ++++ account_operation_rule/tests/__init__.py | 8 + account_operation_rule/tests/common.py | 107 +++++++++++ account_operation_rule/tests/test_journal.py | 15 ++ .../tests/test_rule_currency.py | 152 ++++++++++++++++ .../tests/test_rule_rounding.py | 145 +++++++++++++++ .../view/account_operation_rule.xml | 11 ++ .../view/account_operation_rule_view.xml | 105 +++++++++++ 22 files changed, 1870 insertions(+) create mode 100644 account_operation_rule/README.rst create mode 100644 account_operation_rule/__init__.py create mode 100644 account_operation_rule/__openerp__.py create mode 100644 account_operation_rule/i18n/account_statement_operation_rule.pot create mode 100644 account_operation_rule/i18n/de.po create mode 100644 account_operation_rule/i18n/es.po create mode 100644 account_operation_rule/i18n/fr.po create mode 100644 account_operation_rule/i18n/it.po create mode 100644 account_operation_rule/i18n/sl.po create mode 100644 account_operation_rule/model/__init__.py create mode 100644 account_operation_rule/model/account_journal.py create mode 100644 account_operation_rule/model/account_operation_rule.py create mode 100644 account_operation_rule/model/account_statement_line.py create mode 100644 account_operation_rule/security/ir.model.access.csv create mode 100644 account_operation_rule/static/src/js/account_widgets.js create mode 100644 account_operation_rule/tests/__init__.py create mode 100644 account_operation_rule/tests/common.py create mode 100644 account_operation_rule/tests/test_journal.py create mode 100644 account_operation_rule/tests/test_rule_currency.py create mode 100644 account_operation_rule/tests/test_rule_rounding.py create mode 100644 account_operation_rule/view/account_operation_rule.xml create mode 100644 account_operation_rule/view/account_operation_rule_view.xml diff --git a/account_operation_rule/README.rst b/account_operation_rule/README.rst new file mode 100644 index 00000000..0f1a5247 --- /dev/null +++ b/account_operation_rule/README.rst @@ -0,0 +1,102 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License + +Bank Statement Operation Rules +============================== + +This module complements the Reconciliation of the bank statements. When +the bank statement matches one or more journal entry for a line and +there is a remaining balance, Odoo proposes you to click on buttons that +will generate write-off entries according to pre-configured *Statement +Operation Templates*. The aim of this module is to automatically click +for you on these buttons (i.e. create the write-off journal entries) +when some rules are respected, rules that you can configure. + +It contains 2 types of rules (but can be extended with additional rules), +described below: + +Roundings + The most basic rule: when the remaining balance is within a range, 1 + or more operations are applied. + +Currencies + When the remaining balance is within a range and the currency of all + the lines is the same but different from the company's, and the amount + currency is the same, 1 or more operations are applied. + + +Configuration +------------- + +As this module aims to automatize the ``Reconciliation Models``, +you first want to ensure that you have at least one operation configured. +You can find them in ``Invoicing > Dashboard > Bank card > More +> Reconciliation Models``. An example of a common operation is: + +=================== ========================== ======= ======== +Account Amount Type Amount Label +=================== ========================== ======= ======== +Depends of the l10n Percentage of open balance 100.0 % Rounding +=================== ========================== ======= ======== + +The configuration of the rules themselves happens in ``Invoicing > +Dashboard > Bank card > More > Reconciliation Rules``. Refer to +the description of the types of rules above in case of doubt. The form +is divided in 2 parts: **Rule** and **Result**. The rule part is where +you will set the conditions and the result part is what operations will +be done if the conditions are valid. + +For the **Roundings** rules, you will set a min. and a max. amount. It +can be negative or positive. The amount is compared to the remaining +balance when lines are matched in the bank statement. Example: if you +want to create a move line in a loss account when you received 1.- not +enough, you can create a rule with an min. amount of -1.0 and a max. +amount of 0.0. + +For the **Currencies** rules, the min. and max. amount have the same +properties, but you will also set the currencies for which the rule +applies. Setting the currency allows to configure different amounts +according to the currencies. + +Only the first rule matching the current situation is used, so if you +have several rules overlapping for some reason, be sure to order them +appropriately in the list view. + +Usage +----- + +When you use the *Reconcile* button of a bank statement, Odoo +automatically proposes you matching journal entries for each statement +line. This module automatically adds journal entries generated from the +*Reconciliation Models* if a rule matches with the current +situation, so there is nothing special to do once the rules are +configured. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/98/9.0 + +Credits +======= + +Contributors +------------ + +* Guewen Baconnier +* Cyril Gaudin + +Maintainer +---------- + +.. image:: http://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: http://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 +http://odoo-community.org. diff --git a/account_operation_rule/__init__.py b/account_operation_rule/__init__.py new file mode 100644 index 00000000..bad9dcdd --- /dev/null +++ b/account_operation_rule/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import model diff --git a/account_operation_rule/__openerp__.py b/account_operation_rule/__openerp__.py new file mode 100644 index 00000000..863afcd5 --- /dev/null +++ b/account_operation_rule/__openerp__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +# Author: Guewen Baconnier +# © 2014-2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + + +{'name': 'Bank Statement Operation Rules', + 'version': '9.0.1.0.0', + 'author': 'Camptocamp, Odoo Community Association (OCA)', + 'maintainer': 'Odoo Community Association (OCA)', + 'license': 'AGPL-3', + 'category': 'Accounting & Finance', + 'depends': [ + 'account', + ], + 'website': 'http://www.camptocamp.com', + 'data': [ + 'view/account_operation_rule.xml', + 'view/account_operation_rule_view.xml', + 'security/ir.model.access.csv', + ], + 'installable': True, + 'auto_install': False, + } diff --git a/account_operation_rule/i18n/account_statement_operation_rule.pot b/account_operation_rule/i18n/account_statement_operation_rule.pot new file mode 100644 index 00000000..65bd7c36 --- /dev/null +++ b/account_operation_rule/i18n/account_statement_operation_rule.pot @@ -0,0 +1,152 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-03-16 14:46+0000\n" +"PO-Revision-Date: 2015-03-16 14:46+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_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "

\n" +" Click to create a statement operation rule.\n" +"

\n" +" Those can be used to automatically create a move line when reconciling\n" +" your bank statements.\n" +"

\n" +" " +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,currencies:0 +#: selection:account.operation.rule,rule_type:0 +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: help:account.operation.rule,currencies:0 +msgid "For 'Currencies' rules, you can choose for which currencies the rule will be applicable." +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,id:0 +msgid "ID" +msgstr "" + +#. module: account_operation_rule +#: help:account.operation.rule,sequence:0 +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,amount_max:0 +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,amount_min:0 +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,name:0 +msgid "Name" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,operations:0 +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_search +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_tree +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.menu,name:account_operation_rule.menu_action_account_operation_rule +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,rule_type:0 +msgid "Type" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" + diff --git a/account_operation_rule/i18n/de.po b/account_operation_rule/i18n/de.po new file mode 100644 index 00000000..a1acc918 --- /dev/null +++ b/account_operation_rule/i18n/de.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: bank-statement-reconcile (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-20 02:39+0000\n" +"PO-Revision-Date: 2016-04-19 11:45+0000\n" +"Last-Translator: <>\n" +"Language-Team: German (http://www.transifex.com/oca/OCA-bank-statement-reconcile-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_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"

\n" +" Click to create a statement operation rule.\n" +"

\n" +" Those can be used to automatically create a move line when reconciling\n" +" your bank statements.\n" +"

\n" +" " +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "Kontoauszugzeile" + +#. module: account_operation_rule +#: field:account.operation.rule,create_uid:0 +msgid "Created by" +msgstr "Angelegt durch" + +#. module: account_operation_rule +#: field:account.operation.rule,create_date:0 +msgid "Created on" +msgstr "Angelegt am" + +#. module: account_operation_rule +#: field:account.operation.rule,currencies:0 +#: selection:account.operation.rule,rule_type:0 +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Dunning Fees" +msgstr "" + +#. module: account_operation_rule +#: help:account.operation.rule,currencies:0 +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: help:account.operation.rule,sequence:0 +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,write_uid:0 +msgid "Last Updated by" +msgstr "Letzte Aktualisierung durch" + +#. module: account_operation_rule +#: field:account.operation.rule,write_date:0 +msgid "Last Updated on" +msgstr "Letzte Aktualisierung am" + +#. module: account_operation_rule +#: field:account.operation.rule,amount_max:0 +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,amount_min:0 +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,name:0 +msgid "Name" +msgstr "Bezeichnung" + +#. module: account_operation_rule +#: field:account.operation.rule,operations:0 +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,sequence:0 +msgid "Sequence" +msgstr "Reihenfolge" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_search +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_tree +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.menu,name:account_operation_rule.menu_action_account_operation_rule +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,rule_type:0 +msgid "Type" +msgstr "Art" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" diff --git a/account_operation_rule/i18n/es.po b/account_operation_rule/i18n/es.po new file mode 100644 index 00000000..5b2120ad --- /dev/null +++ b/account_operation_rule/i18n/es.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: bank-statement-reconcile (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-20 02:39+0000\n" +"PO-Revision-Date: 2016-04-19 11:45+0000\n" +"Last-Translator: <>\n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-bank-statement-reconcile-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_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"

\n" +" Click to create a statement operation rule.\n" +"

\n" +" Those can be used to automatically create a move line when reconciling\n" +" your bank statements.\n" +"

\n" +" " +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,currencies:0 +#: selection:account.operation.rule,rule_type:0 +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Dunning Fees" +msgstr "" + +#. module: account_operation_rule +#: help:account.operation.rule,currencies:0 +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,id:0 +msgid "ID" +msgstr "" + +#. module: account_operation_rule +#: help:account.operation.rule,sequence:0 +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,amount_max:0 +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,amount_min:0 +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: account_operation_rule +#: field:account.operation.rule,operations:0 +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,sequence:0 +msgid "Sequence" +msgstr "Secuencia" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_search +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_tree +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.menu,name:account_operation_rule.menu_action_account_operation_rule +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,rule_type:0 +msgid "Type" +msgstr "Tipo" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" diff --git a/account_operation_rule/i18n/fr.po b/account_operation_rule/i18n/fr.po new file mode 100644 index 00000000..96c367e3 --- /dev/null +++ b/account_operation_rule/i18n/fr.po @@ -0,0 +1,158 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-03-16 14:46+0000\n" +"PO-Revision-Date: 2015-03-16 14:46+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_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "

\n" +" Click to create a statement operation rule.\n" +"

\n" +" Those can be used to automatically create a move line when reconciling\n" +" your bank statements.\n" +"

\n" +" " +msgstr "

\n" +" Cliquer pour créer une nouvelle règle d'opération relevé.\n" +"

\n" +" Elles peuvent être utilisées pour automatiser la création de lignes " +" quand vous réconciliez des relevés bancaires." +"

\n" +" " + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "Et" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "Et la devise est une des suivantes" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "Ligne de relevé bancaire" + +#. module: account_operation_rule +#: field:account.operation.rule,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,currencies:0 +#: selection:account.operation.rule,rule_type:0 +msgid "Currencies" +msgstr "Devises" + +#. module: account_operation_rule +#: help:account.operation.rule,currencies:0 +msgid "For 'Currencies' rules, you can choose for which currencies the rule will be applicable." +msgstr "Pour les règles 'Devises', vous pouvez sélectionner les devises pour lesquelles la règle s'applique." + +#. module: account_operation_rule +#: field:account.operation.rule,id:0 +msgid "ID" +msgstr "" + +#. module: account_operation_rule +#: help:account.operation.rule,sequence:0 +msgid "If several rules match, the first one is used." +msgstr "Si plusieurs règles correspondent, la première est utilisée." + +#. module: account_operation_rule +#: field:account.operation.rule,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,amount_max:0 +msgid "Max. Amount" +msgstr "Montant max." + +#. module: account_operation_rule +#: field:account.operation.rule,amount_min:0 +msgid "Min. Amount" +msgstr "Montant min." + +#. module: account_operation_rule +#: field:account.operation.rule,name:0 +msgid "Name" +msgstr "Nom" + +#. module: account_operation_rule +#: field:account.operation.rule,operations:0 +msgid "Operations" +msgstr "Opérations" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "Résultat" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "Arrondis" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "Règle" + +#. module: account_operation_rule +#: field:account.operation.rule,sequence:0 +msgid "Sequence" +msgstr "Séquence" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "Règle d'opération de relevé" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_search +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_tree +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.menu,name:account_operation_rule.menu_action_account_operation_rule +msgid "Statement Operation Rules" +msgstr "Règles d'opération de relevé" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "Alors l'opération suivant sera appliquée :" + +#. module: account_operation_rule +#: field:account.operation.rule,rule_type:0 +msgid "Type" +msgstr "Type" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "Quand la balance est entre" + diff --git a/account_operation_rule/i18n/it.po b/account_operation_rule/i18n/it.po new file mode 100644 index 00000000..3c1ffd61 --- /dev/null +++ b/account_operation_rule/i18n/it.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: bank-statement-reconcile (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-20 02:39+0000\n" +"PO-Revision-Date: 2016-04-19 11:45+0000\n" +"Last-Translator: <>\n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-bank-statement-reconcile-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_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"

\n" +" Click to create a statement operation rule.\n" +"

\n" +" Those can be used to automatically create a move line when reconciling\n" +" your bank statements.\n" +"

\n" +" " +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "Linea estratto conto" + +#. module: account_operation_rule +#: field:account.operation.rule,create_uid:0 +msgid "Created by" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,create_date:0 +msgid "Created on" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,currencies:0 +#: selection:account.operation.rule,rule_type:0 +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Dunning Fees" +msgstr "" + +#. module: account_operation_rule +#: help:account.operation.rule,currencies:0 +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,id:0 +msgid "ID" +msgstr "" + +#. module: account_operation_rule +#: help:account.operation.rule,sequence:0 +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,write_uid:0 +msgid "Last Updated by" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,write_date:0 +msgid "Last Updated on" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,amount_max:0 +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,amount_min:0 +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,name:0 +msgid "Name" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,operations:0 +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_search +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_tree +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.menu,name:account_operation_rule.menu_action_account_operation_rule +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: field:account.operation.rule,rule_type:0 +msgid "Type" +msgstr "" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" diff --git a/account_operation_rule/i18n/sl.po b/account_operation_rule/i18n/sl.po new file mode 100644 index 00000000..0674a816 --- /dev/null +++ b/account_operation_rule/i18n/sl.po @@ -0,0 +1,162 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +# Matjaž Mozetič , 2016 +msgid "" +msgstr "" +"Project-Id-Version: bank-statement-reconcile (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-04-20 02:39+0000\n" +"PO-Revision-Date: 2016-04-20 05:32+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-bank-statement-reconcile-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_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"

\n" +" Click to create a statement operation rule.\n" +"

\n" +" Those can be used to automatically create a move line when reconciling\n" +" your bank statements.\n" +"

\n" +" " +msgstr "

\n Dodaj pravilo za operacije na izpiskih.\n

\n Uporabijo se lahko za samodejno ustvarjanje postavk premikov ob usklajevanju\n bančnih izpiskov.\n

\n " + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "in" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "in je valuta ena izmed" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "Postavka bančnega izpiska" + +#. module: account_operation_rule +#: field:account.operation.rule,create_uid:0 +msgid "Created by" +msgstr "Ustvaril" + +#. module: account_operation_rule +#: field:account.operation.rule,create_date:0 +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: account_operation_rule +#: field:account.operation.rule,currencies:0 +#: selection:account.operation.rule,rule_type:0 +msgid "Currencies" +msgstr "Valute" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Dunning Fees" +msgstr "Provizije pri izterjavi" + +#. module: account_operation_rule +#: help:account.operation.rule,currencies:0 +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "Pri pravilih 'valut' lahko izberete, na katere valute se pravilo nanaša." + +#. module: account_operation_rule +#: field:account.operation.rule,id:0 +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: help:account.operation.rule,sequence:0 +msgid "If several rules match, the first one is used." +msgstr "Če se ujema več pravil, se uporabi prvo." + +#. module: account_operation_rule +#: field:account.operation.rule,write_uid:0 +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: account_operation_rule +#: field:account.operation.rule,write_date:0 +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: account_operation_rule +#: field:account.operation.rule,amount_max:0 +msgid "Max. Amount" +msgstr "Maks. znesek" + +#. module: account_operation_rule +#: field:account.operation.rule,amount_min:0 +msgid "Min. Amount" +msgstr "Min. znesek" + +#. module: account_operation_rule +#: field:account.operation.rule,name:0 +msgid "Name" +msgstr "Naziv" + +#. module: account_operation_rule +#: field:account.operation.rule,operations:0 +msgid "Operations" +msgstr "Operacije" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "Rezultat" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "Zaokroževanja" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "Pravilo" + +#. module: account_operation_rule +#: field:account.operation.rule,sequence:0 +msgid "Sequence" +msgstr "Zaporedje" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "Pravilo operacij z izpiski" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_search +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_tree +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.menu,name:account_operation_rule.menu_action_account_operation_rule +msgid "Statement Operation Rules" +msgstr "Pravilo operacij z izpiski" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "se izvedejo naslednje operacije" + +#. module: account_operation_rule +#: field:account.operation.rule,rule_type:0 +msgid "Type" +msgstr "Tip" + +#. module: account_operation_rule +#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "Ko je stanje med" diff --git a/account_operation_rule/model/__init__.py b/account_operation_rule/model/__init__.py new file mode 100644 index 00000000..01f3b18d --- /dev/null +++ b/account_operation_rule/model/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- + +from . import account_journal +from . import account_operation_rule +from . import account_statement_line diff --git a/account_operation_rule/model/account_journal.py b/account_operation_rule/model/account_journal.py new file mode 100644 index 00000000..65529b90 --- /dev/null +++ b/account_operation_rule/model/account_journal.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +# © 2016 Cyril Gaudin (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp import api, models + + +class AccountJournal(models.Model): + _inherit = 'account.journal' + + @api.multi + def open_reconciliation_rules(self): + return self.env['ir.actions.act_window'].for_xml_id( + "account_operation_rule", + "action_account_operation_rule" + ) diff --git a/account_operation_rule/model/account_operation_rule.py b/account_operation_rule/model/account_operation_rule.py new file mode 100644 index 00000000..4f80deff --- /dev/null +++ b/account_operation_rule/model/account_operation_rule.py @@ -0,0 +1,168 @@ +# -*- coding: utf-8 -*- +# Author: Guewen Baconnier +# © 2014-2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp import models, fields, api +from openerp.addons import decimal_precision as dp + + +class AccountOperationRule(models.Model): + _name = 'account.operation.rule' + + _order = 'sequence ASC, id ASC' + + name = fields.Char() + rule_type = fields.Selection( + selection=[('rounding', 'Roundings'), + ('currency', 'Currencies')], + string='Type', + default='rounding', + required=True, + ) + operations = fields.Many2many( + comodel_name='account.operation.template', + ) + amount_min = fields.Float( + string='Min. Amount', + digits=dp.get_precision('Account'), + ) + amount_max = fields.Float( + string='Max. Amount', + digits=dp.get_precision('Account'), + ) + currencies = fields.Many2many( + comodel_name='res.currency', + string='Currencies', + help="For 'Currencies' rules, you can choose for which currencies " + "the rule will be applicable.", + ) + sequence = fields.Integer( + default=20, + help="If several rules match, the first one is used.", + ) + + @staticmethod + def _between_with_bounds(low, value, high, currency): + """ Equivalent to a three way comparison: ``min <= value <= high`` + + The comparisons are done with the currency to use the correct + precision. + """ + if currency.compare_amounts(value, low) == -1: + return False + if currency.compare_amounts(value, high) == 1: + return False + return True + + @api.multi + def _balance_in_range(self, balance, currency): + amount_min = self.amount_min + amount_max = self.amount_max + return self._between_with_bounds(amount_min, balance, + amount_max, currency) + + @api.model + def _is_multicurrency(self, statement_line): + currency = statement_line.currency_for_rules() + company_currency = statement_line.company_id.currency_id + return currency != company_currency + + @api.multi + def _is_valid_balance(self, statement_line, balance): + if self._is_multicurrency(statement_line): + return False + currency = statement_line.currency_for_rules() + return self._balance_in_range(balance, currency) + + @api.multi + def _is_valid_multicurrency(self, statement_line, move_lines, balance): + """ Check if the multi-currency rule can be applied + + The rule is applied if and only if: + * The currency is not company's one + * The currency of the statement line and all the lines is the same + * The balance of the amount currencies is 0 + * The balance is between the bounds configured on the rule + """ + if not self._is_multicurrency(statement_line): + return False + currency = statement_line.currency_for_rules() + if currency not in self.currencies: + return False + amount_currency = statement_line.amount_currency + for move_line in move_lines: + if move_line.currency_id != statement_line.currency_id: + # use case not supported, no rule found + return False + amount_currency -= move_line.amount_currency + + # amount in currency is the same, so the balance is + # a difference due to currency rates + if statement_line.currency_id.is_zero(amount_currency): + return self._balance_in_range(balance, currency) + return False + + @api.multi + def is_valid(self, statement_line, move_lines, balance): + """ Returns True if a rule applies to a group of statement_line + + move lines. + + This is the public method where the rule is evaluated whatever + its type is. When a rule returns True, it means that it is a + candidate for the current reconciliation. The rule with the lowest + number in the ``sequence`` field is chosen. + + :param statement_line: the line to reconcile + :param move_lines: the selected move lines for reconciliation + :param balance: the balance between the statement_line and the + move_lines. It could be computed here but it is + computed before to avoid to compute it for each + rule when called on multiple rules. + """ + self.ensure_one() + if self.rule_type == 'rounding': + return self._is_valid_balance(statement_line, balance) + elif self.rule_type == 'currency': + return self._is_valid_multicurrency(statement_line, + move_lines, + balance) + + @api.model + def find_first_rule(self, statement_line, move_lines): + """ Find the rules that apply to a statement line and + a selection of move lines. + + :param statement_line: the line to reconcile + :param move_lines: the selected move lines for reconciliation + """ + balance = statement_line.amount + for move_line in move_lines: + balance += move_line.credit - move_line.debit + + currency = statement_line.currency_for_rules() + if currency.is_zero(balance): + return self.browse() + + rules = self.search([]) + # return the first applicable rule + for rule in rules: + if rule.is_valid(statement_line, move_lines, balance): + return rule + return self.browse() + + @api.model + @api.returns('account.operation.template') + def operations_for_reconciliation(self, statement_line_id, move_line_ids): + """ Find the rule for the current reconciliation and returns the + ``account.operation.template`` of the found rule. + + Called from the javascript reconciliation view. + + """ + line_obj = self.env['account.bank.statement.line'] + move_line_obj = self.env['account.move.line'] + statement_line = line_obj.browse(statement_line_id) + move_lines = move_line_obj.browse(move_line_ids) + rules = self.find_first_rule(statement_line, move_lines) + return rules.operations diff --git a/account_operation_rule/model/account_statement_line.py b/account_operation_rule/model/account_statement_line.py new file mode 100644 index 00000000..4b15caa8 --- /dev/null +++ b/account_operation_rule/model/account_statement_line.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +# Author: Guewen Baconnier +# © 2014-2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + + +from openerp import models, api + + +class AccountBankStatementLine(models.Model): + _inherit = 'account.bank.statement.line' + + @api.multi + def currency_for_rules(self): + return self.currency_id or self.statement_id.currency_id diff --git a/account_operation_rule/security/ir.model.access.csv b/account_operation_rule/security/ir.model.access.csv new file mode 100644 index 00000000..a551798b --- /dev/null +++ b/account_operation_rule/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_account_operation_rule,account.statement.operation.rule,model_account_operation_rule,account.group_account_user,1,1,1,1 diff --git a/account_operation_rule/static/src/js/account_widgets.js b/account_operation_rule/static/src/js/account_widgets.js new file mode 100644 index 00000000..e4bb34c1 --- /dev/null +++ b/account_operation_rule/static/src/js/account_widgets.js @@ -0,0 +1,37 @@ +odoo.define('account_operation_rule', function (require) { + "use strict"; + + var core = require('web.core'); + var Model = require('web.Model'); + + var reconciliation = require('account.reconciliation'); + + reconciliation.bankStatementReconciliationLine.include({ + operation_rules: function () { + var self = this; + var model_operation_rule = new Model("account.operation.rule"); + model_operation_rule.call("operations_for_reconciliation", + [self.st_line.id, + _.pluck(self.get("mv_lines_selected"), 'id')]) + .then(function (operations) { + _.each(operations, function (operation_id) { + var preset_btn = self.$("button.preset[data-presetid='" + operation_id + "']"); + preset_btn.click(); + self.addLineBeingEdited(); + }); + }); + }, + render: function () { + var deferred = this._super(); + if (deferred) { + deferred.done(this.operation_rules()); + } + return deferred; + }, + restart: function () { + var deferred = this._super(); + deferred.done(this.operation_rules()); + return deferred; + } + }); +}); diff --git a/account_operation_rule/tests/__init__.py b/account_operation_rule/tests/__init__.py new file mode 100644 index 00000000..65ba9f17 --- /dev/null +++ b/account_operation_rule/tests/__init__.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +# Author: Guewen Baconnier +# © 2014-2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import test_journal +from . import test_rule_rounding +from . import test_rule_currency diff --git a/account_operation_rule/tests/common.py b/account_operation_rule/tests/common.py new file mode 100644 index 00000000..8cbe1022 --- /dev/null +++ b/account_operation_rule/tests/common.py @@ -0,0 +1,107 @@ +# -*- coding: utf-8 -*- +# Author: Guewen Baconnier +# © 2014-2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp.tests.common import TransactionCase + + +class AccountOperationTestCase(TransactionCase): + + def setUp(self): + super(AccountOperationTestCase, self).setUp() + self.cash_journal = self.env['account.journal'].create({ + 'name': 'Unittest Cash journal', + 'code': 'CASH', + 'type': 'cash', + }) + + self.sale_journal = self.env['account.journal'].create({ + 'name': 'Unittest Customer Invoices', + 'code': 'INV', + 'type': 'sale', + }) + + receivable_type = self.env['account.account.type'].create({ + 'name': 'Receivable', + 'type': 'receivable' + }) + + self.account_receivable = self.env['account.account'].create({ + 'name': 'Unittest Account Receivable', + 'user_type_id': receivable_type.id, + 'code': 'TEST101200', + 'reconcile': True, + }) + + income_type = self.env['account.account.type'].create({ + 'name': 'Unittest Income', + 'type': 'other' + }) + + self.account_sale = self.env['account.account'].create({ + 'name': 'Unittest Account Sale', + 'user_type_id': income_type.id, + 'code': 'TEST200000', + 'reconcile': False, + }) + + def prepare_statement(self, difference, + statement_line_currency=None, + move_line_currency=None, + amount_currency_difference=0): + """ Prepare a bank statement line and a move line + + The difference is applied on the bank statement line relatively to + the move line. + """ + + amount = 100 + amount_currency = 120 + + statement = self.env['account.bank.statement'].create({ + 'name': '/', + 'journal_id': self.cash_journal.id + }) + line_vals = { + 'name': '001', + 'amount': amount + difference, + 'statement_id': statement.id, + } + if statement_line_currency: + line_vals.update({ + 'currency_id': statement_line_currency.id, + 'amount_currency': + amount_currency + amount_currency_difference, + }) + + statement_line = self.env['account.bank.statement.line'].create( + line_vals + ) + debit_line_vals = { + 'name': '001', + 'account_id': self.account_receivable.id, + 'debit': amount, + } + if move_line_currency: + debit_line_vals.update({ + 'currency_id': move_line_currency.id, + 'amount_currency': amount_currency, + }) + + credit_line_vals = { + 'name': '001', + 'account_id': self.account_sale.id, + 'credit': amount, + } + if move_line_currency: + credit_line_vals['currency_id'] = move_line_currency.id + + move = self.env['account.move'].create({ + 'journal_id': self.sale_journal.id, + 'line_ids': [(0, 0, debit_line_vals), (0, 0, credit_line_vals)], + }) + + return statement_line, move.line_ids.filtered( + lambda l: l.debit != 0.0 + ) diff --git a/account_operation_rule/tests/test_journal.py b/account_operation_rule/tests/test_journal.py new file mode 100644 index 00000000..b4d93da0 --- /dev/null +++ b/account_operation_rule/tests/test_journal.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +# © 2016 Cyril Gaudin (Camptocamp) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp.tests.common import TransactionCase + + +class TestJournal(TransactionCase): + + def test_open_reconciliation_rules(self): + # Just test that method returned the good view + + result = self.env['account.journal'].open_reconciliation_rules() + self.assertEqual('account.operation.rule', result['res_model']) + self.assertEqual('form', result['view_type']) diff --git a/account_operation_rule/tests/test_rule_currency.py b/account_operation_rule/tests/test_rule_currency.py new file mode 100644 index 00000000..7f3226ae --- /dev/null +++ b/account_operation_rule/tests/test_rule_currency.py @@ -0,0 +1,152 @@ +# -*- coding: utf-8 -*- +# Author: Guewen Baconnier +# © 2014-2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from .common import AccountOperationTestCase + + +class TestRuleCurrency(AccountOperationTestCase): + + def setUp(self): + super(TestRuleCurrency, self).setUp() + self.operation_obj = self.env['account.operation.template'] + self.rule_obj = self.env['account.operation.rule'] + self.aed = self.browse_ref('base.AED') + self.aed.active = True + self.afn = self.browse_ref('base.AFN') + self.afn.active = True + self.all = self.browse_ref('base.ALL') + self.all.active = True + self.amd = self.browse_ref('base.AMD') + self.amd.active = True + self.aoa = self.browse_ref('base.AOA') + self.aoa.active = True + + self.operation_currency_1 = self.operation_obj.create({ + 'name': 'Currency AED, AFR, ALL -1.0 to 0.0', + 'label': 'Currency', + 'account_id': self.account_receivable.id, + 'amount_type': 'percentage', + 'amount': 100.0, + }) + self.rule_currency_1 = self.rule_obj.create({ + 'name': 'Currency AED, AFR, ALL -1.0 to 0.0', + 'rule_type': 'currency', + 'operations': [(6, 0, (self.operation_currency_1.id, ))], + 'amount_min': -1.0, + 'amount_max': 0, + 'sequence': 1, + 'currencies': [(6, 0, [self.aed.id, self.afn.id, self.all.id])], + }) + + self.operation_currency_2 = self.operation_obj.create({ + 'name': 'Currency AED, AFR, ALL -2.0 to -1.0', + 'label': 'Currency', + 'amount_type': 'percentage', + 'amount': 100.0, + }) + self.rule_currency_2 = self.rule_obj.create({ + 'name': 'Currency AED, AFR, ALL -2.0 to 1.0', + 'rule_type': 'currency', + 'operations': [(6, 0, (self.operation_currency_2.id, ))], + 'amount_min': -2.0, + 'amount_max': -1.0, + 'sequence': 2, + 'currencies': [(6, 0, [self.aed.id, self.afn.id, self.all.id])], + }) + + self.operation_currency_3 = self.operation_obj.create({ + 'name': 'Currency AMD, AOA -2.0 to 0.0', + 'label': 'Currency', + 'amount_type': 'percentage', + 'amount': 100.0, + + }) + self.rule_currency_3 = self.rule_obj.create({ + 'name': 'Currency AMD, AOA -2.0 to 0.0', + 'rule_type': 'currency', + 'operations': [(6, 0, (self.operation_currency_3.id, ))], + 'amount_min': -2, + 'amount_max': 0, + 'sequence': 2, + 'currencies': [(6, 0, [self.amd.id, self.aoa.id])], + }) + + def test_no_currency_match(self): + """No rules for the current currency""" + sek = self.browse_ref('base.SEK') + statement_line, move_line = self.prepare_statement( + -0.5, + statement_line_currency=sek, + move_line_currency=sek) + ops = self.rule_obj.operations_for_reconciliation(statement_line.id, + move_line.ids) + self.assertFalse(ops) + + def test_rounding_lines(self): + """No Currencies rules on lines with company currency""" + statement_line, move_line = self.prepare_statement(-0.5) + ops = self.rule_obj.operations_for_reconciliation(statement_line.id, + move_line.ids) + self.assertFalse(ops) + + def test_currency_rule_1(self): + """Rule 1 is found with -0.5 AED""" + statement_line, move_line = self.prepare_statement( + -0.5, + statement_line_currency=self.aed, + move_line_currency=self.aed, + amount_currency_difference=0) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertEquals(rule, self.rule_currency_1) + + def test_currency_rule_2(self): + """Rule 2 is found with -2 AED""" + statement_line, move_line = self.prepare_statement( + -2, + statement_line_currency=self.aed, + move_line_currency=self.aed, + amount_currency_difference=0) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertEquals(rule, self.rule_currency_2) + + def test_currency_rule_3(self): + """Rule 3 is found with -2 AOA""" + statement_line, move_line = self.prepare_statement( + -2, + statement_line_currency=self.aoa, + move_line_currency=self.aoa, + amount_currency_difference=0) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertEquals(rule, self.rule_currency_3) + + def test_currency_rule_not_in_bounds(self): + """No rule is found with -3 AOA""" + statement_line, move_line = self.prepare_statement( + -3, + statement_line_currency=self.aoa, + move_line_currency=self.aoa, + amount_currency_difference=0) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertFalse(rule) + + def test_no_rule_amount_currency_different(self): + """No rule when amount currency is different""" + statement_line, move_line = self.prepare_statement( + -0.5, + statement_line_currency=self.aed, + move_line_currency=self.aed, + amount_currency_difference=0.5) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertFalse(rule) + + def test_rule_amount_currency_difference_near_zero(self): + """Apply the rule when the difference is near 0""" + statement_line, move_line = self.prepare_statement( + -0.5, + statement_line_currency=self.aed, + move_line_currency=self.aed, + amount_currency_difference=-0.001) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertEquals(rule, self.rule_currency_1) diff --git a/account_operation_rule/tests/test_rule_rounding.py b/account_operation_rule/tests/test_rule_rounding.py new file mode 100644 index 00000000..20290eaa --- /dev/null +++ b/account_operation_rule/tests/test_rule_rounding.py @@ -0,0 +1,145 @@ +# -*- coding: utf-8 -*- +# Author: Guewen Baconnier +# © 2014-2016 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + + +from .common import AccountOperationTestCase + + +class TestRuleRounding(AccountOperationTestCase): + + def setUp(self): + super(TestRuleRounding, self).setUp() + self.operation_obj = self.env['account.operation.template'] + self.rule_obj = self.env['account.operation.rule'] + self.operation_round_1 = self.operation_obj.create({ + 'name': 'Rounding -1.0 to 0.0', + 'label': 'Rounding', + 'amount_type': 'percentage', + 'amount': 100.0, + + }) + self.rule_round_1 = self.rule_obj.create({ + 'name': 'Rounding -1.0 to 0.0', + 'rule_type': 'rounding', + 'operations': [(6, 0, (self.operation_round_1.id, ))], + 'amount_min': -1.0, + 'amount_max': 0, + 'sequence': 1, + }) + self.operation_round_2 = self.operation_obj.create({ + 'name': 'Rounding -2.0 to -1.0', + 'label': 'Rounding', + 'amount_type': 'percentage', + 'amount': 100.0, + + }) + self.rule_round_2 = self.rule_obj.create({ + 'name': 'Rounding -1.0 to 0.0', + 'rule_type': 'rounding', + 'operations': [(6, 0, (self.operation_round_2.id, ))], + 'amount_min': -2.0, + 'amount_max': -1.0, + 'sequence': 2, + }) + self.operation_round_3 = self.operation_obj.create({ + 'name': 'Rounding 0.0 to 2.0', + 'label': 'Rounding', + 'amount_type': 'percentage', + 'amount': 100.0, + + }) + self.rule_round_3 = self.rule_obj.create({ + 'name': 'Rounding 0.0 to 2.0', + 'rule_type': 'rounding', + 'operations': [(6, 0, (self.operation_round_3.id, ))], + 'amount_min': 0, + 'amount_max': 2, + 'sequence': 2, + }) + + def test_rule_round_1(self): + """-0.5 => rule round 1""" + statement_line, move_line = self.prepare_statement(-0.5) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertEquals(rule, self.rule_round_1) + + def test_rule_round_1_limit(self): + """-1 => rule round 1""" + statement_line, move_line = self.prepare_statement(-1) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertEquals(rule, self.rule_round_1) + + def test_rule_round_1_near_limit(self): + """-1.0001 => rule round 1""" + statement_line, move_line = self.prepare_statement(-1.0001) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertEquals(rule, self.rule_round_1) + + def test_rule_round_2(self): + """-1.01 => rule round 2""" + statement_line, move_line = self.prepare_statement(-1.01) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertEquals(rule, self.rule_round_2) + + def test_rule_round_2_limit(self): + """-2 => rule round 2""" + statement_line, move_line = self.prepare_statement(-2) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertEquals(rule, self.rule_round_2) + + def test_rule_round_3(self): + """+1.5 => rule round 3""" + statement_line, move_line = self.prepare_statement(1.5) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertEquals(rule, self.rule_round_3) + + def test_rule_round_3_limit(self): + """+2 => rule round 3""" + statement_line, move_line = self.prepare_statement(2) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertEquals(rule, self.rule_round_3) + + def test_rule_no_round_below(self): + """-3 => no rule""" + statement_line, move_line = self.prepare_statement(-3) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertFalse(rule) + + def test_rule_no_round_above(self): + """+3 => no rule""" + statement_line, move_line = self.prepare_statement(3) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertFalse(rule) + + def test_rule_no_round_zero(self): + """0 => no rule""" + statement_line, move_line = self.prepare_statement(0) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertFalse(rule) + + def test_rule_no_round_near_zero(self): + """0.0001 => no rule""" + statement_line, move_line = self.prepare_statement(0.0001) + rule = self.rule_obj.find_first_rule(statement_line, [move_line]) + self.assertFalse(rule) + + def test_operations(self): + """test operations_for_reconciliation()""" + statement_line, move_line = self.prepare_statement(-0.5) + ops = self.rule_obj.operations_for_reconciliation(statement_line.id, + move_line.ids) + self.assertEquals(ops, self.operation_round_1) + + def test_multicurrency_lines(self): + """No rounding rules on multi-currency lines""" + currency = self.browse_ref('base.AED') + statement_line, move_line = self.prepare_statement( + -0.5, + statement_line_currency=currency, + move_line_currency=currency + ) + ops = self.rule_obj.operations_for_reconciliation(statement_line.id, + move_line.ids) + self.assertFalse(ops) diff --git a/account_operation_rule/view/account_operation_rule.xml b/account_operation_rule/view/account_operation_rule.xml new file mode 100644 index 00000000..f31ede73 --- /dev/null +++ b/account_operation_rule/view/account_operation_rule.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/account_operation_rule/view/account_operation_rule_view.xml b/account_operation_rule/view/account_operation_rule_view.xml new file mode 100644 index 00000000..f749ce96 --- /dev/null +++ b/account_operation_rule/view/account_operation_rule_view.xml @@ -0,0 +1,105 @@ + + + + + account.operation.rule.form + account.operation.rule + +
+ +
+
+ + + + + + + + + +
+
+
+
+ + + + account.operation.rule.tree + account.operation.rule + + + + + + + + + + + + + + + account.operation.rule.search + account.operation.rule + + + + + + + + + + + + + + Reconciliation Rules + account.operation.rule + form + tree,form + + +

+ Click to create a reconciliation rule. +

+ Those can be used to automatically create a move line when reconciling + your bank statements. +

+
+
+ + + + account.journal.dashboard.kanban.inherit + account.journal + + + + + + + + +
From 7da37e46dc2b280ab9415913a5cb2ddbf34c875b Mon Sep 17 00:00:00 2001 From: Cyril Gaudin Date: Tue, 24 May 2016 17:37:40 +0200 Subject: [PATCH 2/9] fix a weird asynchronous stuff bug --- .../static/src/js/account_widgets.js | 41 +++++++++++++++---- 1 file changed, 33 insertions(+), 8 deletions(-) diff --git a/account_operation_rule/static/src/js/account_widgets.js b/account_operation_rule/static/src/js/account_widgets.js index e4bb34c1..8d7a34a7 100644 --- a/account_operation_rule/static/src/js/account_widgets.js +++ b/account_operation_rule/static/src/js/account_widgets.js @@ -7,20 +7,45 @@ odoo.define('account_operation_rule', function (require) { var reconciliation = require('account.reconciliation'); reconciliation.bankStatementReconciliationLine.include({ + init: function(parent, context) { + this._super(parent, context); + this.preset_auto_clicked = false; + }, + operation_rules: function () { var self = this; var model_operation_rule = new Model("account.operation.rule"); model_operation_rule.call("operations_for_reconciliation", - [self.st_line.id, - _.pluck(self.get("mv_lines_selected"), 'id')]) - .then(function (operations) { - _.each(operations, function (operation_id) { - var preset_btn = self.$("button.preset[data-presetid='" + operation_id + "']"); - preset_btn.click(); - self.addLineBeingEdited(); - }); + [self.st_line.id, _.pluck(self.get("mv_lines_selected"), 'id')] + ).then(function (operations) { + _.each(operations, function (operation_id) { + var preset_btn = self.$("button.preset[data-presetid='" + operation_id + "']"); + preset_btn.trigger('click'); + + // Cannot click on add_line link for user here + // even with a when().done() + // because preset_btn click handler makes a rpc call + // via formCreateInputChanged method + // and we have to wait for response + self.preset_auto_clicked = true; }); + }); }, + + /** + * Click on add_line link if preset button have been clicked + * automatically. + */ + formCreateInputChanged: function(elt, val) { + var self = this; + var deferred = this._super(elt, val); + deferred.done(function() { + if (self.preset_auto_clicked) { + self.addLineBeingEdited(); + } + }); + }, + render: function () { var deferred = this._super(); if (deferred) { From a7ae0d255fd1e514723c93245e2054ce6f08753d Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:48:11 +0200 Subject: [PATCH 3/9] [MIG] Make modules uninstallable --- account_operation_rule/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_operation_rule/__openerp__.py b/account_operation_rule/__openerp__.py index 863afcd5..7a2acdff 100644 --- a/account_operation_rule/__openerp__.py +++ b/account_operation_rule/__openerp__.py @@ -19,6 +19,6 @@ 'view/account_operation_rule_view.xml', 'security/ir.model.access.csv', ], - 'installable': True, + 'installable': False, 'auto_install': False, } From 5a0052e00131ea5ded2667aa9b3c8a6550bd8f43 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Thu, 6 Oct 2016 14:48:14 +0200 Subject: [PATCH 4/9] [MIG] Rename manifest files --- account_operation_rule/{__openerp__.py => __manifest__.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename account_operation_rule/{__openerp__.py => __manifest__.py} (100%) diff --git a/account_operation_rule/__openerp__.py b/account_operation_rule/__manifest__.py similarity index 100% rename from account_operation_rule/__openerp__.py rename to account_operation_rule/__manifest__.py From 2950d91d4542a51a02f7a5c95160bce14fae0420 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 2 Jul 2016 04:44:32 -0400 Subject: [PATCH 5/9] OCA Transbot updated translations from Transifex --- account_operation_rule/i18n/am.po | 181 ++++++++++++++++++++++++++ account_operation_rule/i18n/ca.po | 181 ++++++++++++++++++++++++++ account_operation_rule/i18n/de.po | 108 +++++++++------- account_operation_rule/i18n/el_GR.po | 181 ++++++++++++++++++++++++++ account_operation_rule/i18n/en.po | 182 ++++++++++++++++++++++++++ account_operation_rule/i18n/es.po | 114 ++++++++++------- account_operation_rule/i18n/es_ES.po | 181 ++++++++++++++++++++++++++ account_operation_rule/i18n/fi.po | 182 ++++++++++++++++++++++++++ account_operation_rule/i18n/fr.po | 139 +++++++++++--------- account_operation_rule/i18n/gl.po | 181 ++++++++++++++++++++++++++ account_operation_rule/i18n/hr_HR.po | 181 ++++++++++++++++++++++++++ account_operation_rule/i18n/pt.po | 181 ++++++++++++++++++++++++++ account_operation_rule/i18n/pt_BR.po | 185 +++++++++++++++++++++++++++ account_operation_rule/i18n/pt_PT.po | 181 ++++++++++++++++++++++++++ account_operation_rule/i18n/sl.po | 114 ++++++++++------- account_operation_rule/i18n/tr.po | 181 ++++++++++++++++++++++++++ 16 files changed, 2458 insertions(+), 195 deletions(-) create mode 100644 account_operation_rule/i18n/am.po create mode 100644 account_operation_rule/i18n/ca.po create mode 100644 account_operation_rule/i18n/el_GR.po create mode 100644 account_operation_rule/i18n/en.po create mode 100644 account_operation_rule/i18n/es_ES.po create mode 100644 account_operation_rule/i18n/fi.po create mode 100644 account_operation_rule/i18n/gl.po create mode 100644 account_operation_rule/i18n/hr_HR.po create mode 100644 account_operation_rule/i18n/pt.po create mode 100644 account_operation_rule/i18n/pt_BR.po create mode 100644 account_operation_rule/i18n/pt_PT.po create mode 100644 account_operation_rule/i18n/tr.po diff --git a/account_operation_rule/i18n/am.po b/account_operation_rule/i18n/am.po new file mode 100644 index 00000000..15fb3f47 --- /dev/null +++ b/account_operation_rule/i18n/am.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-12 11:12+0000\n" +"PO-Revision-Date: 2016-09-12 11:12+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/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_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +msgid "Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +msgid "Sequence" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +msgid "Type" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/ca.po b/account_operation_rule/i18n/ca.po new file mode 100644 index 00000000..55366932 --- /dev/null +++ b/account_operation_rule/i18n/ca.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-12 11:12+0000\n" +"PO-Revision-Date: 2016-09-12 11:12+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/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_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +msgid "Created on" +msgstr "Creat el" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +msgid "Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +msgid "Sequence" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +msgid "Type" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/de.po b/account_operation_rule/i18n/de.po index a1acc918..16cddedf 100644 --- a/account_operation_rule/i18n/de.po +++ b/account_operation_rule/i18n/de.po @@ -3,14 +3,15 @@ # * account_operation_rule # # Translators: +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: bank-statement-reconcile (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 02:39+0000\n" -"PO-Revision-Date: 2016-04-19 11:45+0000\n" -"Last-Translator: <>\n" -"Language-Team: German (http://www.transifex.com/oca/OCA-bank-statement-reconcile-8-0/language/de/)\n" +"POT-Creation-Date: 2016-06-30 02:44+0000\n" +"PO-Revision-Date: 2016-06-30 02:44+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,24 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule -msgid "" -"

\n" -" Click to create a statement operation rule.\n" -"

\n" -" Those can be used to automatically create a move line when reconciling\n" -" your bank statements.\n" -"

\n" -" " -msgstr "" - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "And" msgstr "" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "And the currency is one of" msgstr "" @@ -45,75 +34,96 @@ msgid "Bank Statement Line" msgstr "Kontoauszugzeile" #. module: account_operation_rule -#: field:account.operation.rule,create_uid:0 +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid msgid "Created by" msgstr "Angelegt durch" #. module: account_operation_rule -#: field:account.operation.rule,create_date:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date msgid "Created on" msgstr "Angelegt am" #. module: account_operation_rule -#: field:account.operation.rule,currencies:0 #: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies msgid "Currencies" msgstr "" #. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -msgid "Dunning Fees" +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" msgstr "" #. module: account_operation_rule -#: help:account.operation.rule,currencies:0 +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies msgid "" "For 'Currencies' rules, you can choose for which currencies the rule will be" " applicable." msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,id:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id msgid "ID" msgstr "ID" #. module: account_operation_rule -#: help:account.operation.rule,sequence:0 +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence msgid "If several rules match, the first one is used." msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,write_uid:0 +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid msgid "Last Updated by" msgstr "Letzte Aktualisierung durch" #. module: account_operation_rule -#: field:account.operation.rule,write_date:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date msgid "Last Updated on" msgstr "Letzte Aktualisierung am" #. module: account_operation_rule -#: field:account.operation.rule,amount_max:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max msgid "Max. Amount" msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,amount_min:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min msgid "Min. Amount" msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,name:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name msgid "Name" msgstr "Bezeichnung" #. module: account_operation_rule -#: field:account.operation.rule,operations:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations msgid "Operations" msgstr "" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Result" msgstr "" @@ -123,39 +133,49 @@ msgid "Roundings" msgstr "" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Rule" msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,sequence:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence msgid "Sequence" msgstr "Reihenfolge" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Statement Operation Rule" msgstr "" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_search -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_tree -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.menu,name:account_operation_rule.menu_action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree msgid "Statement Operation Rules" msgstr "" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Then the following operations will be applied:" msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,rule_type:0 +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type msgid "Type" msgstr "Art" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "When the balance is between" msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/el_GR.po b/account_operation_rule/i18n/el_GR.po new file mode 100644 index 00000000..613f58c5 --- /dev/null +++ b/account_operation_rule/i18n/el_GR.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-12 11:12+0000\n" +"PO-Revision-Date: 2016-09-12 11:12+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/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_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "Κωδικός" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +msgid "Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +msgid "Sequence" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +msgid "Type" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/en.po b/account_operation_rule/i18n/en.po new file mode 100644 index 00000000..a0c5836d --- /dev/null +++ b/account_operation_rule/i18n/en.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-30 02:44+0000\n" +"PO-Revision-Date: 2016-06-30 02:44+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_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "And" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "And the currency is one of" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "Bank Statement Line" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "Click to create a reconciliation rule." + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +msgid "Created on" +msgstr "Created on" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +msgid "Currencies" +msgstr "Currencies" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "If several rules match, the first one is used." + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +msgid "Max. Amount" +msgstr "Max. Amount" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +msgid "Min. Amount" +msgstr "Min. Amount" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +msgid "Name" +msgstr "Name" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations +msgid "Operations" +msgstr "Operations" + +#. module: account_operation_rule +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "Reconciliation Rules" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "Result" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "Roundings" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "Rule" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +msgid "Sequence" +msgstr "Sequence" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "Statement Operation Rule" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +msgid "Statement Operation Rules" +msgstr "Statement Operation Rules" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "Then the following operations will be applied:" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +msgid "Type" +msgstr "Type" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "When the balance is between" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "account.operation.rule" diff --git a/account_operation_rule/i18n/es.po b/account_operation_rule/i18n/es.po index 5b2120ad..2a0f5231 100644 --- a/account_operation_rule/i18n/es.po +++ b/account_operation_rule/i18n/es.po @@ -3,14 +3,15 @@ # * account_operation_rule # # Translators: +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: bank-statement-reconcile (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 02:39+0000\n" -"PO-Revision-Date: 2016-04-19 11:45+0000\n" -"Last-Translator: <>\n" -"Language-Team: Spanish (http://www.transifex.com/oca/OCA-bank-statement-reconcile-8-0/language/es/)\n" +"POT-Creation-Date: 2016-09-12 11:12+0000\n" +"PO-Revision-Date: 2016-09-12 11:12+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -18,24 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule -msgid "" -"

\n" -" Click to create a statement operation rule.\n" -"

\n" -" Those can be used to automatically create a move line when reconciling\n" -" your bank statements.\n" -"

\n" -" " -msgstr "" - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "And" msgstr "" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "And the currency is one of" msgstr "" @@ -45,75 +34,96 @@ msgid "Bank Statement Line" msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,create_uid:0 +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid msgid "Created by" msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,create_date:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date msgid "Created on" -msgstr "" +msgstr "Creado en" #. module: account_operation_rule -#: field:account.operation.rule,currencies:0 #: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies msgid "Currencies" msgstr "" #. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -msgid "Dunning Fees" -msgstr "" +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "Nombre mostrado" #. module: account_operation_rule -#: help:account.operation.rule,currencies:0 +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies msgid "" "For 'Currencies' rules, you can choose for which currencies the rule will be" " applicable." msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,id:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id msgid "ID" msgstr "" #. module: account_operation_rule -#: help:account.operation.rule,sequence:0 +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence msgid "If several rules match, the first one is used." msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,write_uid:0 +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid msgid "Last Updated by" msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,write_date:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date msgid "Last Updated on" -msgstr "" +msgstr "Última actualización en" #. module: account_operation_rule -#: field:account.operation.rule,amount_max:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max msgid "Max. Amount" msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,amount_min:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min msgid "Min. Amount" msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,name:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name msgid "Name" msgstr "Nombre" #. module: account_operation_rule -#: field:account.operation.rule,operations:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations msgid "Operations" msgstr "" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Result" msgstr "" @@ -123,39 +133,49 @@ msgid "Roundings" msgstr "" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Rule" msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,sequence:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence msgid "Sequence" msgstr "Secuencia" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Statement Operation Rule" msgstr "" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_search -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_tree -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.menu,name:account_operation_rule.menu_action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree msgid "Statement Operation Rules" msgstr "" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Then the following operations will be applied:" msgstr "" #. module: account_operation_rule -#: field:account.operation.rule,rule_type:0 +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type msgid "Type" msgstr "Tipo" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "When the balance is between" msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/es_ES.po b/account_operation_rule/i18n/es_ES.po new file mode 100644 index 00000000..7823c766 --- /dev/null +++ b/account_operation_rule/i18n/es_ES.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-12 11:12+0000\n" +"PO-Revision-Date: 2016-09-12 11:12+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/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_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +msgid "Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +msgid "Sequence" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +msgid "Type" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/fi.po b/account_operation_rule/i18n/fi.po new file mode 100644 index 00000000..067aeea6 --- /dev/null +++ b/account_operation_rule/i18n/fi.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +# OCA Transbot , 2016 +# Jarmo Kortetjärvi , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-12 11:12+0000\n" +"PO-Revision-Date: 2016-09-12 11:12+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2016\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/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_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +msgid "Created on" +msgstr "Luotu" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +msgid "Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +msgid "Sequence" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +msgid "Type" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/fr.po b/account_operation_rule/i18n/fr.po index 96c367e3..2e66cd73 100644 --- a/account_operation_rule/i18n/fr.po +++ b/account_operation_rule/i18n/fr.po @@ -1,44 +1,30 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * account_operation_rule -# +# * account_operation_rule +# +# Translators: +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-16 14:46+0000\n" -"PO-Revision-Date: 2015-03-16 14:46+0000\n" -"Last-Translator: <>\n" -"Language-Team: \n" +"POT-Creation-Date: 2016-09-12 11:12+0000\n" +"PO-Revision-Date: 2016-09-12 11:12+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Plural-Forms: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule -msgid "

\n" -" Click to create a statement operation rule.\n" -"

\n" -" Those can be used to automatically create a move line when reconciling\n" -" your bank statements.\n" -"

\n" -" " -msgstr "

\n" -" Cliquer pour créer une nouvelle règle d'opération relevé.\n" -"

\n" -" Elles peuvent être utilisées pour automatiser la création de lignes " -" quand vous réconciliez des relevés bancaires." -"

\n" -" " - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "And" msgstr "Et" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "And the currency is one of" msgstr "Et la devise est une des suivantes" @@ -48,68 +34,98 @@ msgid "Bank Statement Line" msgstr "Ligne de relevé bancaire" #. module: account_operation_rule -#: field:account.operation.rule,create_uid:0 +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid msgid "Created by" -msgstr "" +msgstr "Créée par" #. module: account_operation_rule -#: field:account.operation.rule,create_date:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date msgid "Created on" -msgstr "" +msgstr "Créée le" #. module: account_operation_rule -#: field:account.operation.rule,currencies:0 #: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies msgid "Currencies" msgstr "Devises" #. module: account_operation_rule -#: help:account.operation.rule,currencies:0 -msgid "For 'Currencies' rules, you can choose for which currencies the rule will be applicable." -msgstr "Pour les règles 'Devises', vous pouvez sélectionner les devises pour lesquelles la règle s'applique." +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "Nom à afficher" #. module: account_operation_rule -#: field:account.operation.rule,id:0 -msgid "ID" +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." msgstr "" +"Pour les règles 'Devises', vous pouvez sélectionner les devises pour " +"lesquelles la règle s'applique." #. module: account_operation_rule -#: help:account.operation.rule,sequence:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence msgid "If several rules match, the first one is used." msgstr "Si plusieurs règles correspondent, la première est utilisée." #. module: account_operation_rule -#: field:account.operation.rule,write_uid:0 +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid msgid "Last Updated by" -msgstr "" +msgstr "Dernière modification par" #. module: account_operation_rule -#: field:account.operation.rule,write_date:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date msgid "Last Updated on" -msgstr "" +msgstr "Modifié le" #. module: account_operation_rule -#: field:account.operation.rule,amount_max:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max msgid "Max. Amount" msgstr "Montant max." #. module: account_operation_rule -#: field:account.operation.rule,amount_min:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min msgid "Min. Amount" msgstr "Montant min." #. module: account_operation_rule -#: field:account.operation.rule,name:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name msgid "Name" msgstr "Nom" #. module: account_operation_rule -#: field:account.operation.rule,operations:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations msgid "Operations" msgstr "Opérations" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Result" msgstr "Résultat" @@ -119,40 +135,49 @@ msgid "Roundings" msgstr "Arrondis" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Rule" msgstr "Règle" #. module: account_operation_rule -#: field:account.operation.rule,sequence:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence msgid "Sequence" msgstr "Séquence" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Statement Operation Rule" msgstr "Règle d'opération de relevé" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_search -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_tree -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.menu,name:account_operation_rule.menu_action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree msgid "Statement Operation Rules" msgstr "Règles d'opération de relevé" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Then the following operations will be applied:" msgstr "Alors l'opération suivant sera appliquée :" #. module: account_operation_rule -#: field:account.operation.rule,rule_type:0 +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type msgid "Type" msgstr "Type" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "When the balance is between" msgstr "Quand la balance est entre" +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/gl.po b/account_operation_rule/i18n/gl.po new file mode 100644 index 00000000..94b665b2 --- /dev/null +++ b/account_operation_rule/i18n/gl.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-12 11:12+0000\n" +"PO-Revision-Date: 2016-09-12 11:12+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/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_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +msgid "Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +msgid "Sequence" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +msgid "Type" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/hr_HR.po b/account_operation_rule/i18n/hr_HR.po new file mode 100644 index 00000000..3913b903 --- /dev/null +++ b/account_operation_rule/i18n/hr_HR.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-30 02:44+0000\n" +"PO-Revision-Date: 2016-06-30 02:44+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/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_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "Stavka izvoda" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +msgid "Name" +msgstr "Naziv" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +msgid "Sequence" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +msgid "Type" +msgstr "Tip" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/pt.po b/account_operation_rule/i18n/pt.po new file mode 100644 index 00000000..d7a9abae --- /dev/null +++ b/account_operation_rule/i18n/pt.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-12 11:12+0000\n" +"PO-Revision-Date: 2016-09-12 11:12+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/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_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +msgid "Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +msgid "Sequence" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +msgid "Type" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/pt_BR.po b/account_operation_rule/i18n/pt_BR.po new file mode 100644 index 00000000..bf4a2a92 --- /dev/null +++ b/account_operation_rule/i18n/pt_BR.po @@ -0,0 +1,185 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +# Claudio Araujo Santos , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-07-08 02:45+0000\n" +"PO-Revision-Date: 2016-07-08 02:45+0000\n" +"Last-Translator: Claudio Araujo Santos , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/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_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "E" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "E a moeda é um dos" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "Linha extrato bancário" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "Clique para criar uma regra de reconciliação." + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +msgid "Currencies" +msgstr "Moedas" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "Mostrar Nome" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" +"Para regras 'Moeda', você pode escolher para quais moedas a regra será " +"aplicável." + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "Se houver várias regras, a primeiro é usada." + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "Diário" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "Modificada pela última vez" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +msgid "Last Updated on" +msgstr "Atualizado em" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +msgid "Max. Amount" +msgstr "Max. Quantidade" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +msgid "Min. Amount" +msgstr "Min. Quantidade" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +msgid "Name" +msgstr "Nome" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations +msgid "Operations" +msgstr "Operações" + +#. module: account_operation_rule +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "Regras de reconciliação" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "Resultado" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "Arredondamentos" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "Regra" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +msgid "Sequence" +msgstr "Seqüência" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "Regra Operação declaração" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +msgid "Statement Operation Rules" +msgstr "Regras Declaração de Operação" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "Em seguida, as seguintes operações serão aplicados:" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" +"Essa pode ser usada para criar automaticamente uma linha de movimento quando" +" conciliar seus extratos bancários." + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +msgid "Type" +msgstr "Tipo" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "Quando o saldo é entre" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "account.operation.rule" diff --git a/account_operation_rule/i18n/pt_PT.po b/account_operation_rule/i18n/pt_PT.po new file mode 100644 index 00000000..2bea6937 --- /dev/null +++ b/account_operation_rule/i18n/pt_PT.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-12 11:12+0000\n" +"PO-Revision-Date: 2016-09-12 11:12+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/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_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +msgid "Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +msgid "Sequence" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +msgid "Type" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/sl.po b/account_operation_rule/i18n/sl.po index 0674a816..ad193509 100644 --- a/account_operation_rule/i18n/sl.po +++ b/account_operation_rule/i18n/sl.po @@ -3,15 +3,15 @@ # * account_operation_rule # # Translators: -# Matjaž Mozetič , 2016 +# OCA Transbot , 2016 msgid "" msgstr "" -"Project-Id-Version: bank-statement-reconcile (8.0)\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-20 02:39+0000\n" -"PO-Revision-Date: 2016-04-20 05:32+0000\n" -"Last-Translator: Matjaž Mozetič \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-bank-statement-reconcile-8-0/language/sl/)\n" +"POT-Creation-Date: 2016-09-12 11:12+0000\n" +"PO-Revision-Date: 2016-09-12 11:12+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -19,24 +19,12 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule -msgid "" -"

\n" -" Click to create a statement operation rule.\n" -"

\n" -" Those can be used to automatically create a move line when reconciling\n" -" your bank statements.\n" -"

\n" -" " -msgstr "

\n Dodaj pravilo za operacije na izpiskih.\n

\n Uporabijo se lahko za samodejno ustvarjanje postavk premikov ob usklajevanju\n bančnih izpiskov.\n

\n " - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "And" msgstr "in" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "And the currency is one of" msgstr "in je valuta ena izmed" @@ -46,75 +34,97 @@ msgid "Bank Statement Line" msgstr "Postavka bančnega izpiska" #. module: account_operation_rule -#: field:account.operation.rule,create_uid:0 +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid msgid "Created by" msgstr "Ustvaril" #. module: account_operation_rule -#: field:account.operation.rule,create_date:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date msgid "Created on" msgstr "Ustvarjeno" #. module: account_operation_rule -#: field:account.operation.rule,currencies:0 #: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies msgid "Currencies" msgstr "Valute" #. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -msgid "Dunning Fees" -msgstr "Provizije pri izterjavi" +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "Prikazni naziv" #. module: account_operation_rule -#: help:account.operation.rule,currencies:0 +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies msgid "" "For 'Currencies' rules, you can choose for which currencies the rule will be" " applicable." -msgstr "Pri pravilih 'valut' lahko izberete, na katere valute se pravilo nanaša." +msgstr "" +"Pri pravilih 'valut' lahko izberete, na katere valute se pravilo nanaša." #. module: account_operation_rule -#: field:account.operation.rule,id:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id msgid "ID" msgstr "ID" #. module: account_operation_rule -#: help:account.operation.rule,sequence:0 +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence msgid "If several rules match, the first one is used." msgstr "Če se ujema več pravil, se uporabi prvo." #. module: account_operation_rule -#: field:account.operation.rule,write_uid:0 +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid msgid "Last Updated by" msgstr "Zadnji posodobil" #. module: account_operation_rule -#: field:account.operation.rule,write_date:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date msgid "Last Updated on" msgstr "Zadnjič posodobljeno" #. module: account_operation_rule -#: field:account.operation.rule,amount_max:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max msgid "Max. Amount" msgstr "Maks. znesek" #. module: account_operation_rule -#: field:account.operation.rule,amount_min:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min msgid "Min. Amount" msgstr "Min. znesek" #. module: account_operation_rule -#: field:account.operation.rule,name:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name msgid "Name" msgstr "Naziv" #. module: account_operation_rule -#: field:account.operation.rule,operations:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations msgid "Operations" msgstr "Operacije" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Result" msgstr "Rezultat" @@ -124,39 +134,49 @@ msgid "Roundings" msgstr "Zaokroževanja" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Rule" msgstr "Pravilo" #. module: account_operation_rule -#: field:account.operation.rule,sequence:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence msgid "Sequence" msgstr "Zaporedje" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Statement Operation Rule" msgstr "Pravilo operacij z izpiski" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_search -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_tree -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.menu,name:account_operation_rule.menu_action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree msgid "Statement Operation Rules" msgstr "Pravilo operacij z izpiski" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "Then the following operations will be applied:" msgstr "se izvedejo naslednje operacije" #. module: account_operation_rule -#: field:account.operation.rule,rule_type:0 +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type msgid "Type" msgstr "Tip" #. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form msgid "When the balance is between" msgstr "Ko je stanje med" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" diff --git a/account_operation_rule/i18n/tr.po b/account_operation_rule/i18n/tr.po new file mode 100644 index 00000000..2f589539 --- /dev/null +++ b/account_operation_rule/i18n/tr.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_operation_rule +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-09-12 11:12+0000\n" +"PO-Revision-Date: 2016-09-12 11:12+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/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_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +msgid "Currencies" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +msgid "Display Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +msgid "" +"For 'Currencies' rules, you can choose for which currencies the rule will be" +" applicable." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +msgid "ID" +msgstr "ID" + +#. module: account_operation_rule +#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +msgid "Max. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +msgid "Min. Amount" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +msgid "Name" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations +msgid "Operations" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Result" +msgstr "" + +#. module: account_operation_rule +#: selection:account.operation.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +msgid "Sequence" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "Then the following operations will be applied:" +msgstr "" + +#. module: account_operation_rule +#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_operation_rule +#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +msgid "Type" +msgstr "" + +#. module: account_operation_rule +#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +msgid "When the balance is between" +msgstr "" + +#. module: account_operation_rule +#: model:ir.model,name:account_operation_rule.model_account_operation_rule +msgid "account.operation.rule" +msgstr "" From 683b94ec0446cbb711579c756e7d60c82798dd43 Mon Sep 17 00:00:00 2001 From: Akim Juillerat Date: Mon, 23 Apr 2018 11:22:05 +0200 Subject: [PATCH 6/9] [MIG] account_operation_rule : Migration to 11.0 (account_reconcile_rule) --- account_operation_rule/__init__.py | 3 - .../i18n/account_statement_operation_rule.pot | 152 --------------- account_operation_rule/i18n/en.po | 182 ------------------ .../security/ir.model.access.csv | 2 - .../static/src/js/account_widgets.js | 62 ------ .../view/account_operation_rule.xml | 11 -- .../README.rst | 45 +++-- account_reconcile_rule/__init__.py | 1 + .../__manifest__.py | 15 +- .../i18n/am.po | 0 .../i18n/ca.po | 0 .../i18n/de.po | 0 .../i18n/el_GR.po | 0 .../i18n/es.po | 0 .../i18n/es_ES.po | 0 .../i18n/fi.po | 0 .../i18n/fr.po | 0 .../i18n/gl.po | 0 .../i18n/hr_HR.po | 0 .../i18n/it.po | 0 .../i18n/pt.po | 0 .../i18n/pt_BR.po | 0 .../i18n/pt_PT.po | 0 .../i18n/sl.po | 0 .../i18n/tr.po | 0 .../models}/__init__.py | 4 +- .../models}/account_journal.py | 9 +- .../models/account_reconcile_rule.py | 49 +++-- .../models}/account_statement_line.py | 5 +- .../security/ir.model.access.csv | 2 + .../static/src/js/account_widgets.js | 50 +++++ .../tests/__init__.py | 3 +- .../tests/common.py | 34 ++-- .../tests/test_journal.py | 7 +- .../tests/test_rule_currency.py | 80 ++++---- .../tests/test_rule_rounding.py | 63 +++--- .../views/account_reconcile_rule.xml | 8 + .../views/account_reconcile_rule_view.xml | 40 ++-- 38 files changed, 241 insertions(+), 586 deletions(-) delete mode 100644 account_operation_rule/__init__.py delete mode 100644 account_operation_rule/i18n/account_statement_operation_rule.pot delete mode 100644 account_operation_rule/i18n/en.po delete mode 100644 account_operation_rule/security/ir.model.access.csv delete mode 100644 account_operation_rule/static/src/js/account_widgets.js delete mode 100644 account_operation_rule/view/account_operation_rule.xml rename {account_operation_rule => account_reconcile_rule}/README.rst (73%) create mode 100644 account_reconcile_rule/__init__.py rename {account_operation_rule => account_reconcile_rule}/__manifest__.py (54%) rename {account_operation_rule => account_reconcile_rule}/i18n/am.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/ca.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/de.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/el_GR.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/es.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/es_ES.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/fi.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/fr.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/gl.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/hr_HR.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/it.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/pt.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/pt_BR.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/pt_PT.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/sl.po (100%) rename {account_operation_rule => account_reconcile_rule}/i18n/tr.po (100%) rename {account_operation_rule/model => account_reconcile_rule/models}/__init__.py (51%) rename {account_operation_rule/model => account_reconcile_rule/models}/account_journal.py (60%) rename account_operation_rule/model/account_operation_rule.py => account_reconcile_rule/models/account_reconcile_rule.py (81%) rename {account_operation_rule/model => account_reconcile_rule/models}/account_statement_line.py (78%) create mode 100644 account_reconcile_rule/security/ir.model.access.csv create mode 100644 account_reconcile_rule/static/src/js/account_widgets.js rename {account_operation_rule => account_reconcile_rule}/tests/__init__.py (78%) rename {account_operation_rule => account_reconcile_rule}/tests/common.py (77%) rename {account_operation_rule => account_reconcile_rule}/tests/test_journal.py (66%) rename {account_operation_rule => account_reconcile_rule}/tests/test_rule_currency.py (65%) rename {account_operation_rule => account_reconcile_rule}/tests/test_rule_rounding.py (70%) create mode 100644 account_reconcile_rule/views/account_reconcile_rule.xml rename account_operation_rule/view/account_operation_rule_view.xml => account_reconcile_rule/views/account_reconcile_rule_view.xml (67%) diff --git a/account_operation_rule/__init__.py b/account_operation_rule/__init__.py deleted file mode 100644 index bad9dcdd..00000000 --- a/account_operation_rule/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# -*- coding: utf-8 -*- - -from . import model diff --git a/account_operation_rule/i18n/account_statement_operation_rule.pot b/account_operation_rule/i18n/account_statement_operation_rule.pot deleted file mode 100644 index 65bd7c36..00000000 --- a/account_operation_rule/i18n/account_statement_operation_rule.pot +++ /dev/null @@ -1,152 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_operation_rule -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-16 14:46+0000\n" -"PO-Revision-Date: 2015-03-16 14:46+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_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule -msgid "

\n" -" Click to create a statement operation rule.\n" -"

\n" -" Those can be used to automatically create a move line when reconciling\n" -" your bank statements.\n" -"

\n" -" " -msgstr "" - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form -msgid "And" -msgstr "" - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form -msgid "And the currency is one of" -msgstr "" - -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line -msgid "Bank Statement Line" -msgstr "" - -#. module: account_operation_rule -#: field:account.operation.rule,create_uid:0 -msgid "Created by" -msgstr "" - -#. module: account_operation_rule -#: field:account.operation.rule,create_date:0 -msgid "Created on" -msgstr "" - -#. module: account_operation_rule -#: field:account.operation.rule,currencies:0 -#: selection:account.operation.rule,rule_type:0 -msgid "Currencies" -msgstr "" - -#. module: account_operation_rule -#: help:account.operation.rule,currencies:0 -msgid "For 'Currencies' rules, you can choose for which currencies the rule will be applicable." -msgstr "" - -#. module: account_operation_rule -#: field:account.operation.rule,id:0 -msgid "ID" -msgstr "" - -#. module: account_operation_rule -#: help:account.operation.rule,sequence:0 -msgid "If several rules match, the first one is used." -msgstr "" - -#. module: account_operation_rule -#: field:account.operation.rule,write_uid:0 -msgid "Last Updated by" -msgstr "" - -#. module: account_operation_rule -#: field:account.operation.rule,write_date:0 -msgid "Last Updated on" -msgstr "" - -#. module: account_operation_rule -#: field:account.operation.rule,amount_max:0 -msgid "Max. Amount" -msgstr "" - -#. module: account_operation_rule -#: field:account.operation.rule,amount_min:0 -msgid "Min. Amount" -msgstr "" - -#. module: account_operation_rule -#: field:account.operation.rule,name:0 -msgid "Name" -msgstr "" - -#. module: account_operation_rule -#: field:account.operation.rule,operations:0 -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form -msgid "Result" -msgstr "" - -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -msgid "Roundings" -msgstr "" - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form -msgid "Rule" -msgstr "" - -#. module: account_operation_rule -#: field:account.operation.rule,sequence:0 -msgid "Sequence" -msgstr "" - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form -msgid "Statement Operation Rule" -msgstr "" - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_search -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_tree -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.menu,name:account_operation_rule.menu_action_account_operation_rule -msgid "Statement Operation Rules" -msgstr "" - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" -msgstr "" - -#. module: account_operation_rule -#: field:account.operation.rule,rule_type:0 -msgid "Type" -msgstr "" - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form -msgid "When the balance is between" -msgstr "" - diff --git a/account_operation_rule/i18n/en.po b/account_operation_rule/i18n/en.po deleted file mode 100644 index a0c5836d..00000000 --- a/account_operation_rule/i18n/en.po +++ /dev/null @@ -1,182 +0,0 @@ -# Translation of Odoo Server. -# This file contains the translation of the following modules: -# * account_operation_rule -# -msgid "" -msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-30 02:44+0000\n" -"PO-Revision-Date: 2016-06-30 02:44+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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "And" -msgstr "And" - -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "And the currency is one of" -msgstr "And the currency is one of" - -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line -msgid "Bank Statement Line" -msgstr "Bank Statement Line" - -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule -msgid "Click to create a reconciliation rule." -msgstr "Click to create a reconciliation rule." - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid -msgid "Created by" -msgstr "Created by" - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date -msgid "Created on" -msgstr "Created on" - -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies -msgid "Currencies" -msgstr "Currencies" - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name -msgid "Display Name" -msgstr "Display Name" - -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies -msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." -msgstr "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id -msgid "ID" -msgstr "ID" - -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence -msgid "If several rules match, the first one is used." -msgstr "If several rules match, the first one is used." - -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal -msgid "Journal" -msgstr "Journal" - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update -msgid "Last Modified on" -msgstr "Last Modified on" - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid -msgid "Last Updated by" -msgstr "Last Updated by" - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date -msgid "Last Updated on" -msgstr "Last Updated on" - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max -msgid "Max. Amount" -msgstr "Max. Amount" - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min -msgid "Min. Amount" -msgstr "Min. Amount" - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name -msgid "Name" -msgstr "Name" - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "Operations" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view -msgid "Reconciliation Rules" -msgstr "Reconciliation Rules" - -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Result" -msgstr "Result" - -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -msgid "Roundings" -msgstr "Roundings" - -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Rule" -msgstr "Rule" - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence -msgid "Sequence" -msgstr "Sequence" - -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Statement Operation Rule" -msgstr "Statement Operation Rule" - -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree -msgid "Statement Operation Rules" -msgstr "Statement Operation Rules" - -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" -msgstr "Then the following operations will be applied:" - -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule -msgid "" -"Those can be used to automatically create a move line when reconciling\n" -" your bank statements." -msgstr "" -"Those can be used to automatically create a move line when reconciling\n" -" your bank statements." - -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type -msgid "Type" -msgstr "Type" - -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "When the balance is between" -msgstr "When the balance is between" - -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" -msgstr "account.operation.rule" diff --git a/account_operation_rule/security/ir.model.access.csv b/account_operation_rule/security/ir.model.access.csv deleted file mode 100644 index a551798b..00000000 --- a/account_operation_rule/security/ir.model.access.csv +++ /dev/null @@ -1,2 +0,0 @@ -id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink -access_account_operation_rule,account.statement.operation.rule,model_account_operation_rule,account.group_account_user,1,1,1,1 diff --git a/account_operation_rule/static/src/js/account_widgets.js b/account_operation_rule/static/src/js/account_widgets.js deleted file mode 100644 index 8d7a34a7..00000000 --- a/account_operation_rule/static/src/js/account_widgets.js +++ /dev/null @@ -1,62 +0,0 @@ -odoo.define('account_operation_rule', function (require) { - "use strict"; - - var core = require('web.core'); - var Model = require('web.Model'); - - var reconciliation = require('account.reconciliation'); - - reconciliation.bankStatementReconciliationLine.include({ - init: function(parent, context) { - this._super(parent, context); - this.preset_auto_clicked = false; - }, - - operation_rules: function () { - var self = this; - var model_operation_rule = new Model("account.operation.rule"); - model_operation_rule.call("operations_for_reconciliation", - [self.st_line.id, _.pluck(self.get("mv_lines_selected"), 'id')] - ).then(function (operations) { - _.each(operations, function (operation_id) { - var preset_btn = self.$("button.preset[data-presetid='" + operation_id + "']"); - preset_btn.trigger('click'); - - // Cannot click on add_line link for user here - // even with a when().done() - // because preset_btn click handler makes a rpc call - // via formCreateInputChanged method - // and we have to wait for response - self.preset_auto_clicked = true; - }); - }); - }, - - /** - * Click on add_line link if preset button have been clicked - * automatically. - */ - formCreateInputChanged: function(elt, val) { - var self = this; - var deferred = this._super(elt, val); - deferred.done(function() { - if (self.preset_auto_clicked) { - self.addLineBeingEdited(); - } - }); - }, - - render: function () { - var deferred = this._super(); - if (deferred) { - deferred.done(this.operation_rules()); - } - return deferred; - }, - restart: function () { - var deferred = this._super(); - deferred.done(this.operation_rules()); - return deferred; - } - }); -}); diff --git a/account_operation_rule/view/account_operation_rule.xml b/account_operation_rule/view/account_operation_rule.xml deleted file mode 100644 index f31ede73..00000000 --- a/account_operation_rule/view/account_operation_rule.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - diff --git a/account_operation_rule/README.rst b/account_reconcile_rule/README.rst similarity index 73% rename from account_operation_rule/README.rst rename to account_reconcile_rule/README.rst index 0f1a5247..f5167b57 100644 --- a/account_operation_rule/README.rst +++ b/account_reconcile_rule/README.rst @@ -1,14 +1,16 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :alt: License +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.png + :target: https://www.gnu.org/licenses/agpl + :alt: License: AGPL-3 -Bank Statement Operation Rules -============================== +======================= +Account Reconcile Rules +======================= This module complements the Reconciliation of the bank statements. When the bank statement matches one or more journal entry for a line and there is a remaining balance, Odoo proposes you to click on buttons that -will generate write-off entries according to pre-configured *Statement -Operation Templates*. The aim of this module is to automatically click +will generate write-off entries according to pre-configured *Reconciliation +Models*. The aim of this module is to automatically click for you on these buttons (i.e. create the write-off journal entries) when some rules are respected, rules that you can configure. @@ -29,7 +31,7 @@ Configuration ------------- As this module aims to automatize the ``Reconciliation Models``, -you first want to ensure that you have at least one operation configured. +you first want to ensure that you have at least one model configured. You can find them in ``Invoicing > Dashboard > Bank card > More > Reconciliation Models``. An example of a common operation is: @@ -74,29 +76,42 @@ configured. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/98/9.0 + :target: https://runbot.odoo-community.org/runbot/98/11.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub 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 `_. + Contributors ------------ * Guewen Baconnier * Cyril Gaudin +* Akim Juillerat Maintainer ---------- -.. image:: http://odoo-community.org/logo.png +.. image:: https://odoo-community.org/logo.png :alt: Odoo Community Association - :target: http://odoo-community.org + :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. +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 -http://odoo-community.org. +To contribute to this module, please visit https://odoo-community.org. diff --git a/account_reconcile_rule/__init__.py b/account_reconcile_rule/__init__.py new file mode 100644 index 00000000..0650744f --- /dev/null +++ b/account_reconcile_rule/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/account_operation_rule/__manifest__.py b/account_reconcile_rule/__manifest__.py similarity index 54% rename from account_operation_rule/__manifest__.py rename to account_reconcile_rule/__manifest__.py index 7a2acdff..3e537ccf 100644 --- a/account_operation_rule/__manifest__.py +++ b/account_reconcile_rule/__manifest__.py @@ -1,11 +1,10 @@ -# -*- coding: utf-8 -*- # Author: Guewen Baconnier -# © 2014-2016 Camptocamp SA +# Copyright 2014-2016 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -{'name': 'Bank Statement Operation Rules', - 'version': '9.0.1.0.0', +{'name': 'Account Reconcile Rules', + 'version': '11.0.1.0.0', 'author': 'Camptocamp, Odoo Community Association (OCA)', 'maintainer': 'Odoo Community Association (OCA)', 'license': 'AGPL-3', @@ -13,12 +12,10 @@ 'depends': [ 'account', ], - 'website': 'http://www.camptocamp.com', + 'website': 'https://github.com/OCA/account-reconcile', 'data': [ - 'view/account_operation_rule.xml', - 'view/account_operation_rule_view.xml', + 'views/account_reconcile_rule.xml', + 'views/account_reconcile_rule_view.xml', 'security/ir.model.access.csv', ], - 'installable': False, - 'auto_install': False, } diff --git a/account_operation_rule/i18n/am.po b/account_reconcile_rule/i18n/am.po similarity index 100% rename from account_operation_rule/i18n/am.po rename to account_reconcile_rule/i18n/am.po diff --git a/account_operation_rule/i18n/ca.po b/account_reconcile_rule/i18n/ca.po similarity index 100% rename from account_operation_rule/i18n/ca.po rename to account_reconcile_rule/i18n/ca.po diff --git a/account_operation_rule/i18n/de.po b/account_reconcile_rule/i18n/de.po similarity index 100% rename from account_operation_rule/i18n/de.po rename to account_reconcile_rule/i18n/de.po diff --git a/account_operation_rule/i18n/el_GR.po b/account_reconcile_rule/i18n/el_GR.po similarity index 100% rename from account_operation_rule/i18n/el_GR.po rename to account_reconcile_rule/i18n/el_GR.po diff --git a/account_operation_rule/i18n/es.po b/account_reconcile_rule/i18n/es.po similarity index 100% rename from account_operation_rule/i18n/es.po rename to account_reconcile_rule/i18n/es.po diff --git a/account_operation_rule/i18n/es_ES.po b/account_reconcile_rule/i18n/es_ES.po similarity index 100% rename from account_operation_rule/i18n/es_ES.po rename to account_reconcile_rule/i18n/es_ES.po diff --git a/account_operation_rule/i18n/fi.po b/account_reconcile_rule/i18n/fi.po similarity index 100% rename from account_operation_rule/i18n/fi.po rename to account_reconcile_rule/i18n/fi.po diff --git a/account_operation_rule/i18n/fr.po b/account_reconcile_rule/i18n/fr.po similarity index 100% rename from account_operation_rule/i18n/fr.po rename to account_reconcile_rule/i18n/fr.po diff --git a/account_operation_rule/i18n/gl.po b/account_reconcile_rule/i18n/gl.po similarity index 100% rename from account_operation_rule/i18n/gl.po rename to account_reconcile_rule/i18n/gl.po diff --git a/account_operation_rule/i18n/hr_HR.po b/account_reconcile_rule/i18n/hr_HR.po similarity index 100% rename from account_operation_rule/i18n/hr_HR.po rename to account_reconcile_rule/i18n/hr_HR.po diff --git a/account_operation_rule/i18n/it.po b/account_reconcile_rule/i18n/it.po similarity index 100% rename from account_operation_rule/i18n/it.po rename to account_reconcile_rule/i18n/it.po diff --git a/account_operation_rule/i18n/pt.po b/account_reconcile_rule/i18n/pt.po similarity index 100% rename from account_operation_rule/i18n/pt.po rename to account_reconcile_rule/i18n/pt.po diff --git a/account_operation_rule/i18n/pt_BR.po b/account_reconcile_rule/i18n/pt_BR.po similarity index 100% rename from account_operation_rule/i18n/pt_BR.po rename to account_reconcile_rule/i18n/pt_BR.po diff --git a/account_operation_rule/i18n/pt_PT.po b/account_reconcile_rule/i18n/pt_PT.po similarity index 100% rename from account_operation_rule/i18n/pt_PT.po rename to account_reconcile_rule/i18n/pt_PT.po diff --git a/account_operation_rule/i18n/sl.po b/account_reconcile_rule/i18n/sl.po similarity index 100% rename from account_operation_rule/i18n/sl.po rename to account_reconcile_rule/i18n/sl.po diff --git a/account_operation_rule/i18n/tr.po b/account_reconcile_rule/i18n/tr.po similarity index 100% rename from account_operation_rule/i18n/tr.po rename to account_reconcile_rule/i18n/tr.po diff --git a/account_operation_rule/model/__init__.py b/account_reconcile_rule/models/__init__.py similarity index 51% rename from account_operation_rule/model/__init__.py rename to account_reconcile_rule/models/__init__.py index 01f3b18d..ff452809 100644 --- a/account_operation_rule/model/__init__.py +++ b/account_reconcile_rule/models/__init__.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- - from . import account_journal -from . import account_operation_rule +from . import account_reconcile_rule from . import account_statement_line diff --git a/account_operation_rule/model/account_journal.py b/account_reconcile_rule/models/account_journal.py similarity index 60% rename from account_operation_rule/model/account_journal.py rename to account_reconcile_rule/models/account_journal.py index 65529b90..f2cd8350 100644 --- a/account_operation_rule/model/account_journal.py +++ b/account_reconcile_rule/models/account_journal.py @@ -1,8 +1,7 @@ -# -*- coding: utf-8 -*- -# © 2016 Cyril Gaudin (Camptocamp) +# Copyright 2016 Cyril Gaudin (Camptocamp) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import api, models +from odoo import api, models class AccountJournal(models.Model): @@ -11,6 +10,6 @@ class AccountJournal(models.Model): @api.multi def open_reconciliation_rules(self): return self.env['ir.actions.act_window'].for_xml_id( - "account_operation_rule", - "action_account_operation_rule" + "account_reconcile_rule", + "action_account_reconcile_rule" ) diff --git a/account_operation_rule/model/account_operation_rule.py b/account_reconcile_rule/models/account_reconcile_rule.py similarity index 81% rename from account_operation_rule/model/account_operation_rule.py rename to account_reconcile_rule/models/account_reconcile_rule.py index 4f80deff..78d45a5e 100644 --- a/account_operation_rule/model/account_operation_rule.py +++ b/account_reconcile_rule/models/account_reconcile_rule.py @@ -1,14 +1,13 @@ -# -*- coding: utf-8 -*- # Author: Guewen Baconnier -# © 2014-2016 Camptocamp SA +# Copyright 2014-2016 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import models, fields, api -from openerp.addons import decimal_precision as dp +from odoo import models, fields, api +from odoo.addons import decimal_precision as dp -class AccountOperationRule(models.Model): - _name = 'account.operation.rule' +class AccountReconcileRule(models.Model): + _name = 'account.reconcile.rule' _order = 'sequence ASC, id ASC' @@ -20,8 +19,9 @@ class AccountOperationRule(models.Model): default='rounding', required=True, ) - operations = fields.Many2many( - comodel_name='account.operation.template', + reconcile_model_ids = fields.Many2many( + comodel_name='account.reconcile.model', + string='Reconciliation models', ) amount_min = fields.Float( string='Min. Amount', @@ -31,7 +31,7 @@ class AccountOperationRule(models.Model): string='Max. Amount', digits=dp.get_precision('Account'), ) - currencies = fields.Many2many( + currency_ids = fields.Many2many( comodel_name='res.currency', string='Currencies', help="For 'Currencies' rules, you can choose for which currencies " @@ -44,7 +44,7 @@ class AccountOperationRule(models.Model): @staticmethod def _between_with_bounds(low, value, high, currency): - """ Equivalent to a three way comparison: ``min <= value <= high`` + """Equivalent to a three way comparison: ``min <= value <= high`` The comparisons are done with the currency to use the correct precision. @@ -57,10 +57,8 @@ class AccountOperationRule(models.Model): @api.multi def _balance_in_range(self, balance, currency): - amount_min = self.amount_min - amount_max = self.amount_max - return self._between_with_bounds(amount_min, balance, - amount_max, currency) + return self._between_with_bounds(self.amount_min, balance, + self.amount_max, currency) @api.model def _is_multicurrency(self, statement_line): @@ -77,7 +75,7 @@ class AccountOperationRule(models.Model): @api.multi def _is_valid_multicurrency(self, statement_line, move_lines, balance): - """ Check if the multi-currency rule can be applied + """Check if the multi-currency rule can be applied. The rule is applied if and only if: * The currency is not company's one @@ -88,7 +86,7 @@ class AccountOperationRule(models.Model): if not self._is_multicurrency(statement_line): return False currency = statement_line.currency_for_rules() - if currency not in self.currencies: + if currency not in self.currency_ids: return False amount_currency = statement_line.amount_currency for move_line in move_lines: @@ -105,8 +103,7 @@ class AccountOperationRule(models.Model): @api.multi def is_valid(self, statement_line, move_lines, balance): - """ Returns True if a rule applies to a group of statement_line + - move lines. + """Check if a rule applies to a group of statement_line + move lines. This is the public method where the rule is evaluated whatever its type is. When a rule returns True, it means that it is a @@ -130,8 +127,7 @@ class AccountOperationRule(models.Model): @api.model def find_first_rule(self, statement_line, move_lines): - """ Find the rules that apply to a statement line and - a selection of move lines. + """Find rules to apply to given statement line and move lines. :param statement_line: the line to reconcile :param move_lines: the selected move lines for reconciliation @@ -152,17 +148,18 @@ class AccountOperationRule(models.Model): return self.browse() @api.model - @api.returns('account.operation.template') - def operations_for_reconciliation(self, statement_line_id, move_line_ids): - """ Find the rule for the current reconciliation and returns the - ``account.operation.template`` of the found rule. + @api.returns('account.reconcile.model') + def models_for_reconciliation(self, statement_line_id, move_line_ids): + """Find the reconcile models for the for given statement and move lines. + + Look for the first reconciliation rule to apply and return its + reconciliation models. Called from the javascript reconciliation view. - """ line_obj = self.env['account.bank.statement.line'] move_line_obj = self.env['account.move.line'] statement_line = line_obj.browse(statement_line_id) move_lines = move_line_obj.browse(move_line_ids) rules = self.find_first_rule(statement_line, move_lines) - return rules.operations + return rules.reconcile_model_ids diff --git a/account_operation_rule/model/account_statement_line.py b/account_reconcile_rule/models/account_statement_line.py similarity index 78% rename from account_operation_rule/model/account_statement_line.py rename to account_reconcile_rule/models/account_statement_line.py index 4b15caa8..56d1dada 100644 --- a/account_operation_rule/model/account_statement_line.py +++ b/account_reconcile_rule/models/account_statement_line.py @@ -1,10 +1,9 @@ -# -*- coding: utf-8 -*- # Author: Guewen Baconnier -# © 2014-2016 Camptocamp SA +# Copyright 2014-2016 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import models, api +from odoo import models, api class AccountBankStatementLine(models.Model): diff --git a/account_reconcile_rule/security/ir.model.access.csv b/account_reconcile_rule/security/ir.model.access.csv new file mode 100644 index 00000000..007b87bb --- /dev/null +++ b/account_reconcile_rule/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_account_reconcile_rule,account.statement.reconcile.rule,model_account_reconcile_rule,account.group_account_user,1,1,1,1 diff --git a/account_reconcile_rule/static/src/js/account_widgets.js b/account_reconcile_rule/static/src/js/account_widgets.js new file mode 100644 index 00000000..cd0282f4 --- /dev/null +++ b/account_reconcile_rule/static/src/js/account_widgets.js @@ -0,0 +1,50 @@ +odoo.define('account_reconcile_rule', function (require) { + "use strict"; + + var core = require('web.core'); + var reconciliation_renderer = require('account.ReconciliationRenderer'); + + /** + * Automatically apply reconciliation models according to the + * reconciliation rules matching the current statement line and move + * lines being reconciled. + */ + reconciliation_renderer.LineRenderer.include({ + /** + * Get the reconciliation models to apply through RPC call and + * create the write off entries. + */ + reconciliation_rule_models: function() { + var self = this; + // Get the statement line + var line = this.model.getLine(this.handle) + // Call the models_for_reconciliation through RPC + this._rpc({ + model: 'account.reconcile.rule', + method: 'models_for_reconciliation', + args: [ + line.st_line.id, + _.pluck(line.reconciliation_proposition, 'id') + ], + }).done(function(rule_models) { + // Loop on each models and create the corresponding write off + // entries + _.each(rule_models, function (rule_model_id) { + self.trigger_up('quick_create_proposition', + {'data': rule_model_id}); + }) + }) + }, + /* + * Add the write off entries after the the line renderer is ready + */ + start: function () { + var self = this; + var deferred = this._super(); + if (deferred) { + deferred.done(this.reconciliation_rule_models()); + } + return deferred; + }, + }); +}); diff --git a/account_operation_rule/tests/__init__.py b/account_reconcile_rule/tests/__init__.py similarity index 78% rename from account_operation_rule/tests/__init__.py rename to account_reconcile_rule/tests/__init__.py index 65ba9f17..996cc068 100644 --- a/account_operation_rule/tests/__init__.py +++ b/account_reconcile_rule/tests/__init__.py @@ -1,6 +1,5 @@ -# -*- coding: utf-8 -*- # Author: Guewen Baconnier -# © 2014-2016 Camptocamp SA +# Copyright 2014-2016 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import test_journal diff --git a/account_operation_rule/tests/common.py b/account_reconcile_rule/tests/common.py similarity index 77% rename from account_operation_rule/tests/common.py rename to account_reconcile_rule/tests/common.py index 8cbe1022..2e852a9c 100644 --- a/account_operation_rule/tests/common.py +++ b/account_reconcile_rule/tests/common.py @@ -1,45 +1,45 @@ -# -*- coding: utf-8 -*- # Author: Guewen Baconnier -# © 2014-2016 Camptocamp SA +# Copyright 2014-2016 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp.tests.common import TransactionCase +from odoo.tests.common import SavepointCase -class AccountOperationTestCase(TransactionCase): +class AccountReconciliationModelTestCase(SavepointCase): - def setUp(self): - super(AccountOperationTestCase, self).setUp() - self.cash_journal = self.env['account.journal'].create({ + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.reconcile_model_obj = cls.env['account.reconcile.model'] + cls.rule_obj = cls.env['account.reconcile.rule'] + cls.journal_obj = cls.env['account.journal'] + cls.account_type_obj = cls.env['account.account.type'] + cls.account_obj = cls.env['account.account'] + cls.cash_journal = cls.journal_obj.create({ 'name': 'Unittest Cash journal', 'code': 'CASH', 'type': 'cash', }) - - self.sale_journal = self.env['account.journal'].create({ + cls.sale_journal = cls.journal_obj.create({ 'name': 'Unittest Customer Invoices', 'code': 'INV', 'type': 'sale', }) - - receivable_type = self.env['account.account.type'].create({ + receivable_type = cls.account_type_obj.create({ 'name': 'Receivable', 'type': 'receivable' }) - - self.account_receivable = self.env['account.account'].create({ + cls.account_receivable = cls.account_obj.create({ 'name': 'Unittest Account Receivable', 'user_type_id': receivable_type.id, 'code': 'TEST101200', 'reconcile': True, }) - - income_type = self.env['account.account.type'].create({ + income_type = cls.account_type_obj.create({ 'name': 'Unittest Income', 'type': 'other' }) - - self.account_sale = self.env['account.account'].create({ + cls.account_sale = cls.account_obj.create({ 'name': 'Unittest Account Sale', 'user_type_id': income_type.id, 'code': 'TEST200000', diff --git a/account_operation_rule/tests/test_journal.py b/account_reconcile_rule/tests/test_journal.py similarity index 66% rename from account_operation_rule/tests/test_journal.py rename to account_reconcile_rule/tests/test_journal.py index b4d93da0..75b506c5 100644 --- a/account_operation_rule/tests/test_journal.py +++ b/account_reconcile_rule/tests/test_journal.py @@ -1,8 +1,7 @@ -# -*- coding: utf-8 -*- -# © 2016 Cyril Gaudin (Camptocamp) +# Copyright 2016 Cyril Gaudin (Camptocamp) # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp.tests.common import TransactionCase +from odoo.tests.common import TransactionCase class TestJournal(TransactionCase): @@ -11,5 +10,5 @@ class TestJournal(TransactionCase): # Just test that method returned the good view result = self.env['account.journal'].open_reconciliation_rules() - self.assertEqual('account.operation.rule', result['res_model']) + self.assertEqual('account.reconcile.rule', result['res_model']) self.assertEqual('form', result['view_type']) diff --git a/account_operation_rule/tests/test_rule_currency.py b/account_reconcile_rule/tests/test_rule_currency.py similarity index 65% rename from account_operation_rule/tests/test_rule_currency.py rename to account_reconcile_rule/tests/test_rule_currency.py index 7f3226ae..bb82165c 100644 --- a/account_operation_rule/tests/test_rule_currency.py +++ b/account_reconcile_rule/tests/test_rule_currency.py @@ -1,76 +1,78 @@ -# -*- coding: utf-8 -*- # Author: Guewen Baconnier -# © 2014-2016 Camptocamp SA +# Copyright 2014-2016 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from .common import AccountOperationTestCase +from .common import AccountReconciliationModelTestCase -class TestRuleCurrency(AccountOperationTestCase): +class TestRuleCurrency(AccountReconciliationModelTestCase): - def setUp(self): - super(TestRuleCurrency, self).setUp() - self.operation_obj = self.env['account.operation.template'] - self.rule_obj = self.env['account.operation.rule'] - self.aed = self.browse_ref('base.AED') - self.aed.active = True - self.afn = self.browse_ref('base.AFN') - self.afn.active = True - self.all = self.browse_ref('base.ALL') - self.all.active = True - self.amd = self.browse_ref('base.AMD') - self.amd.active = True - self.aoa = self.browse_ref('base.AOA') - self.aoa.active = True + @classmethod + def setUpClass(cls): + super().setUpClass() - self.operation_currency_1 = self.operation_obj.create({ + cls.aed = cls.env.ref('base.AED') + cls.aed.active = True + cls.afn = cls.env.ref('base.AFN') + cls.afn.active = True + cls.all = cls.env.ref('base.ALL') + cls.all.active = True + cls.amd = cls.env.ref('base.AMD') + cls.amd.active = True + cls.aoa = cls.env.ref('base.AOA') + cls.aoa.active = True + + cls.reconcile_model_currency_1 = cls.reconcile_model_obj.create({ 'name': 'Currency AED, AFR, ALL -1.0 to 0.0', 'label': 'Currency', - 'account_id': self.account_receivable.id, + 'account_id': cls.account_receivable.id, 'amount_type': 'percentage', 'amount': 100.0, }) - self.rule_currency_1 = self.rule_obj.create({ + cls.rule_currency_1 = cls.rule_obj.create({ 'name': 'Currency AED, AFR, ALL -1.0 to 0.0', 'rule_type': 'currency', - 'operations': [(6, 0, (self.operation_currency_1.id, ))], + 'reconcile_model_ids': [ + (6, 0, (cls.reconcile_model_currency_1.id,))], 'amount_min': -1.0, 'amount_max': 0, 'sequence': 1, - 'currencies': [(6, 0, [self.aed.id, self.afn.id, self.all.id])], + 'currency_ids': [(6, 0, [cls.aed.id, cls.afn.id, cls.all.id])], }) - self.operation_currency_2 = self.operation_obj.create({ + cls.reconcile_model_currency_2 = cls.reconcile_model_obj.create({ 'name': 'Currency AED, AFR, ALL -2.0 to -1.0', 'label': 'Currency', 'amount_type': 'percentage', 'amount': 100.0, }) - self.rule_currency_2 = self.rule_obj.create({ + cls.rule_currency_2 = cls.rule_obj.create({ 'name': 'Currency AED, AFR, ALL -2.0 to 1.0', 'rule_type': 'currency', - 'operations': [(6, 0, (self.operation_currency_2.id, ))], + 'reconcile_model_ids': [ + (6, 0, (cls.reconcile_model_currency_2.id, ))], 'amount_min': -2.0, 'amount_max': -1.0, 'sequence': 2, - 'currencies': [(6, 0, [self.aed.id, self.afn.id, self.all.id])], + 'currency_ids': [(6, 0, [cls.aed.id, cls.afn.id, cls.all.id])], }) - self.operation_currency_3 = self.operation_obj.create({ + cls.reconcile_model_currency_3 = cls.reconcile_model_obj.create({ 'name': 'Currency AMD, AOA -2.0 to 0.0', 'label': 'Currency', 'amount_type': 'percentage', 'amount': 100.0, }) - self.rule_currency_3 = self.rule_obj.create({ + cls.rule_currency_3 = cls.rule_obj.create({ 'name': 'Currency AMD, AOA -2.0 to 0.0', 'rule_type': 'currency', - 'operations': [(6, 0, (self.operation_currency_3.id, ))], + 'reconcile_model_ids': [ + (6, 0, (cls.reconcile_model_currency_3.id, ))], 'amount_min': -2, 'amount_max': 0, 'sequence': 2, - 'currencies': [(6, 0, [self.amd.id, self.aoa.id])], + 'currency_ids': [(6, 0, [cls.amd.id, cls.aoa.id])], }) def test_no_currency_match(self): @@ -80,15 +82,15 @@ class TestRuleCurrency(AccountOperationTestCase): -0.5, statement_line_currency=sek, move_line_currency=sek) - ops = self.rule_obj.operations_for_reconciliation(statement_line.id, - move_line.ids) + ops = self.rule_obj.models_for_reconciliation(statement_line.id, + move_line.ids) self.assertFalse(ops) def test_rounding_lines(self): """No Currencies rules on lines with company currency""" statement_line, move_line = self.prepare_statement(-0.5) - ops = self.rule_obj.operations_for_reconciliation(statement_line.id, - move_line.ids) + ops = self.rule_obj.models_for_reconciliation(statement_line.id, + move_line.ids) self.assertFalse(ops) def test_currency_rule_1(self): @@ -99,7 +101,7 @@ class TestRuleCurrency(AccountOperationTestCase): move_line_currency=self.aed, amount_currency_difference=0) rule = self.rule_obj.find_first_rule(statement_line, [move_line]) - self.assertEquals(rule, self.rule_currency_1) + self.assertEqual(rule, self.rule_currency_1) def test_currency_rule_2(self): """Rule 2 is found with -2 AED""" @@ -109,7 +111,7 @@ class TestRuleCurrency(AccountOperationTestCase): move_line_currency=self.aed, amount_currency_difference=0) rule = self.rule_obj.find_first_rule(statement_line, [move_line]) - self.assertEquals(rule, self.rule_currency_2) + self.assertEqual(rule, self.rule_currency_2) def test_currency_rule_3(self): """Rule 3 is found with -2 AOA""" @@ -119,7 +121,7 @@ class TestRuleCurrency(AccountOperationTestCase): move_line_currency=self.aoa, amount_currency_difference=0) rule = self.rule_obj.find_first_rule(statement_line, [move_line]) - self.assertEquals(rule, self.rule_currency_3) + self.assertEqual(rule, self.rule_currency_3) def test_currency_rule_not_in_bounds(self): """No rule is found with -3 AOA""" @@ -149,4 +151,4 @@ class TestRuleCurrency(AccountOperationTestCase): move_line_currency=self.aed, amount_currency_difference=-0.001) rule = self.rule_obj.find_first_rule(statement_line, [move_line]) - self.assertEquals(rule, self.rule_currency_1) + self.assertEqual(rule, self.rule_currency_1) diff --git a/account_operation_rule/tests/test_rule_rounding.py b/account_reconcile_rule/tests/test_rule_rounding.py similarity index 70% rename from account_operation_rule/tests/test_rule_rounding.py rename to account_reconcile_rule/tests/test_rule_rounding.py index 20290eaa..b8d44942 100644 --- a/account_operation_rule/tests/test_rule_rounding.py +++ b/account_reconcile_rule/tests/test_rule_rounding.py @@ -1,59 +1,60 @@ -# -*- coding: utf-8 -*- # Author: Guewen Baconnier -# © 2014-2016 Camptocamp SA +# Copyright 2014-2016 Camptocamp SA # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from .common import AccountOperationTestCase +from .common import AccountReconciliationModelTestCase -class TestRuleRounding(AccountOperationTestCase): +class TestRuleRounding(AccountReconciliationModelTestCase): - def setUp(self): - super(TestRuleRounding, self).setUp() - self.operation_obj = self.env['account.operation.template'] - self.rule_obj = self.env['account.operation.rule'] - self.operation_round_1 = self.operation_obj.create({ + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.reconcile_model_round_1 = cls.reconcile_model_obj.create({ 'name': 'Rounding -1.0 to 0.0', 'label': 'Rounding', 'amount_type': 'percentage', 'amount': 100.0, }) - self.rule_round_1 = self.rule_obj.create({ + cls.rule_round_1 = cls.rule_obj.create({ 'name': 'Rounding -1.0 to 0.0', 'rule_type': 'rounding', - 'operations': [(6, 0, (self.operation_round_1.id, ))], + 'reconcile_model_ids': [ + (6, 0, (cls.reconcile_model_round_1.id, ))], 'amount_min': -1.0, 'amount_max': 0, 'sequence': 1, }) - self.operation_round_2 = self.operation_obj.create({ + cls.reconcile_model_round_2 = cls.reconcile_model_obj.create({ 'name': 'Rounding -2.0 to -1.0', 'label': 'Rounding', 'amount_type': 'percentage', 'amount': 100.0, }) - self.rule_round_2 = self.rule_obj.create({ + cls.rule_round_2 = cls.rule_obj.create({ 'name': 'Rounding -1.0 to 0.0', 'rule_type': 'rounding', - 'operations': [(6, 0, (self.operation_round_2.id, ))], + 'reconcile_model_ids': [ + (6, 0, (cls.reconcile_model_round_2.id, ))], 'amount_min': -2.0, 'amount_max': -1.0, 'sequence': 2, }) - self.operation_round_3 = self.operation_obj.create({ + cls.reconcile_model_round_3 = cls.reconcile_model_obj.create({ 'name': 'Rounding 0.0 to 2.0', 'label': 'Rounding', 'amount_type': 'percentage', 'amount': 100.0, }) - self.rule_round_3 = self.rule_obj.create({ + cls.rule_round_3 = cls.rule_obj.create({ 'name': 'Rounding 0.0 to 2.0', 'rule_type': 'rounding', - 'operations': [(6, 0, (self.operation_round_3.id, ))], + 'reconcile_model_ids': [ + (6, 0, (cls.reconcile_model_round_3.id, ))], 'amount_min': 0, 'amount_max': 2, 'sequence': 2, @@ -63,43 +64,43 @@ class TestRuleRounding(AccountOperationTestCase): """-0.5 => rule round 1""" statement_line, move_line = self.prepare_statement(-0.5) rule = self.rule_obj.find_first_rule(statement_line, [move_line]) - self.assertEquals(rule, self.rule_round_1) + self.assertEqual(rule, self.rule_round_1) def test_rule_round_1_limit(self): """-1 => rule round 1""" statement_line, move_line = self.prepare_statement(-1) rule = self.rule_obj.find_first_rule(statement_line, [move_line]) - self.assertEquals(rule, self.rule_round_1) + self.assertEqual(rule, self.rule_round_1) def test_rule_round_1_near_limit(self): """-1.0001 => rule round 1""" statement_line, move_line = self.prepare_statement(-1.0001) rule = self.rule_obj.find_first_rule(statement_line, [move_line]) - self.assertEquals(rule, self.rule_round_1) + self.assertEqual(rule, self.rule_round_1) def test_rule_round_2(self): """-1.01 => rule round 2""" statement_line, move_line = self.prepare_statement(-1.01) rule = self.rule_obj.find_first_rule(statement_line, [move_line]) - self.assertEquals(rule, self.rule_round_2) + self.assertEqual(rule, self.rule_round_2) def test_rule_round_2_limit(self): """-2 => rule round 2""" statement_line, move_line = self.prepare_statement(-2) rule = self.rule_obj.find_first_rule(statement_line, [move_line]) - self.assertEquals(rule, self.rule_round_2) + self.assertEqual(rule, self.rule_round_2) def test_rule_round_3(self): """+1.5 => rule round 3""" statement_line, move_line = self.prepare_statement(1.5) rule = self.rule_obj.find_first_rule(statement_line, [move_line]) - self.assertEquals(rule, self.rule_round_3) + self.assertEqual(rule, self.rule_round_3) def test_rule_round_3_limit(self): """+2 => rule round 3""" statement_line, move_line = self.prepare_statement(2) rule = self.rule_obj.find_first_rule(statement_line, [move_line]) - self.assertEquals(rule, self.rule_round_3) + self.assertEqual(rule, self.rule_round_3) def test_rule_no_round_below(self): """-3 => no rule""" @@ -126,20 +127,20 @@ class TestRuleRounding(AccountOperationTestCase): self.assertFalse(rule) def test_operations(self): - """test operations_for_reconciliation()""" + """test models_for_reconciliation()""" statement_line, move_line = self.prepare_statement(-0.5) - ops = self.rule_obj.operations_for_reconciliation(statement_line.id, - move_line.ids) - self.assertEquals(ops, self.operation_round_1) + ops = self.rule_obj.models_for_reconciliation(statement_line.id, + move_line.ids) + self.assertEqual(ops, self.reconcile_model_round_1) def test_multicurrency_lines(self): """No rounding rules on multi-currency lines""" - currency = self.browse_ref('base.AED') + currency = self.env.ref('base.AED') statement_line, move_line = self.prepare_statement( -0.5, statement_line_currency=currency, move_line_currency=currency ) - ops = self.rule_obj.operations_for_reconciliation(statement_line.id, - move_line.ids) + ops = self.rule_obj.models_for_reconciliation(statement_line.id, + move_line.ids) self.assertFalse(ops) diff --git a/account_reconcile_rule/views/account_reconcile_rule.xml b/account_reconcile_rule/views/account_reconcile_rule.xml new file mode 100644 index 00000000..7873ff9e --- /dev/null +++ b/account_reconcile_rule/views/account_reconcile_rule.xml @@ -0,0 +1,8 @@ + + + + diff --git a/account_operation_rule/view/account_operation_rule_view.xml b/account_reconcile_rule/views/account_reconcile_rule_view.xml similarity index 67% rename from account_operation_rule/view/account_operation_rule_view.xml rename to account_reconcile_rule/views/account_reconcile_rule_view.xml index f749ce96..2f51f410 100644 --- a/account_operation_rule/view/account_operation_rule_view.xml +++ b/account_reconcile_rule/views/account_reconcile_rule_view.xml @@ -1,9 +1,9 @@ - - account.operation.rule.form - account.operation.rule + + account.reconcile.rule.form + account.reconcile.rule
@@ -23,15 +23,15 @@ And -
@@ -39,9 +39,9 @@
- - account.operation.rule.tree - account.operation.rule + + account.reconcile.rule.tree + account.reconcile.rule @@ -49,33 +49,33 @@ - + - - account.operation.rule.search - account.operation.rule + + account.reconcile.rule.search + account.reconcile.rule - + - + Reconciliation Rules - account.operation.rule + account.reconcile.rule form tree,form - +

Click to create a reconciliation rule. @@ -92,7 +92,7 @@ account.journal - +

Reconciliation Rules From f046d9612137981b64bbc31dc8c51ec5d5fe4cb8 Mon Sep 17 00:00:00 2001 From: oca-travis Date: Tue, 23 Jul 2019 14:11:40 +0000 Subject: [PATCH 7/9] [UPD] Update account_reconcile_rule.pot --- .../i18n/account_reconcile_rule.pot | 174 ++++++++++++++++++ account_reconcile_rule/i18n/am.po | 148 +++++++-------- account_reconcile_rule/i18n/ca.po | 148 +++++++-------- account_reconcile_rule/i18n/de.po | 148 +++++++-------- account_reconcile_rule/i18n/el_GR.po | 151 +++++++-------- account_reconcile_rule/i18n/es.po | 148 +++++++-------- account_reconcile_rule/i18n/es_ES.po | 151 +++++++-------- account_reconcile_rule/i18n/fi.po | 148 +++++++-------- account_reconcile_rule/i18n/fr.po | 152 +++++++-------- account_reconcile_rule/i18n/gl.po | 148 +++++++-------- account_reconcile_rule/i18n/hr_HR.po | 154 ++++++++-------- account_reconcile_rule/i18n/it.po | 168 +++++++++-------- account_reconcile_rule/i18n/pt.po | 148 +++++++-------- account_reconcile_rule/i18n/pt_BR.po | 164 +++++++++-------- account_reconcile_rule/i18n/pt_PT.po | 151 +++++++-------- account_reconcile_rule/i18n/sl.po | 155 ++++++++-------- account_reconcile_rule/i18n/tr.po | 148 +++++++-------- 17 files changed, 1410 insertions(+), 1194 deletions(-) create mode 100644 account_reconcile_rule/i18n/account_reconcile_rule.pot diff --git a/account_reconcile_rule/i18n/account_reconcile_rule.pot b/account_reconcile_rule/i18n/account_reconcile_rule.pot new file mode 100644 index 00000000..c07a7acb --- /dev/null +++ b/account_reconcile_rule/i18n/account_reconcile_rule.pot @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_reconcile_rule +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \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_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "And" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "And the currency is one of" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid +msgid "Created by" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date +msgid "Created on" +msgstr "" + +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids +msgid "Currencies" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name +msgid "Display Name" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids +msgid "For 'Currencies' rules, you can choose for which currencies the rule will be applicable." +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id +msgid "ID" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence +msgid "If several rules match, the first one is used." +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max +msgid "Max. Amount" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min +msgid "Min. Amount" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name +msgid "Name" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Result" +msgstr "" + +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +msgid "Roundings" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Rule" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence +msgid "Sequence" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Statement Operation Rule" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree +msgid "Statement Operation Rules" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule +msgid "Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type +msgid "Type" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "When the balance is between" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" +msgstr "" + diff --git a/account_reconcile_rule/i18n/am.po b/account_reconcile_rule/i18n/am.po index 15fb3f47..03089ffa 100644 --- a/account_reconcile_rule/i18n/am.po +++ b/account_reconcile_rule/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,170 +12,170 @@ msgstr "" "PO-Revision-Date: 2016-09-12 11:12+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Creado por" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Creado en" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "Última actualización por" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Última actualización en" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" diff --git a/account_reconcile_rule/i18n/ca.po b/account_reconcile_rule/i18n/ca.po index 55366932..2dcc08ce 100644 --- a/account_reconcile_rule/i18n/ca.po +++ b/account_reconcile_rule/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,170 +12,170 @@ msgstr "" "PO-Revision-Date: 2016-09-12 11:12+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Creat per" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Creat el" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "Darrera Actualització per" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Darrera Actualització el" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" diff --git a/account_reconcile_rule/i18n/de.po b/account_reconcile_rule/i18n/de.po index 16cddedf..aa70ed4b 100644 --- a/account_reconcile_rule/i18n/de.po +++ b/account_reconcile_rule/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,170 +12,170 @@ msgstr "" "PO-Revision-Date: 2016-06-30 02:44+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "Kontoauszugzeile" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Angelegt durch" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Angelegt am" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "Letzte Aktualisierung durch" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Letzte Aktualisierung am" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "Bezeichnung" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "Reihenfolge" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "Art" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" diff --git a/account_reconcile_rule/i18n/el_GR.po b/account_reconcile_rule/i18n/el_GR.po index 613f58c5..d83095eb 100644 --- a/account_reconcile_rule/i18n/el_GR.po +++ b/account_reconcile_rule/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,171 +11,172 @@ msgstr "" "POT-Creation-Date: 2016-09-12 11:12+0000\n" "PO-Revision-Date: 2016-09-12 11:12+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Δημιουργήθηκε από " -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Δημιουργήθηκε στις" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "Κωδικός" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "Τελευταία ενημέρωση από" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Τελευταία ενημέρωση στις" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" diff --git a/account_reconcile_rule/i18n/es.po b/account_reconcile_rule/i18n/es.po index 2a0f5231..1917f326 100644 --- a/account_reconcile_rule/i18n/es.po +++ b/account_reconcile_rule/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,170 +12,170 @@ msgstr "" "PO-Revision-Date: 2016-09-12 11:12+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Creado en" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "Nombre mostrado" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "Última modificación en" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Última actualización en" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "Nombre" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "Secuencia" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "Tipo" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" diff --git a/account_reconcile_rule/i18n/es_ES.po b/account_reconcile_rule/i18n/es_ES.po index 7823c766..56f3cd69 100644 --- a/account_reconcile_rule/i18n/es_ES.po +++ b/account_reconcile_rule/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,171 +11,172 @@ msgstr "" "POT-Creation-Date: 2016-09-12 11:12+0000\n" "PO-Revision-Date: 2016-09-12 11:12+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Creado por" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Creado en" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "Última actualización por" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Última actualización en" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" diff --git a/account_reconcile_rule/i18n/fi.po b/account_reconcile_rule/i18n/fi.po index 067aeea6..86f44c95 100644 --- a/account_reconcile_rule/i18n/fi.po +++ b/account_reconcile_rule/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 # Jarmo Kortetjärvi , 2016 @@ -13,170 +13,170 @@ msgstr "" "PO-Revision-Date: 2016-09-12 11:12+0000\n" "Last-Translator: Jarmo Kortetjärvi , 2016\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Luonut" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Luotu" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "Nimi" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "Viimeksi muokattu" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "Viimeksi päivittänyt" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Viimeksi päivitetty" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" diff --git a/account_reconcile_rule/i18n/fr.po b/account_reconcile_rule/i18n/fr.po index 2e66cd73..b989ebd7 100644 --- a/account_reconcile_rule/i18n/fr.po +++ b/account_reconcile_rule/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,172 +12,176 @@ msgstr "" "PO-Revision-Date: 2016-09-12 11:12+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "Et" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "Et la devise est une des suivantes" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "Ligne de relevé bancaire" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Créée par" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Créée le" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "Devises" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "Nom à afficher" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" "Pour les règles 'Devises', vous pouvez sélectionner les devises pour " "lesquelles la règle s'applique." -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "Si plusieurs règles correspondent, la première est utilisée." -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "Dernière modification le" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "Dernière modification par" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Modifié le" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "Montant max." -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "Montant min." -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "Nom" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "Opérations" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "Résultat" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "Arrondis" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "Règle" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "Séquence" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "Règle d'opération de relevé" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "Règles d'opération de relevé" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +#, fuzzy +msgid "Then the following reconciliation models will be applied:" msgstr "Alors l'opération suivant sera appliquée :" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "Type" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "Quand la balance est entre" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" + +#~ msgid "Operations" +#~ msgstr "Opérations" diff --git a/account_reconcile_rule/i18n/gl.po b/account_reconcile_rule/i18n/gl.po index 94b665b2..b5fc06e3 100644 --- a/account_reconcile_rule/i18n/gl.po +++ b/account_reconcile_rule/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,170 +12,170 @@ msgstr "" "PO-Revision-Date: 2016-09-12 11:12+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Creado por" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Creado en" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "ültima actualización por" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Última actualización en" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" diff --git a/account_reconcile_rule/i18n/hr_HR.po b/account_reconcile_rule/i18n/hr_HR.po index 3913b903..9c75c5c5 100644 --- a/account_reconcile_rule/i18n/hr_HR.po +++ b/account_reconcile_rule/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # Bole , 2016 msgid "" @@ -11,171 +11,173 @@ msgstr "" "POT-Creation-Date: 2016-06-30 02:44+0000\n" "PO-Revision-Date: 2016-06-30 02:44+0000\n" "Last-Translator: Bole , 2016\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"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" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "Stavka izvoda" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Kreirao" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Kreirano" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "Naziv" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "Dnevnik" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "Zadnja izmjena" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "Naziv" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "Tip" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" diff --git a/account_reconcile_rule/i18n/it.po b/account_reconcile_rule/i18n/it.po index 3c1ffd61..081e4bf3 100644 --- a/account_reconcile_rule/i18n/it.po +++ b/account_reconcile_rule/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: msgid "" msgstr "" @@ -10,152 +10,172 @@ msgstr "" "POT-Creation-Date: 2016-04-20 02:39+0000\n" "PO-Revision-Date: 2016-04-19 11:45+0000\n" "Last-Translator: <>\n" -"Language-Team: Italian (http://www.transifex.com/oca/OCA-bank-statement-reconcile-8-0/language/it/)\n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-bank-statement-" +"reconcile-8-0/language/it/)\n" +"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_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule -msgid "" -"

\n" -" Click to create a statement operation rule.\n" -"

\n" -" Those can be used to automatically create a move line when reconciling\n" -" your bank statements.\n" -"

\n" -" " -msgstr "" - -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "Linea estratto conto" -#. module: account_operation_rule -#: field:account.operation.rule,create_uid:0 +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule +msgid "Click to create a reconciliation rule." +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "" -#. module: account_operation_rule -#: field:account.operation.rule,create_date:0 +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "" -#. module: account_operation_rule -#: field:account.operation.rule,currencies:0 -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -msgid "Dunning Fees" +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name +msgid "Display Name" msgstr "" -#. module: account_operation_rule -#: help:account.operation.rule,currencies:0 +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: field:account.operation.rule,id:0 +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "" -#. module: account_operation_rule -#: help:account.operation.rule,sequence:0 +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: field:account.operation.rule,write_uid:0 +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "" -#. module: account_operation_rule -#: field:account.operation.rule,write_date:0 +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "" -#. module: account_operation_rule -#: field:account.operation.rule,amount_max:0 +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: field:account.operation.rule,amount_min:0 +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: field:account.operation.rule,name:0 +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "" -#. module: account_operation_rule -#: field:account.operation.rule,operations:0 -msgid "Operations" +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view +msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: field:account.operation.rule,sequence:0 +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "" -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_search -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_tree -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.menu,name:account_operation_rule.menu_action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: field:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule +msgid "" +"Those can be used to automatically create a move line when reconciling\n" +" your bank statements." +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "" -#. module: account_operation_rule -#: view:account.operation.rule:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" + +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" +msgstr "" diff --git a/account_reconcile_rule/i18n/pt.po b/account_reconcile_rule/i18n/pt.po index d7a9abae..0d91ebc0 100644 --- a/account_reconcile_rule/i18n/pt.po +++ b/account_reconcile_rule/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,170 +12,170 @@ msgstr "" "PO-Revision-Date: 2016-09-12 11:12+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Criado por" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Criado em" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "Atualizado pela última vez por" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Atualizado pela última vez em" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" diff --git a/account_reconcile_rule/i18n/pt_BR.po b/account_reconcile_rule/i18n/pt_BR.po index bf4a2a92..8c9199ea 100644 --- a/account_reconcile_rule/i18n/pt_BR.po +++ b/account_reconcile_rule/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # Claudio Araujo Santos , 2016 msgid "" @@ -10,176 +10,184 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2016-07-08 02:45+0000\n" "PO-Revision-Date: 2016-07-08 02:45+0000\n" -"Last-Translator: Claudio Araujo Santos , 2016\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Last-Translator: Claudio Araujo Santos , " +"2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "E" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "E a moeda é um dos" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "Linha extrato bancário" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "Clique para criar uma regra de reconciliação." -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Criado por" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Criado em" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "Moedas" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "Mostrar Nome" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" "Para regras 'Moeda', você pode escolher para quais moedas a regra será " "aplicável." -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "Se houver várias regras, a primeiro é usada." -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "Diário" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "Modificada pela última vez" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "Última atualização por" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Atualizado em" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "Max. Quantidade" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "Min. Quantidade" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "Nome" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "Operações" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "Regras de reconciliação" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +#, fuzzy +msgid "Reconciliation models" +msgstr "Regras de reconciliação" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "Resultado" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "Arredondamentos" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "Regra" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "Seqüência" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "Regra Operação declaração" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "Regras Declaração de Operação" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +#, fuzzy +msgid "Then the following reconciliation models will be applied:" msgstr "Em seguida, as seguintes operações serão aplicados:" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -"Essa pode ser usada para criar automaticamente uma linha de movimento quando" -" conciliar seus extratos bancários." +"Essa pode ser usada para criar automaticamente uma linha de movimento quando " +"conciliar seus extratos bancários." -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "Tipo" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "Quando o saldo é entre" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +#, fuzzy +msgid "account.reconcile.rule" msgstr "account.operation.rule" + +#~ msgid "Operations" +#~ msgstr "Operações" diff --git a/account_reconcile_rule/i18n/pt_PT.po b/account_reconcile_rule/i18n/pt_PT.po index 2bea6937..011b5dfd 100644 --- a/account_reconcile_rule/i18n/pt_PT.po +++ b/account_reconcile_rule/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,171 +11,172 @@ msgstr "" "POT-Creation-Date: 2016-09-12 11:12+0000\n" "PO-Revision-Date: 2016-09-12 11:12+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Criado por" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Criado em" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "Atualizado pela última vez por" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Atualizado pela última vez em" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" diff --git a/account_reconcile_rule/i18n/sl.po b/account_reconcile_rule/i18n/sl.po index ad193509..4e3dc85c 100644 --- a/account_reconcile_rule/i18n/sl.po +++ b/account_reconcile_rule/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,171 +12,176 @@ msgstr "" "PO-Revision-Date: 2016-09-12 11:12+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"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" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "in" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "in je valuta ena izmed" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "Postavka bančnega izpiska" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Ustvaril" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Ustvarjeno" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "Valute" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "Prikazni naziv" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" "Pri pravilih 'valut' lahko izberete, na katere valute se pravilo nanaša." -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "Če se ujema več pravil, se uporabi prvo." -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "Zadnjič spremenjeno" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "Zadnji posodobil" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Zadnjič posodobljeno" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "Maks. znesek" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "Min. znesek" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "Naziv" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "Operacije" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "Rezultat" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "Zaokroževanja" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "Pravilo" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "Zaporedje" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "Pravilo operacij z izpiski" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "Pravilo operacij z izpiski" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +#, fuzzy +msgid "Then the following reconciliation models will be applied:" msgstr "se izvedejo naslednje operacije" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "Tip" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "Ko je stanje med" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" + +#~ msgid "Operations" +#~ msgstr "Operacije" diff --git a/account_reconcile_rule/i18n/tr.po b/account_reconcile_rule/i18n/tr.po index 2f589539..7da9d349 100644 --- a/account_reconcile_rule/i18n/tr.po +++ b/account_reconcile_rule/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * account_operation_rule -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,170 +12,170 @@ msgstr "" "PO-Revision-Date: 2016-09-12 11:12+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"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_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "And the currency is one of" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_bank_statement_line +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_bank_statement_line msgid "Bank Statement Line" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "Click to create a reconciliation rule." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_uid msgid "Created by" msgstr "Oluşturan" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_create_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_create_date msgid "Created on" msgstr "Oluşturuldu" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "Currencies" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_display_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_display_name msgid "Display Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_currencies +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_currency_ids msgid "" -"For 'Currencies' rules, you can choose for which currencies the rule will be" -" applicable." +"For 'Currencies' rules, you can choose for which currencies the rule will be " +"applicable." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_id +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_id msgid "ID" msgstr "ID" -#. module: account_operation_rule -#: model:ir.model.fields,help:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,help:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "If several rules match, the first one is used." msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_journal +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_journal msgid "Journal" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule___last_update +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule___last_update msgid "Last Modified on" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_uid +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_uid msgid "Last Updated by" msgstr "Son güncelleyen" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_write_date +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_write_date msgid "Last Updated on" msgstr "Son güncelleme" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_max +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_max msgid "Max. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_amount_min +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_amount_min msgid "Min. Amount" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_name +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_name msgid "Name" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_operations -msgid "Operations" -msgstr "" - -#. module: account_operation_rule -#: model:ir.actions.act_window,name:account_operation_rule.action_account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.account_journal_dashboard_kanban_view +#. module: account_reconcile_rule +#: model:ir.actions.act_window,name:account_reconcile_rule.action_account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.account_journal_dashboard_kanban_view msgid "Reconciliation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_reconcile_model_ids +msgid "Reconciliation models" +msgstr "" + +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Result" msgstr "" -#. module: account_operation_rule -#: selection:account.operation.rule,rule_type:0 +#. module: account_reconcile_rule +#: selection:account.reconcile.rule,rule_type:0 msgid "Roundings" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_sequence +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_sequence msgid "Sequence" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "Statement Operation Rule" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_search -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_tree +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_search +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_tree msgid "Statement Operation Rules" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form -msgid "Then the following operations will be applied:" +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form +msgid "Then the following reconciliation models will be applied:" msgstr "" -#. module: account_operation_rule -#: model:ir.actions.act_window,help:account_operation_rule.action_account_operation_rule +#. module: account_reconcile_rule +#: model:ir.actions.act_window,help:account_reconcile_rule.action_account_reconcile_rule msgid "" "Those can be used to automatically create a move line when reconciling\n" " your bank statements." msgstr "" -#. module: account_operation_rule -#: model:ir.model.fields,field_description:account_operation_rule.field_account_operation_rule_rule_type +#. module: account_reconcile_rule +#: model:ir.model.fields,field_description:account_reconcile_rule.field_account_reconcile_rule_rule_type msgid "Type" msgstr "" -#. module: account_operation_rule -#: model:ir.ui.view,arch_db:account_operation_rule.view_account_operation_rule_form +#. module: account_reconcile_rule +#: model:ir.ui.view,arch_db:account_reconcile_rule.view_account_reconcile_rule_form msgid "When the balance is between" msgstr "" -#. module: account_operation_rule -#: model:ir.model,name:account_operation_rule.model_account_operation_rule -msgid "account.operation.rule" +#. module: account_reconcile_rule +#: model:ir.model,name:account_reconcile_rule.model_account_reconcile_rule +msgid "account.reconcile.rule" msgstr "" From ac1c154731b1b7361ccb0d56edcc8ab45c357855 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Tue, 23 Jul 2019 14:40:14 +0000 Subject: [PATCH 8/9] [ADD] icon.png --- .../static/description/icon.png | Bin 0 -> 9455 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 account_reconcile_rule/static/description/icon.png diff --git a/account_reconcile_rule/static/description/icon.png b/account_reconcile_rule/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 From 7a2179d53d6105070f2cd6e3a28d1c58b1dbdfaf Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Tue, 23 Jul 2019 14:40:14 +0000 Subject: [PATCH 9/9] [ADD] setup.py --- setup/_metapackage/VERSION.txt | 2 +- setup/_metapackage/setup.py | 1 + .../odoo/addons/account_reconcile_rule | 1 + setup/account_reconcile_rule/setup.cfg | 2 ++ setup/account_reconcile_rule/setup.py | 6 ++++++ 5 files changed, 11 insertions(+), 1 deletion(-) create mode 120000 setup/account_reconcile_rule/odoo/addons/account_reconcile_rule create mode 100644 setup/account_reconcile_rule/setup.cfg create mode 100644 setup/account_reconcile_rule/setup.py diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index a54b0ca6..9ce79871 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -11.0.20190708.0 \ No newline at end of file +11.0.20190723.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index dfaba299..cfc18ef8 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -13,6 +13,7 @@ setuptools.setup( 'odoo11-addon-account_mass_reconcile_by_purchase_line', 'odoo11-addon-account_mass_reconcile_ref_deep_search', 'odoo11-addon-account_mass_reconcile_transaction_ref', + 'odoo11-addon-account_reconcile_rule', 'odoo11-addon-account_set_reconcilable', 'odoo11-addon-account_skip_bank_reconciliation', 'odoo11-addon-bank_statement_foreign_currency', diff --git a/setup/account_reconcile_rule/odoo/addons/account_reconcile_rule b/setup/account_reconcile_rule/odoo/addons/account_reconcile_rule new file mode 120000 index 00000000..f9f22c0c --- /dev/null +++ b/setup/account_reconcile_rule/odoo/addons/account_reconcile_rule @@ -0,0 +1 @@ +../../../../account_reconcile_rule \ No newline at end of file diff --git a/setup/account_reconcile_rule/setup.cfg b/setup/account_reconcile_rule/setup.cfg new file mode 100644 index 00000000..3c6e79cf --- /dev/null +++ b/setup/account_reconcile_rule/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal=1 diff --git a/setup/account_reconcile_rule/setup.py b/setup/account_reconcile_rule/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/account_reconcile_rule/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)