From 95f4da75c869153e0595edcec031303c7bc27683 Mon Sep 17 00:00:00 2001 From: cristina-hidalgo-tecnativa Date: Thu, 21 May 2026 17:41:57 +0200 Subject: [PATCH 1/4] [IMP] contract: add monthly_recurring field to contracts and lines --- contract/models/contract_line.py | 33 ++++++++++++++++++++++++++++++++ contract/views/contract_line.xml | 30 ++++++++++++++++++++++++----- 2 files changed, 58 insertions(+), 5 deletions(-) diff --git a/contract/models/contract_line.py b/contract/models/contract_line.py index dea62497a3..bbc9ccda8d 100644 --- a/contract/models/contract_line.py +++ b/contract/models/contract_line.py @@ -11,6 +11,17 @@ from odoo import api, fields, models from odoo.exceptions import ValidationError +# Months equivalent per recurrence unit (to normalise amounts to monthly) +_MONTHS_PER_RULE = { + "daily": 1.0 / 30.0, + "weekly": 7.0 / 30.0, + "monthly": 1.0, + "monthlylastday": 1.0, + "quarterly": 3.0, + "semesterly": 6.0, + "yearly": 12.0, +} + class ContractLine(models.Model): _name = "contract.line" @@ -307,6 +318,28 @@ def get_view(self, view_id=None, view_type="form", **options): view_id = self.env.ref("contract.contract_line_customer_form_view").id return super().get_view(view_id, view_type, **options) + monthly_recurring = fields.Monetary( + compute="_compute_monthly_recurring", + store=True, + currency_field="currency_id", + ) + + @api.depends( + "display_type", + "price_subtotal", + "recurring_rule_type", + "recurring_interval", + ) + def _compute_monthly_recurring(self): + for line in self: + if line.display_type: + line.monthly_recurring = 0.0 + continue + months = _MONTHS_PER_RULE.get(line.recurring_rule_type, 1.0) * ( + line.recurring_interval or 1 + ) + line.monthly_recurring = line.price_subtotal / months if months else 0.0 + def _get_quantity_to_invoice( self, period_first_date, period_last_date, invoice_date ): diff --git a/contract/views/contract_line.xml b/contract/views/contract_line.xml index 6f430efb1d..846dd0f880 100644 --- a/contract/views/contract_line.xml +++ b/contract/views/contract_line.xml @@ -95,6 +95,11 @@ + @@ -127,6 +132,7 @@ contract.line + @@ -140,6 +146,11 @@ + @@ -163,6 +174,17 @@ + - - - + @@ -228,7 +248,7 @@ supplier-contract-lines [('contract_id.contract_type', '=', 'purchase')] - {'search_default_group_by_contract': 1} + {'search_default_group_by_contract': 1, 'search_default_in_progress': 1} @@ -241,7 +261,7 @@ customer-contract-lines [('contract_id.contract_type', '=', 'sale')] - {'search_default_group_by_contract': 1} + {'search_default_group_by_contract': 1, 'search_default_in_progress': 1} From 77c7e6ffe302bbb3fd78e401b40b03cb8aa63db1 Mon Sep 17 00:00:00 2001 From: oca-ci Date: Fri, 22 May 2026 09:53:13 +0000 Subject: [PATCH 2/4] [UPD] Update contract.pot --- contract/i18n/contract.pot | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/contract/i18n/contract.pot b/contract/i18n/contract.pot index ce87647d47..6b41d1b216 100644 --- a/contract/i18n/contract.pot +++ b/contract/i18n/contract.pot @@ -905,6 +905,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1122,6 +1123,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1550,6 +1556,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." From 444c93b6b2a2e815792a274746df3c4a37ab0fa5 Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Fri, 22 May 2026 09:59:21 +0000 Subject: [PATCH 3/4] [BOT] post-merge updates --- README.md | 2 +- contract/README.rst | 2 +- contract/__manifest__.py | 2 +- contract/static/description/index.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0bc8615eda..2eef60514b 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Available addons addon | version | maintainers | summary --- | --- | --- | --- [agreement_rebate_partner_company_group](agreement_rebate_partner_company_group/) | 18.0.1.0.0 | | Rebate agreements applied to all company group members -[contract](contract/) | 18.0.2.3.3 | | Recurring - Contracts Management +[contract](contract/) | 18.0.2.4.0 | | Recurring - Contracts Management [contract_analytic_tag](contract_analytic_tag/) | 18.0.1.0.0 | victoralmau | Contract Analytic Tag [contract_forecast](contract_forecast/) | 18.0.1.0.1 | sbejaoui | Contract Forecast [contract_forecast_variable_quantity](contract_forecast_variable_quantity/) | 18.0.1.0.0 | | Contract Forecast Variable Quantity diff --git a/contract/README.rst b/contract/README.rst index 75321460d2..a61baac273 100644 --- a/contract/README.rst +++ b/contract/README.rst @@ -11,7 +11,7 @@ Recurring - Contracts Management !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:e395f519d62bac7a25c01767e5e91f0a646779db0f51ab345c28fd5c5f2efa5c + !! source digest: sha256:68f83bb4e4dde7a54beeac546d364285c4a44d7abab73c256aced1f6ae6e4e72 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png diff --git a/contract/__manifest__.py b/contract/__manifest__.py index ea35193ce9..c4510b8a3c 100644 --- a/contract/__manifest__.py +++ b/contract/__manifest__.py @@ -11,7 +11,7 @@ { "name": "Recurring - Contracts Management", - "version": "18.0.2.3.3", + "version": "18.0.2.4.0", "category": "Contract Management", "license": "AGPL-3", "author": "Tecnativa, ACSONE SA/NV, Odoo Community Association (OCA)", diff --git a/contract/static/description/index.html b/contract/static/description/index.html index bb6d4b067a..1e829477cd 100644 --- a/contract/static/description/index.html +++ b/contract/static/description/index.html @@ -372,7 +372,7 @@

Recurring - Contracts Management

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:e395f519d62bac7a25c01767e5e91f0a646779db0f51ab345c28fd5c5f2efa5c +!! source digest: sha256:68f83bb4e4dde7a54beeac546d364285c4a44d7abab73c256aced1f6ae6e4e72 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Production/Stable License: AGPL-3 OCA/contract Translate me on Weblate Try me on Runboat

This module enables contracts management with recurring invoicing From 793b58e4620b3e6404dea4b606ca4a2b75efd1eb Mon Sep 17 00:00:00 2001 From: Weblate Date: Fri, 22 May 2026 09:59:36 +0000 Subject: [PATCH 4/4] Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: contract-18.0/contract-18.0-contract Translate-URL: https://translation.odoo-community.org/projects/contract-18-0/contract-18-0-contract/ --- contract/i18n/am.po | 32 ++++-- contract/i18n/ar.po | 32 ++++-- contract/i18n/bg.po | 32 ++++-- contract/i18n/bs.po | 32 ++++-- contract/i18n/ca.po | 222 +++++++++++++++++++----------------- contract/i18n/ca_ES.po | 32 ++++-- contract/i18n/cs.po | 32 ++++-- contract/i18n/da.po | 32 ++++-- contract/i18n/de.po | 124 +++++++++++--------- contract/i18n/el_GR.po | 32 ++++-- contract/i18n/en_GB.po | 36 ++++-- contract/i18n/es.po | 84 ++++++++------ contract/i18n/es_AR.po | 158 ++++++++++++++------------ contract/i18n/es_CL.po | 60 ++++++---- contract/i18n/es_CO.po | 32 ++++-- contract/i18n/es_CR.po | 36 ++++-- contract/i18n/es_DO.po | 32 ++++-- contract/i18n/es_EC.po | 32 ++++-- contract/i18n/es_MX.po | 32 ++++-- contract/i18n/es_PY.po | 32 ++++-- contract/i18n/es_VE.po | 36 ++++-- contract/i18n/et.po | 32 ++++-- contract/i18n/eu.po | 32 ++++-- contract/i18n/fa.po | 32 ++++-- contract/i18n/fi.po | 74 +++++++----- contract/i18n/fr.po | 233 +++++++++++++++++++++----------------- contract/i18n/fr_CA.po | 32 ++++-- contract/i18n/fr_CH.po | 36 ++++-- contract/i18n/fr_FR.po | 74 +++++++----- contract/i18n/gl.po | 60 ++++++---- contract/i18n/gl_ES.po | 32 ++++-- contract/i18n/he.po | 32 ++++-- contract/i18n/hi_IN.po | 32 ++++-- contract/i18n/hr.po | 32 ++++-- contract/i18n/hr_HR.po | 32 ++++-- contract/i18n/hu.po | 32 ++++-- contract/i18n/id.po | 32 ++++-- contract/i18n/it.po | 145 +++++++++++++----------- contract/i18n/ja.po | 32 ++++-- contract/i18n/ko.po | 32 ++++-- contract/i18n/lt.po | 32 ++++-- contract/i18n/lt_LT.po | 36 ++++-- contract/i18n/lv.po | 32 ++++-- contract/i18n/mk.po | 32 ++++-- contract/i18n/mn.po | 32 ++++-- contract/i18n/nb.po | 32 ++++-- contract/i18n/nb_NO.po | 32 ++++-- contract/i18n/nl.po | 112 ++++++++++-------- contract/i18n/nl_BE.po | 32 ++++-- contract/i18n/nl_NL.po | 36 ++++-- contract/i18n/pl.po | 32 ++++-- contract/i18n/pt.po | 74 +++++++----- contract/i18n/pt_BR.po | 128 ++++++++++++--------- contract/i18n/pt_PT.po | 36 ++++-- contract/i18n/ro.po | 32 ++++-- contract/i18n/ru.po | 32 ++++-- contract/i18n/sk.po | 32 ++++-- contract/i18n/sk_SK.po | 32 ++++-- contract/i18n/sl.po | 32 ++++-- contract/i18n/sr.po | 32 ++++-- contract/i18n/sr@latin.po | 32 ++++-- contract/i18n/sv.po | 108 ++++++++++-------- contract/i18n/th.po | 32 ++++-- contract/i18n/tr.po | 122 +++++++++++--------- contract/i18n/tr_TR.po | 32 ++++-- contract/i18n/uk.po | 32 ++++-- contract/i18n/vi.po | 32 ++++-- contract/i18n/vi_VN.po | 36 ++++-- contract/i18n/zh_CN.po | 60 ++++++---- contract/i18n/zh_TW.po | 32 ++++-- 70 files changed, 2240 insertions(+), 1358 deletions(-) diff --git a/contract/i18n/am.po b/contract/i18n/am.po index 0a880b8da3..a56559fe2b 100644 --- a/contract/i18n/am.po +++ b/contract/i18n/am.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/ar.po b/contract/i18n/ar.po index a930fbb18a..2cb08e849f 100644 --- a/contract/i18n/ar.po +++ b/contract/i18n/ar.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/bg.po b/contract/i18n/bg.po index 9523087e70..5d8be1210c 100644 --- a/contract/i18n/bg.po +++ b/contract/i18n/bg.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/bs.po b/contract/i18n/bs.po index 462b4e2e0d..274d80829a 100644 --- a/contract/i18n/bs.po +++ b/contract/i18n/bs.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/ca.po b/contract/i18n/ca.po index 8f0d5cd28b..9858bd7d4b 100644 --- a/contract/i18n/ca.po +++ b/contract/i18n/ca.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" "   REFERÈNCIES
\n" -"   Contracte:
\n" +"   Contracte:
\n" " \n" "   Data d'inici del contracte:
\n" @@ -116,8 +116,8 @@ msgstr "" " \n" " \n" "   Et teu contracte:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   El teu contacte: \n" " \n" -"
\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" "\n" " contracte a facturar\n" " \n" -" \n" +" \n" " contractes a facturar\n" " " @@ -1047,6 +1047,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "En curs" @@ -1264,6 +1265,11 @@ msgstr "Mes(os)" msgid "Month(s) last day" msgstr "Darrer dia del mes" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1702,6 +1708,12 @@ msgstr "Etiquetes" msgid "Technical field for UX purposes." msgstr "Camp tècnic amb funció UX." +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -1865,8 +1877,8 @@ msgstr "" #~ "

\n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract Date Start:
\n" @@ -1875,8 +1887,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your Contact:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\">\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

If you have any questions, do not hesitate to contact " #~ "us.

\n" -#~ "

Thank you for choosing !

\n" +#~ "

Thank you for choosing !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ "
\n" #~ " \n" #~ "
\n" -#~ " Web: \n" +#~ " Web: \n" #~ "
\n" #~ "
\n" #~ "
\n" @@ -1942,8 +1956,8 @@ msgstr "" #~ "

\n" #~ "   REFERENCES
\n" -#~ "   Contracte:
\n" +#~ "   Contracte:
\n" #~ " \n" #~ "   Dia d'inici del contracte:
\n" @@ -1952,8 +1966,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   El seu contacte:
\n" +#~ "href=\"'mailto:%s?subject=Contracte %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\">\n" #~ " \n" #~ " \n" #~ "   El seu contacte: \n" #~ " \n" -#~ "

\n" +#~ "
\n" #~ " \n" #~ " \n" #~ "
\n" -#~ " Telèfon: \n" +#~ " Telèfon: \n" #~ "
\n" #~ "
\n" #~ " \n" #~ "
\n" -#~ " Web: \n" +#~ " Web: \n" #~ "
\n" #~ "
\n" #~ "
\n" @@ -2429,8 +2445,8 @@ msgstr "" #~ msgstr "Error d'entrega de SMS" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " contracte a facturar\n" #~ " \n" #~ " \n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract Date Start:
\n" @@ -2480,8 +2496,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your Contact:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\"/>\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

If you have any questions, do not hesitate to contact " #~ "us.

\n" -#~ "

Thank you for choosing !

\n" +#~ "

Thank you for choosing !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ " \n" @@ -2549,8 +2566,8 @@ msgstr "" #~ "30px;\">\n" #~ "   REFERÈNCIES
\n" -#~ "   Contracte:
\n" +#~ "   Contracte:
\n" #~ " \n" #~ "   Data d'inici del contracte: " #~ "
\n" @@ -2559,8 +2576,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   El teu contacte:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\"/>\n" #~ " \n" #~ " \n" #~ "   El teu contacte: \n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ " \n" @@ -2677,16 +2695,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -2728,9 +2746,9 @@ msgstr "" #~ "\n" #~ " % if object.user_id:\n" #~ " % if object.user_id.email:\n" -#~ "   Persona de contacte: ${object.user_id.name}\n" +#~ "   Persona de contacte: $" +#~ "{object.user_id.name}\n" #~ " % else:\n" #~ "   El seu contracte: ${object.user_id.name}\n" #~ " % endif\n" @@ -2748,16 +2766,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -2897,16 +2915,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -2943,9 +2961,9 @@ msgstr "" #~ "\n" #~ " % if object.user_id:\n" #~ " % if object.user_id.email:\n" -#~ "   El seu contacte: ${object.user_id.name}\n" +#~ "   El seu contacte: $" +#~ "{object.user_id.name}\n" #~ " % else:\n" #~ "   El seu contacte: ${object.user_id.name}\n" #~ " % endif\n" @@ -2963,16 +2981,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/ca_ES.po b/contract/i18n/ca_ES.po index 6f902bad86..0326e4d96c 100644 --- a/contract/i18n/ca_ES.po +++ b/contract/i18n/ca_ES.po @@ -25,8 +25,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -35,8 +35,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -933,6 +933,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1150,6 +1151,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1578,6 +1584,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/cs.po b/contract/i18n/cs.po index 455f02c123..736ac7eaef 100644 --- a/contract/i18n/cs.po +++ b/contract/i18n/cs.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/da.po b/contract/i18n/da.po index fbc7c2fc86..c8de73d416 100644 --- a/contract/i18n/da.po +++ b/contract/i18n/da.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/de.po b/contract/i18n/de.po index 97159a3b96..1d37c01f79 100644 --- a/contract/i18n/de.po +++ b/contract/i18n/de.po @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -959,6 +959,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "In Bearbeitung" @@ -1176,6 +1177,11 @@ msgstr "Monat(e)" msgid "Month(s) last day" msgstr "Monatsletzter Tag" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1337,8 +1343,8 @@ msgstr "Zahlungsbedingungen" msgid "" "Please define a %(contract_type)s journal for the company '%(company)s'." msgstr "" -"Bitte definieren Sie einen %(contract_type)s Journal für das Unternehmen " -"'%(company)s'." +"Bitte definieren Sie einen %(contract_type)s Journal für das Unternehmen '%" +"(company)s'." #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__access_url @@ -1614,6 +1620,12 @@ msgstr "Stichwörter" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -1777,8 +1789,8 @@ msgstr "" #~ "

\n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract Date Start:
\n" @@ -1787,8 +1799,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your Contact:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\">\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

If you have any questions, do not hesitate to contact " #~ "us.

\n" -#~ "

Thank you for choosing !

\n" +#~ "

Thank you for choosing !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ "
\n" #~ " \n" #~ "
\n" -#~ " Web: \n" +#~ " Web: \n" #~ "
\n" #~ "
\n" #~ "
\n" @@ -1854,8 +1868,8 @@ msgstr "" #~ "

\n" #~ "   REFERENCES
\n" -#~ "   Vertrag:
\n" +#~ "   Vertrag:
\n" #~ " \n" #~ "   Vertragsbeginn:
\n" @@ -1864,8 +1878,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Ihr Kontakt:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\">\n" #~ " \n" #~ " \n" #~ "   Ihr Kontakt: \n" #~ "

Wenn Sie Fragen haben, zögern Sie nicht, uns zu " #~ "kontaktieren.

\n" -#~ "

Vielen Dank, dass Sie sich für entschieden haben.!

\n" +#~ "

Vielen Dank, dass Sie sich für entschieden haben.!

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ "
\n" -#~ " Telefon: \n" +#~ " Telefon: \n" #~ "
\n" #~ "
\n" #~ " \n" #~ "
\n" -#~ " Web: \n" +#~ " Web: \n" #~ "
\n" #~ "
\n" #~ "
\n" @@ -2338,8 +2354,8 @@ msgstr "" #~ msgstr "Fehler bei der SMS-Zustellung" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " abzurechnender Vertrag\n" #~ " \n" #~ " \n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ " \n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/el_GR.po b/contract/i18n/el_GR.po index 4debf46ff0..451ef45273 100644 --- a/contract/i18n/el_GR.po +++ b/contract/i18n/el_GR.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -940,6 +940,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1158,6 +1159,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1586,6 +1592,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/en_GB.po b/contract/i18n/en_GB.po index d37eeeb205..b07d1c4a8e 100644 --- a/contract/i18n/en_GB.po +++ b/contract/i18n/en_GB.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2017-11-21 18:22+0000\n" "PO-Revision-Date: 2017-11-21 18:22+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" -"teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/" +"23907/en_GB/)\n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/es.po b/contract/i18n/es.po index 1242a4ed34..f0b74f670d 100644 --- a/contract/i18n/es.po +++ b/contract/i18n/es.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" "\n" " contrato a facturar\n" " \n" -" \n" +" \n" " contrato a facturar\n" " " @@ -972,6 +972,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "En progreso" @@ -1190,6 +1191,11 @@ msgstr "Mes(es)" msgid "Month(s) last day" msgstr "Mes(es) último día" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1627,6 +1633,12 @@ msgstr "Etiquetas" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -1791,8 +1803,8 @@ msgstr "" #~ "

\n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract Date Start:
\n" @@ -1801,8 +1813,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your Contact:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\">\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

If you have any questions, do not hesitate to contact " #~ "us.

\n" -#~ "

Thank you for choosing !

\n" +#~ "

Thank you for choosing !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ "
\n" #~ " \n" #~ "
\n" -#~ " Web: \n" +#~ " Web: \n" #~ "
\n" #~ "
\n" #~ "
\n" @@ -1868,8 +1882,8 @@ msgstr "" #~ "

\n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Fecha de inicio del " #~ "contratot:
\n" @@ -1878,8 +1892,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your contract:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\">\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

Si tiene alguna pregunta, no dude en contactarnos.\n" -#~ "

Gracias por su elección!

\n" +#~ "

Gracias por su elección!

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ "
\n" #~ " \n" #~ "
\n" -#~ " Web: \n" +#~ " Web: \n" #~ "
\n" #~ "
\n" #~ "
\n" diff --git a/contract/i18n/es_AR.po b/contract/i18n/es_AR.po index bc5500f9fc..9b2b755b22 100644 --- a/contract/i18n/es_AR.po +++ b/contract/i18n/es_AR.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2017-11-21 18:22+0000\n" "PO-Revision-Date: 2022-08-02 21:06+0000\n" "Last-Translator: Ignacio Buioli \n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" -"teams/23907/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/" +"23907/es_AR/)\n" "Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -959,6 +959,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "En progreso" @@ -1178,6 +1179,11 @@ msgstr "Mes(es)" msgid "Month(s) last day" msgstr "Último día del/los Mes(es)" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1615,6 +1621,12 @@ msgstr "Etiquetas" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -2176,8 +2188,8 @@ msgstr "" #~ msgstr "Error de Entrega de SMS" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " contrato a facturar\n" #~ " \n" #~ " \n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract Date Start:
\n" @@ -2227,8 +2239,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your Contact:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\"/>\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

If you have any questions, do not hesitate to contact " #~ "us.

\n" -#~ "

Thank you for choosing !

\n" +#~ "

Thank you for choosing !

\n" #~ "
\n" #~ "
\n" #~ "
\n" @@ -2424,16 +2438,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ " \n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -2624,8 +2638,8 @@ msgstr "" #~ msgstr "Fecha del aviso de terminación" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " contracto a facturar\n" #~ " \n" #~ " \n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -2744,16 +2758,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ "
\n" -#~ " Sitio Web: ${object.company_id.website}\n" +#~ " Sitio Web: $" +#~ "{object.company_id.website}\n" #~ "
\n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/es_CL.po b/contract/i18n/es_CL.po index cf825b38b2..76ba811b70 100644 --- a/contract/i18n/es_CL.po +++ b/contract/i18n/es_CL.po @@ -27,8 +27,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -37,8 +37,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -935,6 +935,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1152,6 +1153,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1580,6 +1586,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -1750,16 +1762,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/es_CO.po b/contract/i18n/es_CO.po index 2e81d63236..5e47766f5f 100644 --- a/contract/i18n/es_CO.po +++ b/contract/i18n/es_CO.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1155,6 +1156,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1583,6 +1589,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/es_CR.po b/contract/i18n/es_CR.po index 9d88331fc4..9f1e790876 100644 --- a/contract/i18n/es_CR.po +++ b/contract/i18n/es_CR.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2017-11-21 18:22+0000\n" "PO-Revision-Date: 2017-11-21 18:22+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" -"teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/" +"23907/es_CR/)\n" "Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/es_DO.po b/contract/i18n/es_DO.po index 971e51a7ff..8e0819a49c 100644 --- a/contract/i18n/es_DO.po +++ b/contract/i18n/es_DO.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1155,6 +1156,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1583,6 +1589,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/es_EC.po b/contract/i18n/es_EC.po index e9d16fed51..464f9dfdc6 100644 --- a/contract/i18n/es_EC.po +++ b/contract/i18n/es_EC.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1155,6 +1156,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1583,6 +1589,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/es_MX.po b/contract/i18n/es_MX.po index 81002ac21f..d4c4895d25 100644 --- a/contract/i18n/es_MX.po +++ b/contract/i18n/es_MX.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -940,6 +940,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1158,6 +1159,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1586,6 +1592,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/es_PY.po b/contract/i18n/es_PY.po index 7bce6287b4..e428202aec 100644 --- a/contract/i18n/es_PY.po +++ b/contract/i18n/es_PY.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1155,6 +1156,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1583,6 +1589,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/es_VE.po b/contract/i18n/es_VE.po index a7acd46191..200064a23c 100644 --- a/contract/i18n/es_VE.po +++ b/contract/i18n/es_VE.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2017-11-21 18:22+0000\n" "PO-Revision-Date: 2017-11-21 18:22+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" -"teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/" +"23907/es_VE/)\n" "Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/et.po b/contract/i18n/et.po index e2b49b2383..35b386b974 100644 --- a/contract/i18n/et.po +++ b/contract/i18n/et.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1155,6 +1156,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1583,6 +1589,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/eu.po b/contract/i18n/eu.po index fc94e0c113..e2623061f4 100644 --- a/contract/i18n/eu.po +++ b/contract/i18n/eu.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -937,6 +937,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1154,6 +1155,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1582,6 +1588,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/fa.po b/contract/i18n/fa.po index 988e1910e1..86a6a274d3 100644 --- a/contract/i18n/fa.po +++ b/contract/i18n/fa.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/fi.po b/contract/i18n/fi.po index db56849310..0fc0e80386 100644 --- a/contract/i18n/fi.po +++ b/contract/i18n/fi.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -943,6 +943,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "Käynnissä" @@ -1160,6 +1161,11 @@ msgstr "Kuukaudet" msgid "Month(s) last day" msgstr "Kuukauden viimeinen päivä" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1598,6 +1604,12 @@ msgstr "Tunnisteet" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -2123,8 +2135,8 @@ msgstr "" #~ msgstr "Irtisanomisilmoituksen päivämäärä" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " laskutettava sopimus\n" #~ " \n" #~ " \n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -2222,9 +2234,9 @@ msgstr "" #~ "\n" #~ " % if object.user_id:\n" #~ " % if object.user_id.email:\n" -#~ "   Yhteyshenkilönne: ${object.user_id.name}\n" +#~ "   Yhteyshenkilönne: $" +#~ "{object.user_id.name}\n" #~ " % else:\n" #~ "   Yhteyshenkilönne: ${object.user_id.name}\n" #~ " % endif\n" @@ -2241,16 +2253,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ "
\n" -#~ " Verkkosivu: ${object.company_id.website}\n" +#~ " Verkkosivu: $" +#~ "{object.company_id.website}\n" #~ "
\n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/fr.po b/contract/i18n/fr.po index 60edb3ea51..0edf0589bc 100644 --- a/contract/i18n/fr.po +++ b/contract/i18n/fr.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " & ;nbsp ;& ;nbsp ;RÉFÉRENCES
\n" -" & ;nbsp ;& ;nbsp ;Contrat :
\n" +" & ;nbsp ;& ;nbsp ;Contrat :
\n" " \n" " & ;nbsp ;& ;nbsp ;Date de démarrage du " "contrat :
\n" @@ -118,8 +118,8 @@ msgstr "" " \n" " \n" " & ;nbsp ;& ;nbsp ;Votre contact :
\n" +"href=\"'mailto :%s ?subject=Contrat %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" " & ;nbsp ;& ;nbsp ;Votre contact : \n" " \n" -"
\n" +"
\n" " \n" " \n" " \n" @@ -198,16 +199,16 @@ msgid "" "\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" "\n" " contrat à facturer\n" " \n" -" \n" +" \n" " contrats à facturer\n" " " @@ -1056,6 +1057,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "En cours" @@ -1274,6 +1276,11 @@ msgstr "Mois" msgid "Month(s) last day" msgstr "Dernier jour du mois" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1435,8 +1442,8 @@ msgstr "Conditions de paiement" msgid "" "Please define a %(contract_type)s journal for the company '%(company)s'." msgstr "" -"Merci de définir un journal de type %(contract_type)s pour la société " -"'%(company)s'." +"Merci de définir un journal de type %(contract_type)s pour la société '%" +"(company)s'." #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__access_url @@ -1712,6 +1719,12 @@ msgstr "Étiquettes" msgid "Technical field for UX purposes." msgstr "Champ technique pour des problèmes d'UX." +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -1874,8 +1887,8 @@ msgstr "" #~ "

\n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract Date Start:
\n" @@ -1884,8 +1897,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your Contact:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\">\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

If you have any questions, do not hesitate to contact " #~ "us.

\n" -#~ "

Thank you for choosing !

\n" +#~ "

Thank you for choosing !

\n" #~ "
\n" #~ "
\n" #~ " \n" @@ -2434,8 +2451,8 @@ msgstr "" #~ msgstr "Erreur d'acheminement de SMS" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " contrat à facturer\n" #~ " \n" #~ " \n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract Date Start:
\n" @@ -2488,8 +2505,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your Contact:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\"/>\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

If you have any questions, do not hesitate to contact " #~ "us.

\n" -#~ "

Thank you for choosing !

\n" +#~ "

Thank you for choosing !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ " \n" @@ -2556,8 +2574,8 @@ msgstr "" #~ "

\n" #~ "   RÉFÉRENCES
\n" -#~ "   Contrat :
\n" +#~ "   Contrat :
\n" #~ " \n" #~ "   Date de début :
\n" @@ -2566,8 +2584,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Votre contact :
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\"/>\n" #~ " \n" #~ " \n" #~ "   Votre contact : \n" #~ "\n" -#~ "

\n" +#~ "
\n" #~ "\n" #~ " \n" #~ " \n" @@ -2610,24 +2629,24 @@ msgstr "" #~ "margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: " #~ "0px; padding-left: 0px; \">\n" #~ "\n" -#~ " Téléphone : \n" +#~ " Téléphone : \n" #~ "
\n" #~ " \n" #~ " \n" #~ " \n" #~ " \n" #~ "
\n" #~ "
\n" #~ "\n" -#~ "
View " -#~ "contract\n" +#~ " View contract\n" #~ "
\n" #~ " " @@ -2691,16 +2710,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -2761,16 +2780,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -2891,8 +2910,8 @@ msgstr "" #~ msgstr "Date de l'avis de résiliation" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " contrat à facturer\n" #~ " \n" #~ " \n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -3012,16 +3031,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ "
\n" -#~ " Site web: ${object.company_id.website}\n" +#~ " Site web: $" +#~ "{object.company_id.website}\n" #~ "
\n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/fr_CA.po b/contract/i18n/fr_CA.po index 5e545c9cbd..37c94b777d 100644 --- a/contract/i18n/fr_CA.po +++ b/contract/i18n/fr_CA.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -940,6 +940,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1158,6 +1159,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1586,6 +1592,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/fr_CH.po b/contract/i18n/fr_CH.po index d9d4fc7cb6..72f2fab7e5 100644 --- a/contract/i18n/fr_CH.po +++ b/contract/i18n/fr_CH.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2017-11-21 18:22+0000\n" "PO-Revision-Date: 2017-11-21 18:22+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" -"teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/" +"23907/fr_CH/)\n" "Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/fr_FR.po b/contract/i18n/fr_FR.po index 8b68b3dae2..592d4ea606 100644 --- a/contract/i18n/fr_FR.po +++ b/contract/i18n/fr_FR.po @@ -27,8 +27,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -37,8 +37,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -946,6 +946,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "En cours" @@ -1164,6 +1165,11 @@ msgstr "Mois" msgid "Month(s) last day" msgstr "Dernier jour du mois" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1600,6 +1606,12 @@ msgstr "Étiquettes" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -2051,8 +2063,8 @@ msgstr "" #~ msgstr "le" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " contrat à facturer\n" #~ " \n" #~ " \n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -2194,9 +2206,9 @@ msgstr "" #~ "\n" #~ " % if object.user_id :\n" #~ " % if object.user_id.email :\n" -#~ "   Votre contact : ${object.user_id.name}\n" +#~ "   Votre contact : $" +#~ "{object.user_id.name}\n" #~ " % else :\n" #~ "   Votre contact : ${object.user_id.name}\n" #~ " % endif\n" @@ -2214,16 +2226,16 @@ msgstr "" #~ "top-right-radius : 5px 5px ; background-repeat : repeat no-repeat ;\">.\n" #~ "

\n" -#~ " ${objet." -#~ "company_id.name}

\n" +#~ " $" +#~ "{objet.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${objet.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{objet.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone :\n" #~ " \n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/gl.po b/contract/i18n/gl.po index 050e00a35c..ae54c36079 100644 --- a/contract/i18n/gl.po +++ b/contract/i18n/gl.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -958,6 +958,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1184,6 +1185,11 @@ msgstr "Mes(es)" msgid "Month(s) last day" msgstr "Mes(es) último día" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1616,6 +1622,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -1921,16 +1933,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/gl_ES.po b/contract/i18n/gl_ES.po index ce0fa94574..6795e6710d 100644 --- a/contract/i18n/gl_ES.po +++ b/contract/i18n/gl_ES.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1155,6 +1156,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1583,6 +1589,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/he.po b/contract/i18n/he.po index 2f9cab22e8..aad3994f04 100644 --- a/contract/i18n/he.po +++ b/contract/i18n/he.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/hi_IN.po b/contract/i18n/hi_IN.po index 22b402b3c2..1f751d7dfd 100644 --- a/contract/i18n/hi_IN.po +++ b/contract/i18n/hi_IN.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -952,6 +952,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1176,6 +1177,11 @@ msgstr "माह(महीने)" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1609,6 +1615,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/hr.po b/contract/i18n/hr.po index e97ee4f682..90685f2c76 100644 --- a/contract/i18n/hr.po +++ b/contract/i18n/hr.po @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -958,6 +958,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1183,6 +1184,11 @@ msgstr "Mjesec(i)" msgid "Month(s) last day" msgstr "Mjesec(i) zadnji dan" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1616,6 +1622,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/hr_HR.po b/contract/i18n/hr_HR.po index 2c4adb9980..d9bc8f7ec3 100644 --- a/contract/i18n/hr_HR.po +++ b/contract/i18n/hr_HR.po @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -956,6 +956,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1182,6 +1183,11 @@ msgstr "Mjesec(i)" msgid "Month(s) last day" msgstr "Mjesec(i) zadnji dan" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1616,6 +1622,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/hu.po b/contract/i18n/hu.po index cc64f94980..e12ef73fab 100644 --- a/contract/i18n/hu.po +++ b/contract/i18n/hu.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/id.po b/contract/i18n/id.po index 7e7dcd3a96..359b724895 100644 --- a/contract/i18n/id.po +++ b/contract/i18n/id.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/it.po b/contract/i18n/it.po index 4c8c296ab7..cbd40d967c 100644 --- a/contract/i18n/it.po +++ b/contract/i18n/it.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" "   RIFERIMENTI
\n" -"   Contratto:
\n" +"   Contratto:
\n" " \n" "   Data inizio contratto:
\n" @@ -117,8 +117,8 @@ msgstr "" " \n" " \n" "   Vostro contratto:
\n" +"href=\"'mailto:%s?subject=Contratto %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Vostro contatto: \n" " \n" -"
\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" "\n" " contratto da fatturare \n" " \n" -" \n" +" \n" " contratti da fatturare \n" " " @@ -1052,6 +1053,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "In corso" @@ -1270,6 +1272,11 @@ msgstr "Mese(i)" msgid "Month(s) last day" msgstr "Ultimo giorno del mese" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1706,6 +1713,12 @@ msgstr "Etichette" msgid "Technical field for UX purposes." msgstr "Campo tecnico per fini UX." +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -1870,8 +1883,8 @@ msgstr "" #~ "

\n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract Date Start:
\n" @@ -1880,8 +1893,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your Contact:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\">\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

If you have any questions, do not hesitate to contact " #~ "us.

\n" -#~ "

Thank you for choosing !

\n" +#~ "

Thank you for choosing !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ "
\n" #~ " \n" #~ "
\n" -#~ " Web: \n" +#~ " Web: \n" #~ "
\n" #~ "
\n" #~ "
\n" @@ -1947,8 +1962,8 @@ msgstr "" #~ "

\n" #~ "   RIFERIMENTO
\n" -#~ "   Contratto:
\n" +#~ "   Contratto:
\n" #~ " \n" #~ "   Data inizio contratto:
\n" @@ -1957,8 +1972,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Suo contatto:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\">\n" #~ " \n" #~ " \n" #~ "   Suo contatto: \n" #~ "

Per qualsiasi domanda non esitate a cointattarci.

\n" -#~ "

Grazie per aver scelto !

\n" +#~ "

Grazie per aver scelto !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ "
\n" -#~ " Telefono: \n" +#~ " Telefono: \n" #~ "
\n" #~ "
\n" #~ " \n" #~ "
\n" -#~ " Web: \n" +#~ " Web: \n" #~ "
\n" #~ "
\n" #~ "
\n" @@ -2540,8 +2557,8 @@ msgstr "" #~ msgstr "Data notifica termine" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " contratto da fatturare\n" #~ " \n" #~ " \n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -2638,9 +2655,9 @@ msgstr "" #~ "\n" #~ " % if object.user_id:\n" #~ " % if object.user_id.email:\n" -#~ "   Il tuo contratto: ${object.user_id.name}\n" +#~ "   Il tuo contratto: $" +#~ "{object.user_id.name}\n" #~ " % else:\n" #~ "   Your Contratto: ${object.user_id.name}\n" #~ " % endif\n" @@ -2657,16 +2674,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/ja.po b/contract/i18n/ja.po index 7d1fd782e7..2af680f719 100644 --- a/contract/i18n/ja.po +++ b/contract/i18n/ja.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/ko.po b/contract/i18n/ko.po index 18ed23d4c8..b31e8ae1db 100644 --- a/contract/i18n/ko.po +++ b/contract/i18n/ko.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/lt.po b/contract/i18n/lt.po index 53b25f2437..207162c984 100644 --- a/contract/i18n/lt.po +++ b/contract/i18n/lt.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/lt_LT.po b/contract/i18n/lt_LT.po index fa151ff28e..2f43b6c983 100644 --- a/contract/i18n/lt_LT.po +++ b/contract/i18n/lt_LT.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2017-11-21 18:22+0000\n" "PO-Revision-Date: 2017-11-21 18:22+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" -"teams/23907/lt_LT/)\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/" +"23907/lt_LT/)\n" "Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -940,6 +940,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1158,6 +1159,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1586,6 +1592,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/lv.po b/contract/i18n/lv.po index cb8cc5987b..edcf7db997 100644 --- a/contract/i18n/lv.po +++ b/contract/i18n/lv.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/mk.po b/contract/i18n/mk.po index 8838a014f0..4248bed571 100644 --- a/contract/i18n/mk.po +++ b/contract/i18n/mk.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/mn.po b/contract/i18n/mn.po index ac1b4e2276..c348714e40 100644 --- a/contract/i18n/mn.po +++ b/contract/i18n/mn.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/nb.po b/contract/i18n/nb.po index 1b1edd80a6..922f9d75c6 100644 --- a/contract/i18n/nb.po +++ b/contract/i18n/nb.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/nb_NO.po b/contract/i18n/nb_NO.po index 0fc82b7246..739bc84933 100644 --- a/contract/i18n/nb_NO.po +++ b/contract/i18n/nb_NO.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -940,6 +940,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1158,6 +1159,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1586,6 +1592,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/nl.po b/contract/i18n/nl.po index 51796147e2..1796dfad5c 100644 --- a/contract/i18n/nl.po +++ b/contract/i18n/nl.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -953,6 +953,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "In behandeling" @@ -1170,6 +1171,11 @@ msgstr "Maand(en)" msgid "Month(s) last day" msgstr "Maand(en) laatste dag" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1608,6 +1614,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -1770,8 +1782,8 @@ msgstr "" #~ "

\n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract Date Start:
\n" @@ -1780,8 +1792,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your Contact:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\">\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

If you have any questions, do not hesitate to contact " #~ "us.

\n" -#~ "

Thank you for choosing !

\n" +#~ "

Thank you for choosing !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ "
\n" #~ " \n" #~ "
\n" -#~ " Web: \n" +#~ " Web: \n" #~ "
\n" #~ "
\n" #~ "
\n" @@ -1846,8 +1860,8 @@ msgstr "" #~ "

\n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract startdatum:
\n" @@ -1866,8 +1880,8 @@ msgstr "" #~ "

\n" #~ "
\n" #~ "

Laat het ons weten als u vragen heeft.

\n" -#~ "

Bedankt dat u gekozen heeft voor !

\n" +#~ "

Bedankt dat u gekozen heeft voor !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ " \n" @@ -2314,8 +2330,8 @@ msgstr "" #~ "model=\"%(model_name)s\" data-oe-id=\"%(rec_id)s\">Invoice" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " te factureren contract\n" #~ " \n" #~ " \n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -2544,16 +2560,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ "
\n" -#~ " Website: ${object.company_id.website}\n" +#~ " Website: $" +#~ "{object.company_id.website}\n" #~ "
\n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/nl_BE.po b/contract/i18n/nl_BE.po index 0bd9fde0e3..c7aa65ff3c 100644 --- a/contract/i18n/nl_BE.po +++ b/contract/i18n/nl_BE.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/nl_NL.po b/contract/i18n/nl_NL.po index 26b333bc75..be3e87b80f 100644 --- a/contract/i18n/nl_NL.po +++ b/contract/i18n/nl_NL.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2018-03-30 11:59+0000\n" "PO-Revision-Date: 2018-03-30 11:59+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" -"teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/" +"23907/nl_NL/)\n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -952,6 +952,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1176,6 +1177,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1608,6 +1614,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/pl.po b/contract/i18n/pl.po index a8e47c7f16..10e94e2e00 100644 --- a/contract/i18n/pl.po +++ b/contract/i18n/pl.po @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -940,6 +940,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1158,6 +1159,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1586,6 +1592,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/pt.po b/contract/i18n/pt.po index 7a02b3c10a..7b7b16abf9 100644 --- a/contract/i18n/pt.po +++ b/contract/i18n/pt.po @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "Em progresso" @@ -1156,6 +1157,11 @@ msgstr "Mes(es)" msgid "Month(s) last day" msgstr "Mes(es) no último dia" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1592,6 +1598,12 @@ msgstr "Etiquetas" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -2114,8 +2126,8 @@ msgstr "" #~ msgstr "Data de aviso de rescisão" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " \n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" @@ -2213,9 +2225,9 @@ msgstr "" #~ "\n" #~ " % if object.user_id:\n" #~ " % if object.user_id.email:\n" -#~ "   O Seu Contacto: ${object.user_id.name}\n" +#~ "   O Seu Contacto: $" +#~ "{object.user_id.name}\n" #~ " % else:\n" #~ "   O Seu Contacto: ${object.user_id.name}\n" #~ " % endif\n" @@ -2233,16 +2245,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/pt_BR.po b/contract/i18n/pt_BR.po index 95033fb7e3..987f58591f 100644 --- a/contract/i18n/pt_BR.po +++ b/contract/i18n/pt_BR.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2018-04-27 01:12+0000\n" "PO-Revision-Date: 2023-10-29 07:10+0000\n" "Last-Translator: Adriano Prado \n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" -"teams/23907/pt_BR/)\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" @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -957,6 +957,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "Em progresso" @@ -1174,6 +1175,11 @@ msgstr "Mês(es)" msgid "Month(s) last day" msgstr "Último dia do Mês(es)" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1610,6 +1616,12 @@ msgstr "Marcadores" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -1773,8 +1785,8 @@ msgstr "" #~ "

\n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract Date Start:
\n" @@ -1783,8 +1795,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your Contact:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\">\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

If you have any questions, do not hesitate to contact " #~ "us.

\n" -#~ "

Thank you for choosing !

\n" +#~ "

Thank you for choosing !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ "
\n" #~ " \n" #~ "
\n" -#~ " Web: \n" +#~ " Web: \n" #~ "
\n" #~ "
\n" #~ "
\n" @@ -1851,8 +1865,8 @@ msgstr "" #~ "30px;\">\n" #~ "   REFERÊNCIAS
\n" -#~ "   Contrato:
\n" +#~ "   Contrato:
\n" #~ " \n" #~ "   Data de início do contrato: " #~ "
\n" @@ -1861,8 +1875,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Seu contato:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\" object.user_id.name\">\n" #~ "
\n" #~ " \n" #~ "   Seu contato: \n" #~ "

Se você tiver alguma dúvida, não hesite em nos " #~ "contatar.

\n" -#~ "

Obrigado por escolher !

\n" +#~ "

Obrigado por escolher !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ "
\n" -#~ " Telefone: \n" +#~ " Telefone: \n" #~ "
\n" #~ "
\n" #~ " \n" #~ "
\n" -#~ " Web: \n" +#~ " Web: \n" #~ "
\n" #~ "
\n" #~ "
\n" @@ -2325,8 +2341,8 @@ msgstr "" #~ msgstr "Erro de Entrega de SMS" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " contrato para faturar\n" #~ " \n" #~ " \n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " \n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ " \n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/pt_PT.po b/contract/i18n/pt_PT.po index 7da99420bb..1bc72f3d2d 100644 --- a/contract/i18n/pt_PT.po +++ b/contract/i18n/pt_PT.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2017-11-21 18:22+0000\n" "PO-Revision-Date: 2018-09-24 22:47+0000\n" "Last-Translator: Daniel Reis \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" @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -942,6 +942,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1160,6 +1161,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1588,6 +1594,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/ro.po b/contract/i18n/ro.po index 98482c2b5e..7a8d7228cc 100644 --- a/contract/i18n/ro.po +++ b/contract/i18n/ro.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -941,6 +941,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1159,6 +1160,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1587,6 +1593,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/ru.po b/contract/i18n/ru.po index 4db8d8d560..0bb743da01 100644 --- a/contract/i18n/ru.po +++ b/contract/i18n/ru.po @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -953,6 +953,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1177,6 +1178,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1610,6 +1616,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/sk.po b/contract/i18n/sk.po index fb7e7fa0e5..b21bbf1de6 100644 --- a/contract/i18n/sk.po +++ b/contract/i18n/sk.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/sk_SK.po b/contract/i18n/sk_SK.po index d11d7c107a..4554078b9d 100644 --- a/contract/i18n/sk_SK.po +++ b/contract/i18n/sk_SK.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/sl.po b/contract/i18n/sl.po index 9af572d7a0..888d83d946 100644 --- a/contract/i18n/sl.po +++ b/contract/i18n/sl.po @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/sr.po b/contract/i18n/sr.po index f65a2a2403..d328fd35af 100644 --- a/contract/i18n/sr.po +++ b/contract/i18n/sr.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/sr@latin.po b/contract/i18n/sr@latin.po index 87505c4e46..58ab46b716 100644 --- a/contract/i18n/sr@latin.po +++ b/contract/i18n/sr@latin.po @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -940,6 +940,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/sv.po b/contract/i18n/sv.po index e89d599a42..cac5eb2241 100644 --- a/contract/i18n/sv.po +++ b/contract/i18n/sv.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" "   REFERENSER
\n" -"   Kontrakt:
\n" +"   Kontrakt:
\n" " \n" "   Kontraktstart, datum:
\n" @@ -116,8 +116,8 @@ msgstr "" " \n" " \n" "   Er kontakt:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Er kontakt: \n" " \n" -"
\n" +"
\n" " \n" " \n" " \n" @@ -191,8 +191,8 @@ msgid "" "\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -1052,6 +1052,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "Pågående" @@ -1269,6 +1270,11 @@ msgstr "Månad(er)" msgid "Month(s) last day" msgstr "Månad(er) sista dagen" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1431,8 +1437,8 @@ msgstr "Betalningsvillkor" msgid "" "Please define a %(contract_type)s journal for the company '%(company)s'." msgstr "" -"Vänligen definiera en %(contract_type)s journal för företaget " -"\"%(company)s\"." +"Vänligen definiera en %(contract_type)s journal för företaget \"%" +"(company)s\"." #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__access_url @@ -1709,6 +1715,12 @@ msgstr "Etiketter" msgid "Technical field for UX purposes." msgstr "Tekniskt fält för UX-ändamål." +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -1872,8 +1884,8 @@ msgstr "" #~ "

\n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract Date Start:
\n" @@ -1882,8 +1894,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your Contact:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\">\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

If you have any questions, do not hesitate to contact " #~ "us.

\n" -#~ "

Thank you for choosing !

\n" +#~ "

Thank you for choosing !

\n" #~ "
\n" #~ "
\n" #~ " \n" diff --git a/contract/i18n/th.po b/contract/i18n/th.po index a9a277d07f..e78b69b41b 100644 --- a/contract/i18n/th.po +++ b/contract/i18n/th.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1156,6 +1157,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1584,6 +1590,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/tr.po b/contract/i18n/tr.po index 70d1a9c544..0aa97117c0 100644 --- a/contract/i18n/tr.po +++ b/contract/i18n/tr.po @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" "\n" " faturalanacak abonelik\n" " \n" -" \n" +" \n" " faturalanacak abonelikler\n" " " @@ -968,6 +968,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "Devam Eden" @@ -1185,6 +1186,11 @@ msgstr "Ay(lar)" msgid "Month(s) last day" msgstr "Ay(lar) son günü" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1622,6 +1628,12 @@ msgstr "Etiketler" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -2190,8 +2202,8 @@ msgstr "" #~ msgstr "SMS Ulaştırma hatası" #~ msgid "" -#~ "\n" +#~ "\n" #~ " contract to invoice\n" #~ " \n" #~ " " #~ msgstr "" -#~ "\n" +#~ "\n" #~ " fatura sözleşmesi\n" #~ " \n" #~ " \n" #~ "   REFERENCES
\n" -#~ "   Contract:
\n" +#~ "   Contract:
\n" #~ " \n" #~ "   Contract Date Start:
\n" @@ -2241,8 +2253,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Your Contact:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\"/>\n" #~ " \n" #~ " \n" #~ "   Your Contact: \n" #~ "

If you have any questions, do not hesitate to contact " #~ "us.

\n" -#~ "

Thank you for choosing !

\n" +#~ "

Thank you for choosing !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ "
\n" +#~ "
\n" #~ " \n" #~ " \n" #~ " \n" @@ -2310,8 +2323,8 @@ msgstr "" #~ "30px;\">\n" #~ "   REFERANSLAR
\n" -#~ "   Sözleşme:
\n" +#~ "   Sözleşme:
\n" #~ " \n" #~ "   Sözleşme Tarihi Başlanma:
\n" @@ -2320,8 +2333,8 @@ msgstr "" #~ " \n" #~ " \n" #~ "   Bağlantınız:
\n" +#~ "href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, " +#~ "object.name)\" t-out=\"object.user_id.name\"/>\n" #~ " \n" #~ " \n" #~ "   Bağlantınız: \n" #~ "

Herhangi bir sorunuz varsa, bizimle iletişime " #~ "geçmekten çekinmeyin.

\n" -#~ "

Seçtiğiniz için teşekkürler !

\n" +#~ "

Seçtiğiniz için teşekkürler !

\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ " \n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/tr_TR.po b/contract/i18n/tr_TR.po index bc779b2583..fca63a35f4 100644 --- a/contract/i18n/tr_TR.po +++ b/contract/i18n/tr_TR.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -954,6 +954,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1180,6 +1181,11 @@ msgstr "Ay(lar)" msgid "Month(s) last day" msgstr "Ay(ların) Son Günü" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1613,6 +1619,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/uk.po b/contract/i18n/uk.po index de331c9b08..2a803d3b49 100644 --- a/contract/i18n/uk.po +++ b/contract/i18n/uk.po @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/vi.po b/contract/i18n/vi.po index 9f345f806c..f53cd986ff 100644 --- a/contract/i18n/vi.po +++ b/contract/i18n/vi.po @@ -29,8 +29,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -39,8 +39,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -938,6 +938,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1155,6 +1156,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1583,6 +1589,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/vi_VN.po b/contract/i18n/vi_VN.po index 63f31af4f3..bbe64ad5aa 100644 --- a/contract/i18n/vi_VN.po +++ b/contract/i18n/vi_VN.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2017-11-21 18:22+0000\n" "PO-Revision-Date: 2017-11-21 18:22+0000\n" "Last-Translator: OCA Transbot , 2017\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" -"teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/" +"23907/vi_VN/)\n" "Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,8 +30,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -40,8 +40,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -939,6 +939,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1157,6 +1158,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1585,6 +1591,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." diff --git a/contract/i18n/zh_CN.po b/contract/i18n/zh_CN.po index 7cbfc5badf..adb74d733f 100644 --- a/contract/i18n/zh_CN.po +++ b/contract/i18n/zh_CN.po @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact:
\n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -950,6 +950,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "进行中" @@ -1171,6 +1172,11 @@ msgstr "月" msgid "Month(s) last day" msgstr "月底" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1605,6 +1611,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record." @@ -2136,16 +2148,16 @@ msgstr "" #~ "5px 5px; background-repeat: repeat no-repeat;\">\n" #~ "

\n" -#~ " ${object." -#~ "company_id.name}

\n" +#~ " $" +#~ "{object.company_id.name}\n" #~ "
\n" #~ "
\n" #~ "
\n" #~ " \n" -#~ " ${object.company_id.partner_id.sudo()." -#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | " -#~ "safe}\n" +#~ " $" +#~ "{object.company_id.partner_id.sudo().with_context(show_address=True, " +#~ "html_format=True).name_get()[0][1] | safe}\n" #~ " \n" #~ " % if object.company_id.phone:\n" #~ "
\n" -#~ " 网址:${object." -#~ "company_id.website}\n" +#~ " 网址:$" +#~ "{object.company_id.website}\n" #~ "
\n" #~ " %endif\n" #~ "

\n" diff --git a/contract/i18n/zh_TW.po b/contract/i18n/zh_TW.po index 11e42e4b8e..235b1a648f 100644 --- a/contract/i18n/zh_TW.po +++ b/contract/i18n/zh_TW.po @@ -31,8 +31,8 @@ msgid "" "

\n" "   REFERENCES
\n" -"   Contract:
\n" +"   Contract:
\n" " \n" "   Contract Date Start:
\n" @@ -41,8 +41,8 @@ msgid "" " \n" " \n" "   Your Contact: \n" +"href=\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)" +"\" t-out=\"object.user_id.name\"/>\n" " \n" " \n" "   Your Contact: \n" " \n" -"

\n" +"
\n" " \n" " \n" "
\n" " contract to invoice\n" " \n" -" \n" +" \n" " contracts to invoice\n" " " msgstr "" @@ -943,6 +943,7 @@ msgstr "" #. module: contract #: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view msgid "In progress" msgstr "" @@ -1160,6 +1161,11 @@ msgstr "" msgid "Month(s) last day" msgstr "" +#. module: contract +#: model:ir.model.fields,field_description:contract.field_contract_line__monthly_recurring +msgid "Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,field_description:contract.field_contract_contract__my_activity_date_deadline msgid "My Activity Deadline" @@ -1588,6 +1594,12 @@ msgstr "" msgid "Technical field for UX purposes." msgstr "" +#. module: contract +#: model_terms:ir.ui.view,arch_db:contract.contract_line_report_tree_view +#: model_terms:ir.ui.view,arch_db:contract.contract_line_tree_view +msgid "Total Monthly Recurring" +msgstr "" + #. module: contract #: model:ir.model.fields,help:contract.field_contract_contract__activity_exception_decoration msgid "Type of the exception activity on record."