mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
ADJ: When generating invoices from the Wizard to create invoices manually, reraise any UserError with information about which contract triggered the exception to facilitate the investigation by accountants in case invoices are not generated automatically.
This commit is contained in:
committed by
Christopher Rogos
parent
e61cb592d9
commit
aad405e568
@@ -11,7 +11,7 @@
|
||||
|
||||
{
|
||||
"name": "Recurring - Contracts Management",
|
||||
"version": "15.0.1.1.0",
|
||||
"version": "15.0.1.1.1",
|
||||
"category": "Contract Management",
|
||||
"license": "AGPL-3",
|
||||
"author": "Tecnativa, ACSONE SA/NV, Odoo Community Association (OCA)",
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1230,25 +1249,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1299,7 +1309,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1528,7 +1538,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr "Описание"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,169 +19,93 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" <p>Hola</p>\n"
|
||||
" <p>Hi ha modificacions al contracte que volem notificar-li.</p>\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hola ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>S'ha creat un nou contracte: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERÈNCIES</strong><br />\n"
|
||||
" Contracte: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Data d'inici: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Persona de contacte: <a href=\"mailto:${"
|
||||
"object.user_id.email or ''}?subject=Contracte%20${object.name}\">${object."
|
||||
"user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" El seu contracte: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>No dubti en posar-se en contacte amb nosaltres per tal de fer "
|
||||
"qualsevol aclariment.</p>\n"
|
||||
" <p>Gràcies per triar ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo().with_context("
|
||||
"show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Telèfon: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object."
|
||||
"id}?access_token=${object.access_token}\" target=\"_blank\" style"
|
||||
"=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: "
|
||||
"none; color: #fff; border-radius: 5px; font-size:13px;\">Veure el "
|
||||
"contracte</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Contracte (Ref ${object.name or 'n/d'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
"${object.company_id.name} Contracte (Ref ${object.name or 'n/a'}) - "
|
||||
"Modificacions"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
@@ -197,8 +121,8 @@ msgstr ""
|
||||
"<span attrs=\"{'invisible': [('contract_to_invoice_count', '>', 1)]}\">\n"
|
||||
" contracte a facturar\n"
|
||||
" </span>\n"
|
||||
" <span attrs=\"{'invisible': [("
|
||||
"'contract_to_invoice_count', '<=', 1)]}\">\n"
|
||||
" <span attrs=\"{'invisible': "
|
||||
"[('contract_to_invoice_count', '<=', 1)]}\">\n"
|
||||
" contractes a facturar\n"
|
||||
" </span>"
|
||||
|
||||
@@ -466,7 +390,6 @@ msgstr "Nombre d'adjunts"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "Renovació automàtica"
|
||||
@@ -519,6 +442,13 @@ msgstr "La cancel·lació no està permesa per a aquesta línia"
|
||||
msgid "Canceled"
|
||||
msgstr "Cancel·lat"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -640,6 +570,11 @@ msgstr "Wizard Crear manualment factura"
|
||||
msgid "Contract Modification"
|
||||
msgstr "Modificació de contracte"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -716,8 +651,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgstr "Línia de contracte reactivada: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -734,32 +669,29 @@ msgstr "La línia de contracte i les seves successores estan solapades"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgstr "Línia de contracte cancel·lada: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Línia de contracte <strong>{product}</strong>\n"
|
||||
" aturada: <br/>\n"
|
||||
" - <strong>Fi</strong>: {old_end} -- {new_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -767,37 +699,25 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Línia de contracte <strong>{product}</strong>\n"
|
||||
" renovada: <br/>\n"
|
||||
" - <strong>Inici</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fi</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Línia de contracte <strong>{product}</strong>\n"
|
||||
" suspesa: <br/>\n"
|
||||
" - <strong>Inici de la suspensió</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fi de la suspensió</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -819,11 +739,9 @@ msgstr "Línies de contracte (fixes)"
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
"Contracte facturat manualment: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.message.subtype,name:contract.mail_message_subtype_contract_modification
|
||||
@@ -862,6 +780,15 @@ msgstr "Contractes"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Contractes a facturar"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -1047,6 +974,7 @@ msgstr "Descripció"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Descompte (%)"
|
||||
|
||||
@@ -1068,25 +996,16 @@ msgstr ""
|
||||
"igual a 100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom a mostrar"
|
||||
|
||||
@@ -1097,6 +1016,19 @@ msgstr "Nom a mostrar"
|
||||
msgid "Display Type"
|
||||
msgstr "Tipus de visualització"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1112,11 +1044,6 @@ msgstr "Posició fiscal"
|
||||
msgid "Followers"
|
||||
msgstr "Seguidors"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr "Seguidors (Canals)"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1145,25 +1072,21 @@ msgid "Group By..."
|
||||
msgstr "Agrupa Per..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1308,6 +1231,11 @@ msgstr "Tipus de facturació"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Tipus de Facturació"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1353,25 +1281,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Darrera Data de Facturació"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Darrera Modificació el"
|
||||
|
||||
@@ -1422,8 +1341,8 @@ msgstr "Moneda manual"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgstr "Renovació manial requerida"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.actions.act_window,name:contract.purchase_contract_manually_create_invoice_act_window
|
||||
@@ -1656,8 +1575,9 @@ msgstr "Successor del pla no està permès per aquesta línia"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Si us plau estableixi un %s diari per a l'empresa '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -2007,6 +1927,7 @@ msgstr "Aturar/planificar successor no està permès per aquesta línia"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Subtotal"
|
||||
|
||||
@@ -2089,6 +2010,11 @@ msgstr "Data de finalització"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr "Avís de finalització previ"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2102,11 +2028,6 @@ msgstr "Tipus d'avís de finalitzazció"
|
||||
msgid "Termination Reason"
|
||||
msgstr "Motiu de finalització"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr "Data de l'avís de la finalització"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2273,7 +2194,8 @@ msgstr "No tens permisos per finalitzar contractes."
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "You can't delay a contract line invoiced at least one time."
|
||||
msgstr "No pots endarrerir una línia de contracte facturada com a mínim un cop."
|
||||
msgstr ""
|
||||
"No pots endarrerir una línia de contracte facturada com a mínim un cop."
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -2331,6 +2253,251 @@ msgstr "p.ex. Contracte XYZ"
|
||||
msgid "on"
|
||||
msgstr "a"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ " <p>Hello</p>\n"
|
||||
#~ " <p>We have modifications on the contract that we want to "
|
||||
#~ "notify you.</p>\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "\n"
|
||||
#~ " <p>Hola</p>\n"
|
||||
#~ " <p>Hi ha modificacions al contracte que volem notificar-li.</"
|
||||
#~ "p>\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
#~ "serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; "
|
||||
#~ "\">\n"
|
||||
#~ " <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
#~ " <p>A new contract has been created: </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
#~ " <strong>REFERENCES</strong><br />\n"
|
||||
#~ " Contract: <strong>${object.name}</strong><br />\n"
|
||||
#~ " % if object.date_start:\n"
|
||||
#~ " Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
#~ " % endif\n"
|
||||
#~ "\n"
|
||||
#~ " % if object.user_id:\n"
|
||||
#~ " % if object.user_id.email:\n"
|
||||
#~ " Your Contact: <a href=\"mailto:${object.user_id.email "
|
||||
#~ "or ''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
#~ " % else:\n"
|
||||
#~ " Your Contact: ${object.user_id.name}\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % endif\n"
|
||||
#~ " </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
#~ " <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <div style=\"width: 375px; margin: 0px; padding: 0px; background-"
|
||||
#~ "color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: "
|
||||
#~ "5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
#~ " <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; "
|
||||
#~ "color: #DDD;\">\n"
|
||||
#~ " <strong style=\"text-transform:uppercase;\">${object."
|
||||
#~ "company_id.name}</strong></h3>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-"
|
||||
#~ "height: 16px; background-color: #F2F2F2;\">\n"
|
||||
#~ " <span style=\"color: #222; margin-bottom: 5px; display: block; "
|
||||
#~ "\">\n"
|
||||
#~ " ${object.company_id.partner_id.sudo()."
|
||||
#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | "
|
||||
#~ "safe}\n"
|
||||
#~ " </span>\n"
|
||||
#~ " % if object.company_id.phone:\n"
|
||||
#~ " <div style=\"margin-top: 0px; margin-right: 0px; margin-"
|
||||
#~ "bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
#~ "padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
#~ " Phone: ${object.company_id.phone}\n"
|
||||
#~ " </div>\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % if object.company_id.website:\n"
|
||||
#~ " <div>\n"
|
||||
#~ " Web: <a href=\"${object.company_id.website}\">${object."
|
||||
#~ "company_id.website}</a>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " %endif\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
#~ "access_token=${object.access_token}\" target=\"_blank\" style="
|
||||
#~ "\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: "
|
||||
#~ "none; color: #fff; border-radius: 5px; font-size:13px;\">View contract</"
|
||||
#~ "a>\n"
|
||||
#~ "</div>\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
#~ "serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; "
|
||||
#~ "\">\n"
|
||||
#~ " <p>Hola ${object.partner_id.name or ''},</p>\n"
|
||||
#~ " <p>S'ha creat un nou contracte: </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
#~ " <strong>REFERÈNCIES</strong><br />\n"
|
||||
#~ " Contracte: <strong>${object.name}</strong><br />\n"
|
||||
#~ " % if object.date_start:\n"
|
||||
#~ " Data d'inici: ${object.date_start or ''}<br />\n"
|
||||
#~ " % endif\n"
|
||||
#~ "\n"
|
||||
#~ " % if object.user_id:\n"
|
||||
#~ " % if object.user_id.email:\n"
|
||||
#~ " Persona de contacte: <a href=\"mailto:${object.user_id."
|
||||
#~ "email or ''}?subject=Contracte%20${object.name}\">${object.user_id.name}</"
|
||||
#~ "a>\n"
|
||||
#~ " % else:\n"
|
||||
#~ " El seu contracte: ${object.user_id.name}\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % endif\n"
|
||||
#~ " </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <p>No dubti en posar-se en contacte amb nosaltres per tal de fer "
|
||||
#~ "qualsevol aclariment.</p>\n"
|
||||
#~ " <p>Gràcies per triar ${object.company_id.name or 'us'}!</p>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <div style=\"width: 375px; margin: 0px; padding: 0px; background-"
|
||||
#~ "color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: "
|
||||
#~ "5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
#~ " <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; "
|
||||
#~ "color: #DDD;\">\n"
|
||||
#~ " <strong style=\"text-transform:uppercase;\">${object."
|
||||
#~ "company_id.name}</strong></h3>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-"
|
||||
#~ "height: 16px; background-color: #F2F2F2;\">\n"
|
||||
#~ " <span style=\"color: #222; margin-bottom: 5px; display: block; "
|
||||
#~ "\">\n"
|
||||
#~ " ${object.company_id.partner_id.sudo()."
|
||||
#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | "
|
||||
#~ "safe}\n"
|
||||
#~ " </span>\n"
|
||||
#~ " % if object.company_id.phone:\n"
|
||||
#~ " <div style=\"margin-top: 0px; margin-right: 0px; margin-"
|
||||
#~ "bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
#~ "padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
#~ " Telèfon: ${object.company_id.phone}\n"
|
||||
#~ " </div>\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % if object.company_id.website:\n"
|
||||
#~ " <div>\n"
|
||||
#~ " Web: <a href=\"${object.company_id.website}\">${object."
|
||||
#~ "company_id.website}</a>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " %endif\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
#~ "access_token=${object.access_token}\" target=\"_blank\" style="
|
||||
#~ "\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: "
|
||||
#~ "none; color: #fff; border-radius: 5px; font-size:13px;\">Veure el "
|
||||
#~ "contracte</a>\n"
|
||||
#~ "</div>\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Contracte (Ref ${object.name or 'n/d'})"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
#~ "Modifications"
|
||||
#~ msgstr ""
|
||||
#~ "${object.company_id.name} Contracte (Ref ${object.name or 'n/a'}) - "
|
||||
#~ "Modificacions"
|
||||
|
||||
#~ msgid "Contract line Un-canceled: %s<br/>- "
|
||||
#~ msgstr "Línia de contracte reactivada: %s<br/>- "
|
||||
|
||||
#~ msgid "Contract line canceled: %s<br/>- "
|
||||
#~ msgstr "Línia de contracte cancel·lada: %s<br/>- "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " stopped: <br/>\n"
|
||||
#~ " - <strong>End</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Línia de contracte <strong>{product}</strong>\n"
|
||||
#~ " aturada: <br/>\n"
|
||||
#~ " - <strong>Fi</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " renewed: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Línia de contracte <strong>{product}</strong>\n"
|
||||
#~ " renovada: <br/>\n"
|
||||
#~ " - <strong>Inici</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fi</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " suspended: <br/>\n"
|
||||
#~ " - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Línia de contracte <strong>{product}</strong>\n"
|
||||
#~ " suspesa: <br/>\n"
|
||||
#~ " - <strong>Inici de la suspensió</strong>: "
|
||||
#~ "{new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fi de la suspensió</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
#~ "\"%s\">Invoice</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Contracte facturat manualment: <a href=\"#\" data-oe-model=\"%s\" data-oe-"
|
||||
#~ "id=\"%s\">Invoice</a>"
|
||||
|
||||
#~ msgid "Followers (Channels)"
|
||||
#~ msgstr "Seguidors (Canals)"
|
||||
|
||||
#~ msgid "Manual renew needed"
|
||||
#~ msgstr "Renovació manial requerida"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Si us plau estableixi un %s diari per a l'empresa '%s'."
|
||||
|
||||
#~ msgid "Termination notice date"
|
||||
#~ msgstr "Data de l'avís de la finalització"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
|
||||
@@ -961,6 +961,14 @@ msgstr ""
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "Id"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -20,97 +20,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Vertrag (Ref: ${object.name or 'k.A.'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -379,7 +376,6 @@ msgstr "Anhangsanzahl"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "Auto-Erneuern"
|
||||
@@ -432,6 +428,13 @@ msgstr "Das Abbrechen für diese Zeile ist nicht erlaubt."
|
||||
msgid "Canceled"
|
||||
msgstr "Abgebrochen"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -554,6 +557,11 @@ msgstr "Assistent zum manuellen Erstellen der Rechnung"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -633,8 +641,8 @@ msgstr "Vertragsbeginn '%s' darf nicht nach dem Vertragsende liegen"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgstr "Vertragsposition Storno aufgehoben: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -651,76 +659,55 @@ msgstr "Die Vertragsposition und dessen Nachfolger überlappen sich."
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgstr "Die Vertragsposition wurde abgebrochen: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Vertragsposition für <strong>{product}</strong>\n"
|
||||
" beendet: <br/>\n"
|
||||
" - <strong>Ende</strong>: {old_end} -- {new_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Vertragsposition für <strong>{product}</strong>\n"
|
||||
" hat neu geplanten Nachfolger: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Ende</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Vertragsposition für <strong>{product}</strong>\n"
|
||||
" erneuert: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Ende</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Vertragsposition für <strong>{product}</strong>\n"
|
||||
" ausgesetzt: <br/>\n"
|
||||
" - <strong>Aussetzung Start</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Aussezung Ende</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -743,11 +730,9 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
"Vertrag manuell abgerechnet: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Rechnung</a>"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.message.subtype,name:contract.mail_message_subtype_contract_modification
|
||||
@@ -786,6 +771,15 @@ msgstr "Verträge"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Vertragsposition"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -969,6 +963,7 @@ msgstr "Beschreibung"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Rabatt (%)"
|
||||
|
||||
@@ -990,25 +985,16 @@ msgstr ""
|
||||
"100 sein"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
@@ -1020,6 +1006,19 @@ msgstr "Anzeigename"
|
||||
msgid "Display Type"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1035,11 +1034,6 @@ msgstr "Steuerzuordnung"
|
||||
msgid "Followers"
|
||||
msgstr "Abonnenten"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr "Abonnenten (Kanäle)"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1068,25 +1062,21 @@ msgid "Group By..."
|
||||
msgstr "Gruppieren nach..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1232,6 +1222,11 @@ msgstr "Abrechnungsart"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Abrechnungsart"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1277,25 +1272,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Datum der letzten Rechnung"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zuletzt geändert am"
|
||||
|
||||
@@ -1346,8 +1332,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgstr "Manuelles Erneuern erforderlich"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.actions.act_window,name:contract.purchase_contract_manually_create_invoice_act_window
|
||||
@@ -1576,8 +1562,9 @@ msgstr "Nachfolger planen für diese Position nicht zulässig"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Legen Sie bitte ein %s-Journal für das Unternehmen '%s' fest."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -1925,6 +1912,7 @@ msgstr "Nachfolger beenden/planen in dieser Position nicht zulässig"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Zwischensumme"
|
||||
|
||||
@@ -2007,6 +1995,11 @@ msgstr "Datum der Vertragskündigung"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr "Abschluss Vorausbenachtigung"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2020,11 +2013,6 @@ msgstr "Abschluss Meldungsart"
|
||||
msgid "Termination Reason"
|
||||
msgstr "Kündigungsgrund"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr "Abschluss Meldungsdatum"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2252,6 +2240,104 @@ msgstr "z.B. Vertrag XYZ"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Vertrag (Ref: ${object.name or 'k.A.'})"
|
||||
|
||||
#~ msgid "Contract line Un-canceled: %s<br/>- "
|
||||
#~ msgstr "Vertragsposition Storno aufgehoben: %s<br/>- "
|
||||
|
||||
#~ msgid "Contract line canceled: %s<br/>- "
|
||||
#~ msgstr "Die Vertragsposition wurde abgebrochen: %s<br/>- "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " stopped: <br/>\n"
|
||||
#~ " - <strong>End</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Vertragsposition für <strong>{product}</strong>\n"
|
||||
#~ " beendet: <br/>\n"
|
||||
#~ " - <strong>Ende</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " planned a successor: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Vertragsposition für <strong>{product}</strong>\n"
|
||||
#~ " hat neu geplanten Nachfolger: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Ende</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " renewed: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Vertragsposition für <strong>{product}</strong>\n"
|
||||
#~ " erneuert: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Ende</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " suspended: <br/>\n"
|
||||
#~ " - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Vertragsposition für <strong>{product}</strong>\n"
|
||||
#~ " ausgesetzt: <br/>\n"
|
||||
#~ " - <strong>Aussetzung Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Aussezung Ende</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
#~ "\"%s\">Invoice</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Vertrag manuell abgerechnet: <a href=\"#\" data-oe-model=\"%s\" data-oe-"
|
||||
#~ "id=\"%s\">Rechnung</a>"
|
||||
|
||||
#~ msgid "Followers (Channels)"
|
||||
#~ msgstr "Abonnenten (Kanäle)"
|
||||
|
||||
#~ msgid "Manual renew needed"
|
||||
#~ msgstr "Manuelles Erneuern erforderlich"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Legen Sie bitte ein %s-Journal für das Unternehmen '%s' fest."
|
||||
|
||||
#~ msgid "Termination notice date"
|
||||
#~ msgstr "Abschluss Meldungsdatum"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -376,7 +373,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -429,6 +425,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -550,6 +553,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -626,7 +634,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -644,16 +652,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -661,11 +670,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -673,11 +682,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -685,11 +694,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -713,8 +722,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -754,6 +763,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -936,6 +954,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -955,25 +974,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -984,6 +994,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -999,11 +1022,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1032,25 +1050,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
@@ -1187,6 +1201,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1233,25 +1252,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Τελευταία ενημέρωση στις"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1302,7 +1312,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1531,7 +1541,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1876,6 +1887,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1958,6 +1970,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1971,11 +1988,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2189,3 +2201,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1230,25 +1249,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1299,7 +1309,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1528,7 +1538,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -20,167 +20,93 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Poedit 2.3\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" <p>Hola</p>\n"
|
||||
" <p>Tenemos modificaciones en el contrato que queremos "
|
||||
"notificarle.</p>\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hola ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>Se ha creado un nuevo contrato: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCIAS</strong><br />\n"
|
||||
" Contrato: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Fecha inicio contrato: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Su contacto: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Su contacto: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>Si tiene alguna pregunta, no dude en contactarnos.</p>\n"
|
||||
" <p>Gracias por elegir a ${object.company_id.name or 'nosotros'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Teléfono: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">Ver contrato</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Contrato (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
"${object.company_id.name} Contrato (Ref ${object.name or 'n/a'}) - "
|
||||
"Modificaciones"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
@@ -455,7 +381,6 @@ msgstr "Nº de archivos adjuntos"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "Auto-renovación"
|
||||
@@ -508,6 +433,13 @@ msgstr "Cancelar no permitido para esta línea"
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -629,6 +561,11 @@ msgstr "Asistente de creación manual de facturas de contrato"
|
||||
msgid "Contract Modification"
|
||||
msgstr "Modificación del contrato"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -706,8 +643,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgstr "Línea de contrato no cancelada: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -724,76 +661,55 @@ msgstr "Línea de contrato y su sucesor superpuestos"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgstr "Línea de contrato cancelada: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Línea de contrato para <strong>{product}</strong>\n"
|
||||
" detenida: <br/>\n"
|
||||
" - <strong>Fin</strong>: {old_end} -- {new_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Línea de contrato para <strong>{product}</strong>\n"
|
||||
" planeó un sucesor: <br/>\n"
|
||||
" - <strong>Inicio</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fin</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Línea de contrato para <strong>{product}</strong>\n"
|
||||
" renovado: <br/>\n"
|
||||
" - <strong>Inicio</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fin</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Línea de contrato para <strong>{product}</strong>\n"
|
||||
" suspendida: <br/>\n"
|
||||
" - <strong>Inicio Suspensión</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fin Suspensión</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -815,11 +731,9 @@ msgstr "Líneas de contrato (fijo)"
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
"Contratos facturados manualmente: <a href=\"#\" data-oe-model=\"%s\" data-oe-"
|
||||
"id=\"%s\">Factura</a>"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.message.subtype,name:contract.mail_message_subtype_contract_modification
|
||||
@@ -858,6 +772,15 @@ msgstr "Contratos"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Contratos a facturar"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -1043,6 +966,7 @@ msgstr "Descripción"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Descuento (%)"
|
||||
|
||||
@@ -1064,25 +988,16 @@ msgstr ""
|
||||
"igual a 100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
@@ -1093,6 +1008,19 @@ msgstr "Nombre mostrado"
|
||||
msgid "Display Type"
|
||||
msgstr "Tipo de visualización"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1108,11 +1036,6 @@ msgstr "Posición fiscal"
|
||||
msgid "Followers"
|
||||
msgstr "Seguimiento"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr "Seguimiento (Canales)"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1141,25 +1064,21 @@ msgid "Group By..."
|
||||
msgstr "Agrupar por..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1304,6 +1223,11 @@ msgstr "Compensación de Facturación"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Tipo de facturación"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1349,25 +1273,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Última fecha facturada"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación en"
|
||||
|
||||
@@ -1419,8 +1334,8 @@ msgstr "Moneda manual"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgstr "Renovación manual necesaria"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.actions.act_window,name:contract.purchase_contract_manually_create_invoice_act_window
|
||||
@@ -1652,8 +1567,9 @@ msgstr "El sucesor del plan no está permitido para esta línea"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Por favor defina un diario de %s para la compañía '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -2004,6 +1920,7 @@ msgstr "El sucesor Stop / Plan no está permitido para esta línea"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Subtotal"
|
||||
|
||||
@@ -2086,6 +2003,11 @@ msgstr "Fecha de finalización"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr "Aviso de terminación antes"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2099,11 +2021,6 @@ msgstr "Tipo de aviso de terminación"
|
||||
msgid "Termination Reason"
|
||||
msgstr "Razón de finalización"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr "Fecha de aviso de terminación"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2331,6 +2248,264 @@ msgstr "ejemplo Contrato XYZ"
|
||||
msgid "on"
|
||||
msgstr "en"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ " <p>Hello</p>\n"
|
||||
#~ " <p>We have modifications on the contract that we want to "
|
||||
#~ "notify you.</p>\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "\n"
|
||||
#~ " <p>Hola</p>\n"
|
||||
#~ " <p>Tenemos modificaciones en el contrato que queremos "
|
||||
#~ "notificarle.</p>\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
#~ "serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; "
|
||||
#~ "\">\n"
|
||||
#~ " <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
#~ " <p>A new contract has been created: </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
#~ " <strong>REFERENCES</strong><br />\n"
|
||||
#~ " Contract: <strong>${object.name}</strong><br />\n"
|
||||
#~ " % if object.date_start:\n"
|
||||
#~ " Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
#~ " % endif\n"
|
||||
#~ "\n"
|
||||
#~ " % if object.user_id:\n"
|
||||
#~ " % if object.user_id.email:\n"
|
||||
#~ " Your Contact: <a href=\"mailto:${object.user_id.email "
|
||||
#~ "or ''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
#~ " % else:\n"
|
||||
#~ " Your Contact: ${object.user_id.name}\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % endif\n"
|
||||
#~ " </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
#~ " <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <div style=\"width: 375px; margin: 0px; padding: 0px; background-"
|
||||
#~ "color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: "
|
||||
#~ "5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
#~ " <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; "
|
||||
#~ "color: #DDD;\">\n"
|
||||
#~ " <strong style=\"text-transform:uppercase;\">${object."
|
||||
#~ "company_id.name}</strong></h3>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-"
|
||||
#~ "height: 16px; background-color: #F2F2F2;\">\n"
|
||||
#~ " <span style=\"color: #222; margin-bottom: 5px; display: block; "
|
||||
#~ "\">\n"
|
||||
#~ " ${object.company_id.partner_id.sudo()."
|
||||
#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | "
|
||||
#~ "safe}\n"
|
||||
#~ " </span>\n"
|
||||
#~ " % if object.company_id.phone:\n"
|
||||
#~ " <div style=\"margin-top: 0px; margin-right: 0px; margin-"
|
||||
#~ "bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
#~ "padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
#~ " Phone: ${object.company_id.phone}\n"
|
||||
#~ " </div>\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % if object.company_id.website:\n"
|
||||
#~ " <div>\n"
|
||||
#~ " Web: <a href=\"${object.company_id.website}\">${object."
|
||||
#~ "company_id.website}</a>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " %endif\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
#~ "access_token=${object.access_token}\" target=\"_blank\" style="
|
||||
#~ "\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: "
|
||||
#~ "none; color: #fff; border-radius: 5px; font-size:13px;\">View contract</"
|
||||
#~ "a>\n"
|
||||
#~ "</div>\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
#~ "serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; "
|
||||
#~ "\">\n"
|
||||
#~ " <p>Hola ${object.partner_id.name or ''},</p>\n"
|
||||
#~ " <p>Se ha creado un nuevo contrato: </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
#~ " <strong>REFERENCIAS</strong><br />\n"
|
||||
#~ " Contrato: <strong>${object.name}</strong><br />\n"
|
||||
#~ " % if object.date_start:\n"
|
||||
#~ " Fecha inicio contrato: ${object.date_start or ''}<br /"
|
||||
#~ ">\n"
|
||||
#~ " % endif\n"
|
||||
#~ "\n"
|
||||
#~ " % if object.user_id:\n"
|
||||
#~ " % if object.user_id.email:\n"
|
||||
#~ " Su contacto: <a href=\"mailto:${object.user_id.email "
|
||||
#~ "or ''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
#~ " % else:\n"
|
||||
#~ " Su contacto: ${object.user_id.name}\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % endif\n"
|
||||
#~ " </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <p>Si tiene alguna pregunta, no dude en contactarnos.</p>\n"
|
||||
#~ " <p>Gracias por elegir a ${object.company_id.name or 'nosotros'}!</p>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <div style=\"width: 375px; margin: 0px; padding: 0px; background-"
|
||||
#~ "color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: "
|
||||
#~ "5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
#~ " <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; "
|
||||
#~ "color: #DDD;\">\n"
|
||||
#~ " <strong style=\"text-transform:uppercase;\">${object."
|
||||
#~ "company_id.name}</strong></h3>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-"
|
||||
#~ "height: 16px; background-color: #F2F2F2;\">\n"
|
||||
#~ " <span style=\"color: #222; margin-bottom: 5px; display: block; "
|
||||
#~ "\">\n"
|
||||
#~ " ${object.company_id.partner_id.sudo()."
|
||||
#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | "
|
||||
#~ "safe}\n"
|
||||
#~ " </span>\n"
|
||||
#~ " % if object.company_id.phone:\n"
|
||||
#~ " <div style=\"margin-top: 0px; margin-right: 0px; margin-"
|
||||
#~ "bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
#~ "padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
#~ " Teléfono: ${object.company_id.phone}\n"
|
||||
#~ " </div>\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % if object.company_id.website:\n"
|
||||
#~ " <div>\n"
|
||||
#~ " Web: <a href=\"${object.company_id.website}\">${object."
|
||||
#~ "company_id.website}</a>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " %endif\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
#~ "access_token=${object.access_token}\" target=\"_blank\" style="
|
||||
#~ "\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: "
|
||||
#~ "none; color: #fff; border-radius: 5px; font-size:13px;\">Ver contrato</"
|
||||
#~ "a>\n"
|
||||
#~ "</div>\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Contrato (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
#~ "Modifications"
|
||||
#~ msgstr ""
|
||||
#~ "${object.company_id.name} Contrato (Ref ${object.name or 'n/a'}) - "
|
||||
#~ "Modificaciones"
|
||||
|
||||
#~ msgid "Contract line Un-canceled: %s<br/>- "
|
||||
#~ msgstr "Línea de contrato no cancelada: %s<br/>- "
|
||||
|
||||
#~ msgid "Contract line canceled: %s<br/>- "
|
||||
#~ msgstr "Línea de contrato cancelada: %s<br/>- "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " stopped: <br/>\n"
|
||||
#~ " - <strong>End</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Línea de contrato para <strong>{product}</strong>\n"
|
||||
#~ " detenida: <br/>\n"
|
||||
#~ " - <strong>Fin</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " planned a successor: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Línea de contrato para <strong>{product}</strong>\n"
|
||||
#~ " planeó un sucesor: <br/>\n"
|
||||
#~ " - <strong>Inicio</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fin</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " renewed: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Línea de contrato para <strong>{product}</strong>\n"
|
||||
#~ " renovado: <br/>\n"
|
||||
#~ " - <strong>Inicio</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fin</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " suspended: <br/>\n"
|
||||
#~ " - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Línea de contrato para <strong>{product}</strong>\n"
|
||||
#~ " suspendida: <br/>\n"
|
||||
#~ " - <strong>Inicio Suspensión</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fin Suspensión</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
#~ "\"%s\">Invoice</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Contratos facturados manualmente: <a href=\"#\" data-oe-model=\"%s\" data-"
|
||||
#~ "oe-id=\"%s\">Factura</a>"
|
||||
|
||||
#~ msgid "Followers (Channels)"
|
||||
#~ msgstr "Seguimiento (Canales)"
|
||||
|
||||
#~ msgid "Manual renew needed"
|
||||
#~ msgstr "Renovación manual necesaria"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Por favor defina un diario de %s para la compañía '%s'."
|
||||
|
||||
#~ msgid "Termination notice date"
|
||||
#~ msgstr "Fecha de aviso de terminación"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span attrs=\"{'invisible': [('contract_to_invoice_count', '>', "
|
||||
#~ "1)]}\">\n"
|
||||
|
||||
@@ -11,8 +11,8 @@ msgstr ""
|
||||
"POT-Creation-Date: 2017-11-21 18:22+0000\n"
|
||||
"PO-Revision-Date: 2021-06-14 04:48+0000\n"
|
||||
"Last-Translator: Ignacio Buioli <ibuioli@gmail.com>\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"
|
||||
@@ -20,168 +20,93 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" <p>Hola</p>\n"
|
||||
" <p>Tenemos modificaciones en el contrato que queremos "
|
||||
"notificarle.</p>\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hola ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>Un nuevo contrato a sido creado: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCIAS</strong><br />\n"
|
||||
" Contato: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Fecha de Inicio del Contrato: ${object.date_start or ''}"
|
||||
"<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Tu Contrato: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Tu Contrato: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>Si tiene alguna pregunta, no dude en contactarnos.</p>\n"
|
||||
" <p>Gracias por elegir ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Contrato (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
"${object.company_id.name} Contrato (Ref ${object.name or 'n/a'}) - "
|
||||
"Modificaciones"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
@@ -470,7 +395,6 @@ msgstr "Cuenta de Adjunto"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "Renovación Automática"
|
||||
@@ -523,6 +447,13 @@ msgstr "Cancelar no está permitido para esta línea"
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -644,6 +575,11 @@ msgstr "Wizard para Crear Facturas Manualmente"
|
||||
msgid "Contract Modification"
|
||||
msgstr "Modificación de Contrato"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -721,8 +657,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgstr "Línea de Contrato no Cancelada: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -739,76 +675,55 @@ msgstr "La línea de Contrato y su sucesora se superponen"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgstr "Línea de Contrato cancelada: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Línea de Contrato para <strong>{product}</strong>\n"
|
||||
" detenida: <br/>\n"
|
||||
" - <strong>Fin</strong>: {old_end} -- {new_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Línea de contrato para <strong>{product}</strong>\n"
|
||||
" planifica un sucesor: <br/>\n"
|
||||
" - <strong>Inicio</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fin</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Línea de contrato para <strong>{product}</strong>\n"
|
||||
" renovada: <br/>\n"
|
||||
" - <strong>Inicio</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fin</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Línea de contrato para <strong>{product}</strong>\n"
|
||||
" suspendida: <br/>\n"
|
||||
" - <strong>Inicio de Suspención</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fin de Suspención</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -830,11 +745,9 @@ msgstr "Líneas de contrato (corregidas)"
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
"Contrato facturado manualmente: <a href=\"#\" data-oe-model=\"%s\" data-oe-"
|
||||
"id=\"%s\">Factura</a>"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.message.subtype,name:contract.mail_message_subtype_contract_modification
|
||||
@@ -873,6 +786,15 @@ msgstr "Contratos"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Contratos para facturar"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -1058,6 +980,7 @@ msgstr "Descripción"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Descuento (%)"
|
||||
|
||||
@@ -1079,25 +1002,16 @@ msgstr ""
|
||||
"100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nombre"
|
||||
|
||||
@@ -1108,6 +1022,19 @@ msgstr "Mostrar Nombre"
|
||||
msgid "Display Type"
|
||||
msgstr "Tipo de Visualización"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1123,11 +1050,6 @@ msgstr "Posición Fiscal"
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr "Seguidores (Canales)"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1156,25 +1078,21 @@ msgid "Group By..."
|
||||
msgstr "Agrupar Por..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1319,6 +1237,11 @@ msgstr "Compensación de facturación"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Tipo de facturación"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1364,25 +1287,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Última fecha de facturación"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
@@ -1435,8 +1349,8 @@ msgstr "Moneda Manual"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgstr "Renovación manual requerida"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.actions.act_window,name:contract.purchase_contract_manually_create_invoice_act_window
|
||||
@@ -1668,8 +1582,9 @@ msgstr "Plan sucesor no está permitido para esta línea"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Por favor defina un %s diario para la compañía '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -2019,6 +1934,7 @@ msgstr "Detener/Planificar un sucesor no está permitido para esta línea"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Sub Total"
|
||||
|
||||
@@ -2101,6 +2017,11 @@ msgstr "Fecha de Terminación"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr "Aviso de Terminación Antes"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2114,11 +2035,6 @@ msgstr "Tipo de Aviso de Terminación"
|
||||
msgid "Termination Reason"
|
||||
msgstr "Razón de Terminación"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr "Fecha del aviso de terminación"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2345,6 +2261,265 @@ msgstr "ej. Contrato XYZ"
|
||||
msgid "on"
|
||||
msgstr "el"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ " <p>Hello</p>\n"
|
||||
#~ " <p>We have modifications on the contract that we want to "
|
||||
#~ "notify you.</p>\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "\n"
|
||||
#~ " <p>Hola</p>\n"
|
||||
#~ " <p>Tenemos modificaciones en el contrato que queremos "
|
||||
#~ "notificarle.</p>\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
#~ "serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; "
|
||||
#~ "\">\n"
|
||||
#~ " <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
#~ " <p>A new contract has been created: </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
#~ " <strong>REFERENCES</strong><br />\n"
|
||||
#~ " Contract: <strong>${object.name}</strong><br />\n"
|
||||
#~ " % if object.date_start:\n"
|
||||
#~ " Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
#~ " % endif\n"
|
||||
#~ "\n"
|
||||
#~ " % if object.user_id:\n"
|
||||
#~ " % if object.user_id.email:\n"
|
||||
#~ " Your Contact: <a href=\"mailto:${object.user_id.email "
|
||||
#~ "or ''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
#~ " % else:\n"
|
||||
#~ " Your Contact: ${object.user_id.name}\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % endif\n"
|
||||
#~ " </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
#~ " <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <div style=\"width: 375px; margin: 0px; padding: 0px; background-"
|
||||
#~ "color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: "
|
||||
#~ "5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
#~ " <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; "
|
||||
#~ "color: #DDD;\">\n"
|
||||
#~ " <strong style=\"text-transform:uppercase;\">${object."
|
||||
#~ "company_id.name}</strong></h3>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-"
|
||||
#~ "height: 16px; background-color: #F2F2F2;\">\n"
|
||||
#~ " <span style=\"color: #222; margin-bottom: 5px; display: block; "
|
||||
#~ "\">\n"
|
||||
#~ " ${object.company_id.partner_id.sudo()."
|
||||
#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | "
|
||||
#~ "safe}\n"
|
||||
#~ " </span>\n"
|
||||
#~ " % if object.company_id.phone:\n"
|
||||
#~ " <div style=\"margin-top: 0px; margin-right: 0px; margin-"
|
||||
#~ "bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
#~ "padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
#~ " Phone: ${object.company_id.phone}\n"
|
||||
#~ " </div>\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % if object.company_id.website:\n"
|
||||
#~ " <div>\n"
|
||||
#~ " Web: <a href=\"${object.company_id.website}\">${object."
|
||||
#~ "company_id.website}</a>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " %endif\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
#~ "access_token=${object.access_token}\" target=\"_blank\" style="
|
||||
#~ "\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: "
|
||||
#~ "none; color: #fff; border-radius: 5px; font-size:13px;\">View contract</"
|
||||
#~ "a>\n"
|
||||
#~ "</div>\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
#~ "serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; "
|
||||
#~ "\">\n"
|
||||
#~ " <p>Hola ${object.partner_id.name or ''},</p>\n"
|
||||
#~ " <p>Un nuevo contrato a sido creado: </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
#~ " <strong>REFERENCIAS</strong><br />\n"
|
||||
#~ " Contato: <strong>${object.name}</strong><br />\n"
|
||||
#~ " % if object.date_start:\n"
|
||||
#~ " Fecha de Inicio del Contrato: ${object.date_start or "
|
||||
#~ "''}<br />\n"
|
||||
#~ " % endif\n"
|
||||
#~ "\n"
|
||||
#~ " % if object.user_id:\n"
|
||||
#~ " % if object.user_id.email:\n"
|
||||
#~ " Tu Contrato: <a href=\"mailto:${object.user_id.email "
|
||||
#~ "or ''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
#~ " % else:\n"
|
||||
#~ " Tu Contrato: ${object.user_id.name}\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % endif\n"
|
||||
#~ " </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <p>Si tiene alguna pregunta, no dude en contactarnos.</p>\n"
|
||||
#~ " <p>Gracias por elegir ${object.company_id.name or 'us'}!</p>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <div style=\"width: 375px; margin: 0px; padding: 0px; background-"
|
||||
#~ "color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: "
|
||||
#~ "5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
#~ " <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; "
|
||||
#~ "color: #DDD;\">\n"
|
||||
#~ " <strong style=\"text-transform:uppercase;\">${object."
|
||||
#~ "company_id.name}</strong></h3>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-"
|
||||
#~ "height: 16px; background-color: #F2F2F2;\">\n"
|
||||
#~ " <span style=\"color: #222; margin-bottom: 5px; display: block; "
|
||||
#~ "\">\n"
|
||||
#~ " ${object.company_id.partner_id.sudo()."
|
||||
#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | "
|
||||
#~ "safe}\n"
|
||||
#~ " </span>\n"
|
||||
#~ " % if object.company_id.phone:\n"
|
||||
#~ " <div style=\"margin-top: 0px; margin-right: 0px; margin-"
|
||||
#~ "bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
#~ "padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
#~ " Phone: ${object.company_id.phone}\n"
|
||||
#~ " </div>\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % if object.company_id.website:\n"
|
||||
#~ " <div>\n"
|
||||
#~ " Web: <a href=\"${object.company_id.website}\">${object."
|
||||
#~ "company_id.website}</a>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " %endif\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
#~ "access_token=${object.access_token}\" target=\"_blank\" style="
|
||||
#~ "\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: "
|
||||
#~ "none; color: #fff; border-radius: 5px; font-size:13px;\">View contract</"
|
||||
#~ "a>\n"
|
||||
#~ "</div>\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Contrato (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
#~ "Modifications"
|
||||
#~ msgstr ""
|
||||
#~ "${object.company_id.name} Contrato (Ref ${object.name or 'n/a'}) - "
|
||||
#~ "Modificaciones"
|
||||
|
||||
#~ msgid "Contract line Un-canceled: %s<br/>- "
|
||||
#~ msgstr "Línea de Contrato no Cancelada: %s<br/>- "
|
||||
|
||||
#~ msgid "Contract line canceled: %s<br/>- "
|
||||
#~ msgstr "Línea de Contrato cancelada: %s<br/>- "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " stopped: <br/>\n"
|
||||
#~ " - <strong>End</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Línea de Contrato para <strong>{product}</strong>\n"
|
||||
#~ " detenida: <br/>\n"
|
||||
#~ " - <strong>Fin</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " planned a successor: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Línea de contrato para <strong>{product}</strong>\n"
|
||||
#~ " planifica un sucesor: <br/>\n"
|
||||
#~ " - <strong>Inicio</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fin</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " renewed: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Línea de contrato para <strong>{product}</strong>\n"
|
||||
#~ " renovada: <br/>\n"
|
||||
#~ " - <strong>Inicio</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fin</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " suspended: <br/>\n"
|
||||
#~ " - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Línea de contrato para <strong>{product}</strong>\n"
|
||||
#~ " suspendida: <br/>\n"
|
||||
#~ " - <strong>Inicio de Suspención</strong>: "
|
||||
#~ "{new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fin de Suspención</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
#~ "\"%s\">Invoice</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Contrato facturado manualmente: <a href=\"#\" data-oe-model=\"%s\" data-"
|
||||
#~ "oe-id=\"%s\">Factura</a>"
|
||||
|
||||
#~ msgid "Followers (Channels)"
|
||||
#~ msgstr "Seguidores (Canales)"
|
||||
|
||||
#~ msgid "Manual renew needed"
|
||||
#~ msgstr "Renovación manual requerida"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Por favor defina un %s diario para la compañía '%s'."
|
||||
|
||||
#~ msgid "Termination notice date"
|
||||
#~ msgstr "Fecha del aviso de terminación"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span attrs=\"{'invisible': [('contract_to_invoice_count', '>', "
|
||||
#~ "1)]}\">\n"
|
||||
|
||||
@@ -16,97 +16,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -371,7 +368,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -424,6 +420,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -545,6 +548,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -620,7 +628,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -638,16 +646,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -655,11 +664,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -667,11 +676,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -679,11 +688,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -707,8 +716,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -748,6 +757,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -929,6 +947,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -948,25 +967,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -977,6 +987,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -992,11 +1015,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1025,25 +1043,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -1180,6 +1194,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1225,25 +1244,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1294,7 +1304,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1523,7 +1533,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1868,6 +1879,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1950,6 +1962,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1963,11 +1980,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2182,6 +2194,18 @@ msgstr ""
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1228,25 +1247,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1297,7 +1307,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1526,7 +1536,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1871,6 +1882,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1953,6 +1965,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1966,11 +1983,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2184,3 +2196,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1230,25 +1249,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1299,7 +1309,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1528,7 +1538,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1228,25 +1247,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1297,7 +1307,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1526,7 +1536,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1871,6 +1882,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1953,6 +1965,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1966,11 +1983,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2184,3 +2196,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1228,25 +1247,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1297,7 +1307,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1526,7 +1536,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1871,6 +1882,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1953,6 +1965,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1966,11 +1983,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2184,3 +2196,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -376,7 +373,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -429,6 +425,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -550,6 +553,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -626,7 +634,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -644,16 +652,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -661,11 +670,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -673,11 +682,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -685,11 +694,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -713,8 +722,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -754,6 +763,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -936,6 +954,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -955,25 +974,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -984,6 +994,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -999,11 +1022,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1032,25 +1050,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1187,6 +1201,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1233,25 +1252,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1302,7 +1312,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1531,7 +1541,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1876,6 +1887,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1958,6 +1970,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1971,11 +1988,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2189,3 +2201,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1228,25 +1247,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1297,7 +1307,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1526,7 +1536,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1871,6 +1882,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1953,6 +1965,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1966,11 +1983,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2184,3 +2196,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1230,25 +1249,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1299,7 +1309,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1528,7 +1538,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1228,25 +1247,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1297,7 +1307,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1526,7 +1536,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1871,6 +1882,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1953,6 +1965,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1966,11 +1983,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2184,3 +2196,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -931,6 +949,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -950,25 +969,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -979,6 +989,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -994,11 +1017,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1027,25 +1045,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1182,6 +1196,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1227,25 +1246,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1296,7 +1306,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1525,7 +1535,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1870,6 +1881,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1952,6 +1964,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1965,11 +1982,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2183,3 +2195,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "آخرین به روز رسانی در"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Sopimus (Viite ${object.name or 'n/a'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -381,7 +378,6 @@ msgstr "Liitteiden määrä"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "Automaattinen uusinta"
|
||||
@@ -435,6 +431,13 @@ msgstr "Peruminen ei ole sallittu tälle riville"
|
||||
msgid "Canceled"
|
||||
msgstr "Peruttu"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -557,6 +560,11 @@ msgstr "Ohjattu manuaalinen laskun luonti sopimukselta"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -634,8 +642,8 @@ msgstr "Sopimusrivin '%s' aloituspäivä ei voi olla päättymispäivän jälkee
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgstr "Sopimusrivin palautettu perutuista: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -652,75 +660,55 @@ msgstr "Sopimusrivi ja sen seuraaja ovat päällekkäin"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgstr "Sopimusrivi peruttu: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Sopimusrivi <strong>{product}</strong> lopetettu: <br/> - "
|
||||
"<strong>Pättyminen</strong>: {old_end} -- {new_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Sopimusrivin <strong>{product}</strong>\n"
|
||||
" suunniteltu seuraaja: <br/>\n"
|
||||
" - <strong>Alku</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Päättyminen</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Sopimusrivi <strong>{product}</strong>\n"
|
||||
" uusittu: <br/>\n"
|
||||
" - <strong>Alku</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Päättyminen</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Sopimusrivi <strong>{product}</strong>\n"
|
||||
" keskeytetty: <br/>\n"
|
||||
" - <strong>Keskeytyksen alku</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Keskeytyksen päättyminen</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -742,11 +730,9 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
"Sopimus laskutettu manuaalisesti: <a href=\"#\" data-oe-model=\"%s\" data-oe-"
|
||||
"id=\"%s\">Lasku</a>"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.message.subtype,name:contract.mail_message_subtype_contract_modification
|
||||
@@ -786,6 +772,15 @@ msgstr "Sopimukset"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Laskutettavat sopimukset"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -968,6 +963,7 @@ msgstr "Kuvaus"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Alennus (%)"
|
||||
|
||||
@@ -988,25 +984,16 @@ msgstr ""
|
||||
"Alennus jota käytetään luotuihin laskuihin. Alennus voi olla korkeintaan 100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
@@ -1018,6 +1005,19 @@ msgstr "Näyttönimi"
|
||||
msgid "Display Type"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1033,11 +1033,6 @@ msgstr "Verokanta"
|
||||
msgid "Followers"
|
||||
msgstr "Seuraajat"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr "Seuraajat (Kanavat)"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1066,25 +1061,21 @@ msgid "Group By..."
|
||||
msgstr "Ryhmittele..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1228,6 +1219,11 @@ msgstr "Laskutuksen viive"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Laskutusmalli"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1273,25 +1269,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Viimeksi laskutettu"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
@@ -1342,8 +1329,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgstr "Manuaalinen uusinta vaaditaan"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.actions.act_window,name:contract.purchase_contract_manually_create_invoice_act_window
|
||||
@@ -1574,8 +1561,9 @@ msgstr "Sopimuksen seuraaja ei ole sallittu tälle riville"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Aseta %s-päiväkirja yritykselle '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -1926,6 +1914,7 @@ msgstr "Päättäminen/sopimuksen seuraaja ei ole sallittu tälle riville"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Välisumma"
|
||||
|
||||
@@ -2012,6 +2001,11 @@ msgstr "Irtisanomisilmoituksen päivämäärä"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr "Irtisanomisilmoitus ennen"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2026,11 +2020,6 @@ msgstr "Irtisanomisilmoituksen tyyppi"
|
||||
msgid "Termination Reason"
|
||||
msgstr "Irtisanomisilmoituksen päivämäärä"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr "Irtisanomisilmoituksen päivämäärä"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2251,6 +2240,103 @@ msgstr "esim. Sopimus XYZ"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Sopimus (Viite ${object.name or 'n/a'})"
|
||||
|
||||
#~ msgid "Contract line Un-canceled: %s<br/>- "
|
||||
#~ msgstr "Sopimusrivin palautettu perutuista: %s<br/>- "
|
||||
|
||||
#~ msgid "Contract line canceled: %s<br/>- "
|
||||
#~ msgstr "Sopimusrivi peruttu: %s<br/>- "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " stopped: <br/>\n"
|
||||
#~ " - <strong>End</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Sopimusrivi <strong>{product}</strong> lopetettu: <br/> - "
|
||||
#~ "<strong>Pättyminen</strong>: {old_end} -- {new_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " planned a successor: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Sopimusrivin <strong>{product}</strong>\n"
|
||||
#~ " suunniteltu seuraaja: <br/>\n"
|
||||
#~ " - <strong>Alku</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Päättyminen</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " renewed: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Sopimusrivi <strong>{product}</strong>\n"
|
||||
#~ " uusittu: <br/>\n"
|
||||
#~ " - <strong>Alku</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Päättyminen</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " suspended: <br/>\n"
|
||||
#~ " - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Sopimusrivi <strong>{product}</strong>\n"
|
||||
#~ " keskeytetty: <br/>\n"
|
||||
#~ " - <strong>Keskeytyksen alku</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Keskeytyksen päättyminen</strong>: "
|
||||
#~ "{new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
#~ "\"%s\">Invoice</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Sopimus laskutettu manuaalisesti: <a href=\"#\" data-oe-model=\"%s\" data-"
|
||||
#~ "oe-id=\"%s\">Lasku</a>"
|
||||
|
||||
#~ msgid "Followers (Channels)"
|
||||
#~ msgstr "Seuraajat (Kanavat)"
|
||||
|
||||
#~ msgid "Manual renew needed"
|
||||
#~ msgstr "Manuaalinen uusinta vaaditaan"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Aseta %s-päiväkirja yritykselle '%s'."
|
||||
|
||||
#~ msgid "Termination notice date"
|
||||
#~ msgstr "Irtisanomisilmoituksen päivämäärä"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span attrs=\"{'invisible': [('contract_to_invoice_count', '>', "
|
||||
#~ "1)]}\">\n"
|
||||
|
||||
@@ -19,168 +19,93 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" <p>Bonjour</p>\n"
|
||||
" <p>Nous avons des modifications sur le contrat que nous voulons "
|
||||
"vous notifier.</p>\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Bonjour ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>Un nouveau contrat a été créé: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contrat: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Date de début du contrat: ${object.date_start or ''}<br /"
|
||||
">\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Votre Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Votre Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>Si vous avez des questions, n'hésitez pas à nous contacter.</p>\n"
|
||||
" <p>Merci de faire confiance à ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Téléphone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Contrat (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
"${object.company_id.name} Contrat (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
@@ -463,7 +388,6 @@ msgstr "Nombre de pièces jointes"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "Auto-renouvellement"
|
||||
@@ -516,6 +440,13 @@ msgstr "Annulation non autorisée pour cette ligne"
|
||||
msgid "Canceled"
|
||||
msgstr "Annulée"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -637,6 +568,11 @@ msgstr "Assistant Facturation manuelle des contrats"
|
||||
msgid "Contract Modification"
|
||||
msgstr "Modification du contrat"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -714,8 +650,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgstr "Annulation de la ligne de contrat annulée : %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -732,77 +668,55 @@ msgstr "La ligne de contrat et son successeur se chevauchent"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgstr "Ligne de contrat annulée : %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Ligne de contrat pour <strong>{product}</strong>\n"
|
||||
" arrêtée : <br/>\n"
|
||||
" - <strong>Fin</strong> : {old_end} -- {new_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Un successeur a été créé pour la ligne de contrat pour \n"
|
||||
" <strong>{product}</strong> : <br/>\n"
|
||||
" - <strong>Début</strong> : {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fin</strong> : {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Ligne de contrat <strong>{product}</strong>\n"
|
||||
" renouvellée : <br/>\n"
|
||||
" - <strong>Début</strong> : {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fin</strong> : {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Ligne de contrat <strong>{product}</strong>\n"
|
||||
" mise en suspens : <br/>\n"
|
||||
" - <strong>Début de la suspension</strong> : "
|
||||
"{new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fin de la suspension</strong> : {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -824,11 +738,9 @@ msgstr "Lignes de contrat (fixe)"
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
"Contrat facturé manuellement : <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.message.subtype,name:contract.mail_message_subtype_contract_modification
|
||||
@@ -867,6 +779,15 @@ msgstr "Contrats"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Contrats à facturer"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -1053,6 +974,7 @@ msgstr "Description"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Remise (%)"
|
||||
|
||||
@@ -1074,25 +996,16 @@ msgstr ""
|
||||
"à 100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom à afficher"
|
||||
|
||||
@@ -1104,6 +1017,19 @@ msgstr "Nom à afficher"
|
||||
msgid "Display Type"
|
||||
msgstr "Nom à afficher"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1119,11 +1045,6 @@ msgstr "Position fiscale"
|
||||
msgid "Followers"
|
||||
msgstr "Abonnés"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr "Abonnés (canaux)"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1152,25 +1073,21 @@ msgid "Group By..."
|
||||
msgstr "Grouper par..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1316,6 +1233,11 @@ msgstr "Décalage de facturation"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Type de facturation"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1361,25 +1283,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Dernière date facturée"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
@@ -1431,8 +1344,8 @@ msgstr "Devise"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgstr "Renouvellement manuel requis"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.actions.act_window,name:contract.purchase_contract_manually_create_invoice_act_window
|
||||
@@ -1666,8 +1579,9 @@ msgstr "Successeur de l'abonnement non autorisé sur cette ligne"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Veuiller définir un journal %s pour l'entreprise '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -2018,6 +1932,7 @@ msgstr "Interruption / Planifier un successeur non autorisé sur cette ligne"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Sous-total"
|
||||
|
||||
@@ -2100,6 +2015,11 @@ msgstr "Date de résiliation"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr "Avis de résiliation avant"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2113,11 +2033,6 @@ msgstr "Type d'avis d'échéance"
|
||||
msgid "Termination Reason"
|
||||
msgstr "Raison de la résiliation"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr "Date de l'avis de résiliation"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2345,6 +2260,265 @@ msgstr "par ex. Contrat XYZ"
|
||||
msgid "on"
|
||||
msgstr "le"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ " <p>Hello</p>\n"
|
||||
#~ " <p>We have modifications on the contract that we want to "
|
||||
#~ "notify you.</p>\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "\n"
|
||||
#~ " <p>Bonjour</p>\n"
|
||||
#~ " <p>Nous avons des modifications sur le contrat que nous "
|
||||
#~ "voulons vous notifier.</p>\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
#~ "serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; "
|
||||
#~ "\">\n"
|
||||
#~ " <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
#~ " <p>A new contract has been created: </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
#~ " <strong>REFERENCES</strong><br />\n"
|
||||
#~ " Contract: <strong>${object.name}</strong><br />\n"
|
||||
#~ " % if object.date_start:\n"
|
||||
#~ " Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
#~ " % endif\n"
|
||||
#~ "\n"
|
||||
#~ " % if object.user_id:\n"
|
||||
#~ " % if object.user_id.email:\n"
|
||||
#~ " Your Contact: <a href=\"mailto:${object.user_id.email "
|
||||
#~ "or ''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
#~ " % else:\n"
|
||||
#~ " Your Contact: ${object.user_id.name}\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % endif\n"
|
||||
#~ " </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
#~ " <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <div style=\"width: 375px; margin: 0px; padding: 0px; background-"
|
||||
#~ "color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: "
|
||||
#~ "5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
#~ " <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; "
|
||||
#~ "color: #DDD;\">\n"
|
||||
#~ " <strong style=\"text-transform:uppercase;\">${object."
|
||||
#~ "company_id.name}</strong></h3>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-"
|
||||
#~ "height: 16px; background-color: #F2F2F2;\">\n"
|
||||
#~ " <span style=\"color: #222; margin-bottom: 5px; display: block; "
|
||||
#~ "\">\n"
|
||||
#~ " ${object.company_id.partner_id.sudo()."
|
||||
#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | "
|
||||
#~ "safe}\n"
|
||||
#~ " </span>\n"
|
||||
#~ " % if object.company_id.phone:\n"
|
||||
#~ " <div style=\"margin-top: 0px; margin-right: 0px; margin-"
|
||||
#~ "bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
#~ "padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
#~ " Phone: ${object.company_id.phone}\n"
|
||||
#~ " </div>\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % if object.company_id.website:\n"
|
||||
#~ " <div>\n"
|
||||
#~ " Web: <a href=\"${object.company_id.website}\">${object."
|
||||
#~ "company_id.website}</a>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " %endif\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
#~ "access_token=${object.access_token}\" target=\"_blank\" style="
|
||||
#~ "\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: "
|
||||
#~ "none; color: #fff; border-radius: 5px; font-size:13px;\">View contract</"
|
||||
#~ "a>\n"
|
||||
#~ "</div>\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
#~ "serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; "
|
||||
#~ "\">\n"
|
||||
#~ " <p>Bonjour ${object.partner_id.name or ''},</p>\n"
|
||||
#~ " <p>Un nouveau contrat a été créé: </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
#~ " <strong>REFERENCES</strong><br />\n"
|
||||
#~ " Contrat: <strong>${object.name}</strong><br />\n"
|
||||
#~ " % if object.date_start:\n"
|
||||
#~ " Date de début du contrat: ${object.date_start or ''}"
|
||||
#~ "<br />\n"
|
||||
#~ " % endif\n"
|
||||
#~ "\n"
|
||||
#~ " % if object.user_id:\n"
|
||||
#~ " % if object.user_id.email:\n"
|
||||
#~ " Votre Contact: <a href=\"mailto:${object.user_id.email "
|
||||
#~ "or ''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
#~ " % else:\n"
|
||||
#~ " Votre Contact: ${object.user_id.name}\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % endif\n"
|
||||
#~ " </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <p>Si vous avez des questions, n'hésitez pas à nous contacter.</p>\n"
|
||||
#~ " <p>Merci de faire confiance à ${object.company_id.name or 'us'}!</p>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <div style=\"width: 375px; margin: 0px; padding: 0px; background-"
|
||||
#~ "color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: "
|
||||
#~ "5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
#~ " <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; "
|
||||
#~ "color: #DDD;\">\n"
|
||||
#~ " <strong style=\"text-transform:uppercase;\">${object."
|
||||
#~ "company_id.name}</strong></h3>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-"
|
||||
#~ "height: 16px; background-color: #F2F2F2;\">\n"
|
||||
#~ " <span style=\"color: #222; margin-bottom: 5px; display: block; "
|
||||
#~ "\">\n"
|
||||
#~ " ${object.company_id.partner_id.sudo()."
|
||||
#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | "
|
||||
#~ "safe}\n"
|
||||
#~ " </span>\n"
|
||||
#~ " % if object.company_id.phone:\n"
|
||||
#~ " <div style=\"margin-top: 0px; margin-right: 0px; margin-"
|
||||
#~ "bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
#~ "padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
#~ " Téléphone: ${object.company_id.phone}\n"
|
||||
#~ " </div>\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % if object.company_id.website:\n"
|
||||
#~ " <div>\n"
|
||||
#~ " Web: <a href=\"${object.company_id.website}\">${object."
|
||||
#~ "company_id.website}</a>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " %endif\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
#~ "access_token=${object.access_token}\" target=\"_blank\" style="
|
||||
#~ "\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: "
|
||||
#~ "none; color: #fff; border-radius: 5px; font-size:13px;\">View contract</"
|
||||
#~ "a>\n"
|
||||
#~ "</div>\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Contrat (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
#~ "Modifications"
|
||||
#~ msgstr ""
|
||||
#~ "${object.company_id.name} Contrat (Ref ${object.name or 'n/a'}) - "
|
||||
#~ "Modifications"
|
||||
|
||||
#~ msgid "Contract line Un-canceled: %s<br/>- "
|
||||
#~ msgstr "Annulation de la ligne de contrat annulée : %s<br/>- "
|
||||
|
||||
#~ msgid "Contract line canceled: %s<br/>- "
|
||||
#~ msgstr "Ligne de contrat annulée : %s<br/>- "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " stopped: <br/>\n"
|
||||
#~ " - <strong>End</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Ligne de contrat pour <strong>{product}</strong>\n"
|
||||
#~ " arrêtée : <br/>\n"
|
||||
#~ " - <strong>Fin</strong> : {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " planned a successor: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Un successeur a été créé pour la ligne de contrat pour \n"
|
||||
#~ " <strong>{product}</strong> : <br/>\n"
|
||||
#~ " - <strong>Début</strong> : {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fin</strong> : {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " renewed: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Ligne de contrat <strong>{product}</strong>\n"
|
||||
#~ " renouvellée : <br/>\n"
|
||||
#~ " - <strong>Début</strong> : {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fin</strong> : {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " suspended: <br/>\n"
|
||||
#~ " - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Ligne de contrat <strong>{product}</strong>\n"
|
||||
#~ " mise en suspens : <br/>\n"
|
||||
#~ " - <strong>Début de la suspension</strong> : "
|
||||
#~ "{new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fin de la suspension</strong> : {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
#~ "\"%s\">Invoice</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Contrat facturé manuellement : <a href=\"#\" data-oe-model=\"%s\" data-oe-"
|
||||
#~ "id=\"%s\">Invoice</a>"
|
||||
|
||||
#~ msgid "Followers (Channels)"
|
||||
#~ msgstr "Abonnés (canaux)"
|
||||
|
||||
#~ msgid "Manual renew needed"
|
||||
#~ msgstr "Renouvellement manuel requis"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Veuiller définir un journal %s pour l'entreprise '%s'."
|
||||
|
||||
#~ msgid "Termination notice date"
|
||||
#~ msgstr "Date de l'avis de résiliation"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span attrs=\"{'invisible': [('contract_to_invoice_count', '>', "
|
||||
#~ "1)]}\">\n"
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
@@ -982,6 +992,19 @@ msgstr "Afficher le nom"
|
||||
msgid "Display Type"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -997,11 +1020,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1030,25 +1048,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
@@ -1185,6 +1199,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1231,25 +1250,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1300,7 +1310,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1529,7 +1539,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1874,6 +1885,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1956,6 +1968,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1969,11 +1986,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2187,3 +2199,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1230,25 +1249,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Modifié le"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1299,7 +1309,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1528,7 +1538,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -16,171 +16,93 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" <p>Bonjour</p>\n"
|
||||
" <p>Nous avons des modifications sur le contrat que nous "
|
||||
"souhaitons vous notifier.</p>\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
"<div style=\"font-family : 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif ; font-size : 12px ; color : rgb(34, 34, 34) ; background-color : "
|
||||
"#FFF ;\">\n"
|
||||
" <p>Bonjour ${objet.partner_id.name or ''},</p>\n"
|
||||
" <p>Un nouveau contrat a été créé : </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left : 1px solid #8e0000 ; margin-left : 30px ;\">.\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contrat : <strong>${objet.name}</strong><br />\n"
|
||||
" % if object.date_start :\n"
|
||||
" Date de début du contrat : ${objet.date_start or ''}<br /"
|
||||
">\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id :\n"
|
||||
" % if object.user_id.email :\n"
|
||||
" Votre contact : <a href=\"mailto:${object.user_id.email "
|
||||
"or ''}?subject=Contrat%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else :\n"
|
||||
" Votre contact : ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" </p> <p>Si vous avez des questions, n'hésitez pas à nous contacter.</"
|
||||
"p> \n"
|
||||
" <p>Merci d'avoir choisi ${objet.company_id.name ou 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width : 375px ; margin : 0px ; padding : 0px ; background-"
|
||||
"color : #8E0000 ; border-top-left-radius : 5px 5px ; border-top-right-"
|
||||
"radius : 5px 5px ; background-repeat : repeat no-repeat ;\">.\n"
|
||||
" <h3 style=\"margin : 0px ; padding : 2px 14px ; font-size : 12px ; "
|
||||
"color : #DDD ;\">\n"
|
||||
" <strong style=\"text-transform:uppercase ;\">${objet.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width : 347px ; margin : 0px ; padding : 5px 14px ; line-"
|
||||
"height : 16px ; background-color : #F2F2F2 ;\">\n"
|
||||
" <span style=\"color : #222 ; margin-bottom : 5px ; display : block ;"
|
||||
"\">\n"
|
||||
" ${objet.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone :\n"
|
||||
" <div style=\"margin-top : 0px ; margin-right : 0px ; margin-"
|
||||
"bottom : 0px ; margin-left : 0px ; padding-top : 0px ; padding-right : 0px ; "
|
||||
"padding-bottom : 0px ; padding-left : 0px ; \">\n"
|
||||
" Téléphone : ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website :\n"
|
||||
" <div>\n"
|
||||
" Web : <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding : 8px 16px 8px 16px ; text-decoration : none ; color : "
|
||||
"#fff ; border-radius : 5px ; font-size:13px ;\">Voir le contrat</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Contrat (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
"${object.company_id.name} Contrat (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
@@ -466,7 +388,6 @@ msgstr "Nombre de pièces jointes"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "Auto-renouvellement"
|
||||
@@ -519,6 +440,13 @@ msgstr "Annulation non autorisée pour cette ligne"
|
||||
msgid "Canceled"
|
||||
msgstr "Annulée"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -640,6 +568,11 @@ msgstr "Assistant Facturation manuelle des contrats"
|
||||
msgid "Contract Modification"
|
||||
msgstr "Mondification de contrat"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -716,8 +649,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgstr "Annulation de la ligne de contrat annulée : %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -734,77 +667,55 @@ msgstr "La ligne de contrat et son successeur se chevauchent"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgstr "Ligne de contrat annulée : %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Ligne de contrat pour <strong>{product}</strong>\n"
|
||||
" arrêtée : <br/>\n"
|
||||
" - <strong>Fin</strong> : {old_end} -- {new_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Un successeur a été créé pour la ligne de contrat pour \n"
|
||||
" <strong>{product}</strong> : <br/>\n"
|
||||
" - <strong>Début</strong> : {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fin</strong> : {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Ligne de contrat <strong>{product}</strong>\n"
|
||||
" renouvellée : <br/>\n"
|
||||
" - <strong>Début</strong> : {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fin</strong> : {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Ligne de contrat <strong>{product}</strong>\n"
|
||||
" mise en suspens : <br/>\n"
|
||||
" - <strong>Début de la suspension</strong> : "
|
||||
"{new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fin de la suspension</strong> : {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -826,11 +737,9 @@ msgstr "Lignes de contrat (fixe)"
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
"Contrat facturé manuellement : <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.message.subtype,name:contract.mail_message_subtype_contract_modification
|
||||
@@ -869,6 +778,15 @@ msgstr "Contrats"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Contrats à facturer"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -1054,6 +972,7 @@ msgstr "Description"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Remise (%)"
|
||||
|
||||
@@ -1075,25 +994,16 @@ msgstr ""
|
||||
"à 100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom à afficher"
|
||||
|
||||
@@ -1104,6 +1014,19 @@ msgstr "Nom à afficher"
|
||||
msgid "Display Type"
|
||||
msgstr "Type"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1119,11 +1042,6 @@ msgstr "Position fiscale"
|
||||
msgid "Followers"
|
||||
msgstr "Abonnés"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr "Abonnés (canaux)"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1152,25 +1070,21 @@ msgid "Group By..."
|
||||
msgstr "Grouper par..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -1316,6 +1230,11 @@ msgstr "Décalage de facturation"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Type de facturation"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1361,25 +1280,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Dernière date facturée"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
@@ -1431,8 +1341,8 @@ msgstr "Devise manuelle"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgstr "Renouvellement manuel requis"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.actions.act_window,name:contract.purchase_contract_manually_create_invoice_act_window
|
||||
@@ -1664,8 +1574,9 @@ msgstr "Successeur de l'abonnement non autorisé sur cette ligne"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Veuiller définir un journal %s pour l'entreprise '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -2015,6 +1926,7 @@ msgstr "Interruption / Planifier un successeur non autorisé sur cette ligne"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Sous-total"
|
||||
|
||||
@@ -2097,6 +2009,11 @@ msgstr "Date de résiliation"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr "Avis de résiliation avant"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2110,11 +2027,6 @@ msgstr "Type d'avis d'échéance"
|
||||
msgid "Termination Reason"
|
||||
msgstr "Raison de la résiliation"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr "Date de l'avis de résiliation"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2341,3 +2253,265 @@ msgstr "par ex. Contrat XYZ"
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr "le"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ " <p>Hello</p>\n"
|
||||
#~ " <p>We have modifications on the contract that we want to "
|
||||
#~ "notify you.</p>\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "\n"
|
||||
#~ " <p>Bonjour</p>\n"
|
||||
#~ " <p>Nous avons des modifications sur le contrat que nous "
|
||||
#~ "souhaitons vous notifier.</p>\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
#~ "serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; "
|
||||
#~ "\">\n"
|
||||
#~ " <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
#~ " <p>A new contract has been created: </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
#~ " <strong>REFERENCES</strong><br />\n"
|
||||
#~ " Contract: <strong>${object.name}</strong><br />\n"
|
||||
#~ " % if object.date_start:\n"
|
||||
#~ " Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
#~ " % endif\n"
|
||||
#~ "\n"
|
||||
#~ " % if object.user_id:\n"
|
||||
#~ " % if object.user_id.email:\n"
|
||||
#~ " Your Contact: <a href=\"mailto:${object.user_id.email "
|
||||
#~ "or ''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
#~ " % else:\n"
|
||||
#~ " Your Contact: ${object.user_id.name}\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % endif\n"
|
||||
#~ " </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
#~ " <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <div style=\"width: 375px; margin: 0px; padding: 0px; background-"
|
||||
#~ "color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: "
|
||||
#~ "5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
#~ " <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; "
|
||||
#~ "color: #DDD;\">\n"
|
||||
#~ " <strong style=\"text-transform:uppercase;\">${object."
|
||||
#~ "company_id.name}</strong></h3>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-"
|
||||
#~ "height: 16px; background-color: #F2F2F2;\">\n"
|
||||
#~ " <span style=\"color: #222; margin-bottom: 5px; display: block; "
|
||||
#~ "\">\n"
|
||||
#~ " ${object.company_id.partner_id.sudo()."
|
||||
#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | "
|
||||
#~ "safe}\n"
|
||||
#~ " </span>\n"
|
||||
#~ " % if object.company_id.phone:\n"
|
||||
#~ " <div style=\"margin-top: 0px; margin-right: 0px; margin-"
|
||||
#~ "bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
#~ "padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
#~ " Phone: ${object.company_id.phone}\n"
|
||||
#~ " </div>\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % if object.company_id.website:\n"
|
||||
#~ " <div>\n"
|
||||
#~ " Web: <a href=\"${object.company_id.website}\">${object."
|
||||
#~ "company_id.website}</a>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " %endif\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
#~ "access_token=${object.access_token}\" target=\"_blank\" style="
|
||||
#~ "\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: "
|
||||
#~ "none; color: #fff; border-radius: 5px; font-size:13px;\">View contract</"
|
||||
#~ "a>\n"
|
||||
#~ "</div>\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family : 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
#~ "serif ; font-size : 12px ; color : rgb(34, 34, 34) ; background-color : "
|
||||
#~ "#FFF ;\">\n"
|
||||
#~ " <p>Bonjour ${objet.partner_id.name or ''},</p>\n"
|
||||
#~ " <p>Un nouveau contrat a été créé : </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <p style=\"border-left : 1px solid #8e0000 ; margin-left : 30px ;"
|
||||
#~ "\">.\n"
|
||||
#~ " <strong>REFERENCES</strong><br />\n"
|
||||
#~ " Contrat : <strong>${objet.name}</strong><br />\n"
|
||||
#~ " % if object.date_start :\n"
|
||||
#~ " Date de début du contrat : ${objet.date_start or ''}"
|
||||
#~ "<br />\n"
|
||||
#~ " % endif\n"
|
||||
#~ "\n"
|
||||
#~ " % if object.user_id :\n"
|
||||
#~ " % if object.user_id.email :\n"
|
||||
#~ " Votre contact : <a href=\"mailto:${object.user_id."
|
||||
#~ "email or ''}?subject=Contrat%20${object.name}\">${object.user_id.name}</"
|
||||
#~ "a>\n"
|
||||
#~ " % else :\n"
|
||||
#~ " Votre contact : ${object.user_id.name}\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % endif\n"
|
||||
#~ " </p>\n"
|
||||
#~ "\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " </p> <p>Si vous avez des questions, n'hésitez pas à nous contacter.</"
|
||||
#~ "p> \n"
|
||||
#~ " <p>Merci d'avoir choisi ${objet.company_id.name ou 'us'}!</p>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " <div style=\"width : 375px ; margin : 0px ; padding : 0px ; "
|
||||
#~ "background-color : #8E0000 ; border-top-left-radius : 5px 5px ; border-"
|
||||
#~ "top-right-radius : 5px 5px ; background-repeat : repeat no-repeat ;\">.\n"
|
||||
#~ " <h3 style=\"margin : 0px ; padding : 2px 14px ; font-size : "
|
||||
#~ "12px ; color : #DDD ;\">\n"
|
||||
#~ " <strong style=\"text-transform:uppercase ;\">${objet."
|
||||
#~ "company_id.name}</strong></h3>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <div style=\"width : 347px ; margin : 0px ; padding : 5px 14px ; line-"
|
||||
#~ "height : 16px ; background-color : #F2F2F2 ;\">\n"
|
||||
#~ " <span style=\"color : #222 ; margin-bottom : 5px ; display : "
|
||||
#~ "block ;\">\n"
|
||||
#~ " ${objet.company_id.partner_id.sudo()."
|
||||
#~ "with_context(show_address=True, html_format=True).name_get()[0][1] | "
|
||||
#~ "safe}\n"
|
||||
#~ " </span>\n"
|
||||
#~ " % if object.company_id.phone :\n"
|
||||
#~ " <div style=\"margin-top : 0px ; margin-right : 0px ; margin-"
|
||||
#~ "bottom : 0px ; margin-left : 0px ; padding-top : 0px ; padding-right : "
|
||||
#~ "0px ; padding-bottom : 0px ; padding-left : 0px ; \">\n"
|
||||
#~ " Téléphone : ${object.company_id.phone}\n"
|
||||
#~ " </div>\n"
|
||||
#~ " % endif\n"
|
||||
#~ " % if object.company_id.website :\n"
|
||||
#~ " <div>\n"
|
||||
#~ " Web : <a href=\"${object.company_id.website}\">${object."
|
||||
#~ "company_id.website}</a>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " %endif\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " </div>\n"
|
||||
#~ " <p></p>\n"
|
||||
#~ " <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
#~ "access_token=${object.access_token}\" target=\"_blank\" style="
|
||||
#~ "\"background-color:#875A7B;padding : 8px 16px 8px 16px ; text-"
|
||||
#~ "decoration : none ; color : #fff ; border-radius : 5px ; font-size:13px ;"
|
||||
#~ "\">Voir le contrat</a>\n"
|
||||
#~ "</div>\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Contrat (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
#~ "Modifications"
|
||||
#~ msgstr ""
|
||||
#~ "${object.company_id.name} Contrat (Ref ${object.name or 'n/a'}) - "
|
||||
#~ "Modifications"
|
||||
|
||||
#~ msgid "Contract line Un-canceled: %s<br/>- "
|
||||
#~ msgstr "Annulation de la ligne de contrat annulée : %s<br/>- "
|
||||
|
||||
#~ msgid "Contract line canceled: %s<br/>- "
|
||||
#~ msgstr "Ligne de contrat annulée : %s<br/>- "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " stopped: <br/>\n"
|
||||
#~ " - <strong>End</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Ligne de contrat pour <strong>{product}</strong>\n"
|
||||
#~ " arrêtée : <br/>\n"
|
||||
#~ " - <strong>Fin</strong> : {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " planned a successor: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Un successeur a été créé pour la ligne de contrat pour \n"
|
||||
#~ " <strong>{product}</strong> : <br/>\n"
|
||||
#~ " - <strong>Début</strong> : {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fin</strong> : {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " renewed: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Ligne de contrat <strong>{product}</strong>\n"
|
||||
#~ " renouvellée : <br/>\n"
|
||||
#~ " - <strong>Début</strong> : {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fin</strong> : {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " suspended: <br/>\n"
|
||||
#~ " - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Ligne de contrat <strong>{product}</strong>\n"
|
||||
#~ " mise en suspens : <br/>\n"
|
||||
#~ " - <strong>Début de la suspension</strong> : "
|
||||
#~ "{new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fin de la suspension</strong> : {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
#~ "\"%s\">Invoice</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Contrat facturé manuellement : <a href=\"#\" data-oe-model=\"%s\" data-oe-"
|
||||
#~ "id=\"%s\">Invoice</a>"
|
||||
|
||||
#~ msgid "Followers (Channels)"
|
||||
#~ msgstr "Abonnés (canaux)"
|
||||
|
||||
#~ msgid "Manual renew needed"
|
||||
#~ msgstr "Renouvellement manuel requis"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Veuiller définir un journal %s pour l'entreprise '%s'."
|
||||
|
||||
#~ msgid "Termination notice date"
|
||||
#~ msgstr "Date de l'avis de résiliation"
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.4\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Contrato (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -380,7 +377,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -434,6 +430,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -560,6 +563,11 @@ msgstr "Líneas de contrato"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
#, fuzzy
|
||||
@@ -643,7 +651,7 @@ msgstr "A data de inicio do contrato '%s' non pode ser superior á data de fin"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -661,16 +669,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -678,11 +687,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -690,11 +699,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -702,11 +711,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -731,8 +740,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -774,6 +783,15 @@ msgstr "Contratos"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Líneas de contrato"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -958,6 +976,7 @@ msgstr "Descrición"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Desconto (%)"
|
||||
|
||||
@@ -979,25 +998,16 @@ msgstr ""
|
||||
"100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome amosado"
|
||||
|
||||
@@ -1009,6 +1019,19 @@ msgstr "Nome amosado"
|
||||
msgid "Display Type"
|
||||
msgstr "Nome amosado"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1024,11 +1047,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1058,25 +1076,21 @@ msgid "Group By..."
|
||||
msgstr "Agrupar por..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1221,6 +1235,11 @@ msgstr "Tipo de facturación"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Tipo de facturación"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1267,25 +1286,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Próxima data de factura"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificado por última vez o"
|
||||
|
||||
@@ -1336,7 +1346,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1571,8 +1581,9 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Por favor defina un diario de %s para a compañía '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -1923,6 +1934,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Subtotal"
|
||||
|
||||
@@ -2007,6 +2019,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2020,11 +2037,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2249,6 +2261,24 @@ msgstr "Contratos de vendas"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Contrato (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Por favor defina un diario de %s para a compañía '%s'."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1228,25 +1247,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1297,7 +1307,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1526,7 +1536,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1871,6 +1882,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1953,6 +1965,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1966,11 +1983,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2184,3 +2196,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "עודכן לאחרונה על"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -376,7 +373,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -430,6 +426,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -555,6 +558,11 @@ msgstr "अनुबंध टेम्पलेट"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
#, fuzzy
|
||||
@@ -639,7 +647,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -657,16 +665,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -674,11 +683,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -686,11 +695,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -698,11 +707,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -727,8 +736,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -770,6 +779,15 @@ msgstr "अनुबंध"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "अनुबंध टेम्पलेट"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -953,6 +971,7 @@ msgstr "विवरण"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "छूट (%)"
|
||||
|
||||
@@ -972,25 +991,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -1001,6 +1011,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1016,11 +1039,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1049,25 +1067,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
||||
@@ -1208,6 +1222,11 @@ msgstr "बीजक"
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1254,25 +1273,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "अंतिम बार अद्यतन किया गया"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "अंतिम बार संशोधित"
|
||||
|
||||
@@ -1323,7 +1333,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1556,7 +1566,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1906,6 +1917,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "उप कुल"
|
||||
|
||||
@@ -1991,6 +2003,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2004,11 +2021,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2224,6 +2236,18 @@ msgstr "अनुबंध"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice"
|
||||
#~ msgstr "बीजक"
|
||||
|
||||
|
||||
@@ -20,97 +20,94 @@ msgstr ""
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 3.9.1\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Ugovor (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -380,7 +377,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -434,6 +430,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -559,6 +562,11 @@ msgstr "Ugovor"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
#, fuzzy
|
||||
@@ -643,7 +651,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -661,16 +669,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -678,11 +687,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -690,11 +699,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -702,11 +711,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -731,8 +740,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -774,6 +783,15 @@ msgstr "Ugovori"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Ugovor"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -957,6 +975,7 @@ msgstr "Opis"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Popust (%)"
|
||||
|
||||
@@ -978,25 +997,16 @@ msgstr ""
|
||||
"jednak 100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv "
|
||||
|
||||
@@ -1008,6 +1018,19 @@ msgstr "Naziv "
|
||||
msgid "Display Type"
|
||||
msgstr "Naziv "
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1023,11 +1046,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1057,25 +1075,21 @@ msgid "Group By..."
|
||||
msgstr "Grupiraj po..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1217,6 +1231,11 @@ msgstr "Vrsta izdavanja računa"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Vrsta izdavanja računa"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1263,25 +1282,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Datum sljedećeg računa"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje modificirano"
|
||||
|
||||
@@ -1332,7 +1342,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1566,7 +1576,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1917,6 +1928,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -2002,6 +2014,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2015,11 +2032,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2235,6 +2247,21 @@ msgstr "Ugovori"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Ugovor (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<strong>#END#</strong>: End date\n"
|
||||
#~ " of\n"
|
||||
|
||||
@@ -20,97 +20,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -377,7 +374,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -431,6 +427,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -556,6 +559,11 @@ msgstr "Predložak ugovora"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
#, fuzzy
|
||||
@@ -640,7 +648,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -658,16 +666,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -675,11 +684,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -687,11 +696,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -699,11 +708,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -728,8 +737,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -771,6 +780,15 @@ msgstr "Ugovori"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Predložak ugovora"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -955,6 +973,7 @@ msgstr "Opis"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Popust (%)"
|
||||
|
||||
@@ -976,25 +995,16 @@ msgstr ""
|
||||
"ili jednak 100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
@@ -1006,6 +1016,19 @@ msgstr "Naziv"
|
||||
msgid "Display Type"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1021,11 +1044,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1055,25 +1073,21 @@ msgid "Group By..."
|
||||
msgstr "Grupiraj po..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1216,6 +1230,11 @@ msgstr "Tip izdavanja računa"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Tip izdavanja računa"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1262,25 +1281,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Datum sljedećeg računa"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje modificirano"
|
||||
|
||||
@@ -1331,7 +1341,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1564,9 +1574,10 @@ msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Molimo definirajte dnevnik prodaje '%s' za poduzeće '%s'."
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -1918,6 +1929,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Podzbroj"
|
||||
|
||||
@@ -2003,6 +2015,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2016,11 +2033,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2236,6 +2248,22 @@ msgstr "Ugovori"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Molimo definirajte dnevnik prodaje '%s' za poduzeće '%s'."
|
||||
|
||||
#~ msgid "Invoice"
|
||||
#~ msgstr "Račun"
|
||||
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -375,7 +372,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -428,6 +424,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -549,6 +552,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -625,7 +633,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -643,16 +651,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -660,11 +669,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -672,11 +681,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -684,11 +693,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -712,8 +721,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -753,6 +762,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -935,6 +953,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -954,25 +973,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -983,6 +993,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -998,11 +1021,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1031,25 +1049,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító ID"
|
||||
|
||||
@@ -1186,6 +1200,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1232,25 +1251,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Utoljára frissítve ekkor"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1301,7 +1311,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1530,7 +1540,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1875,6 +1886,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1957,6 +1969,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1970,11 +1987,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2188,3 +2200,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Diperbaharui pada"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "Contratto ${object.company_id.name} (Rif. ${object.name or 'n/d'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -382,7 +379,6 @@ msgstr "Totale allegati"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "Auto rinnovo"
|
||||
@@ -436,6 +432,13 @@ msgstr "Annullamento non permesso per questa riga"
|
||||
msgid "Canceled"
|
||||
msgstr "Annullata"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -559,6 +562,11 @@ msgstr "Procedura riga contratto"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -639,8 +647,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgstr "Riga contratto ri-attivata: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -657,76 +665,55 @@ msgstr "Riga contratto e sua seguente sovrapposte"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgstr "Riga contratto annullata: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Riga contratto per <strong>{product}</strong>\n"
|
||||
" arrestata: <br/>\n"
|
||||
" - <strong>Fine</strong>: {old_end} -- {new_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"La riga contratto per <strong>{product}</strong>\n"
|
||||
" ha pianificato un successore: <br/>\n"
|
||||
" - <strong>Inizio</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fine</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Riga contratto per <strong>{product}</strong>\n"
|
||||
" rinnovata: <br/>\n"
|
||||
" - <strong>Inizio</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fine</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Riga contratto per <strong>{product}</strong>\n"
|
||||
" sospesa: <br/>\n"
|
||||
" - <strong>Inizio sospensione</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fine sospensione</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -748,8 +735,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -790,6 +777,15 @@ msgstr "Contratti"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Riga contratto"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -974,6 +970,7 @@ msgstr "Descrizione"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Sconto (%)"
|
||||
|
||||
@@ -994,25 +991,16 @@ msgstr ""
|
||||
"Sconto applicato alle fatture generate. Dovrebbe essere minore o uguale a 100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
@@ -1024,6 +1012,19 @@ msgstr "Nome visualizzato"
|
||||
msgid "Display Type"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1039,11 +1040,6 @@ msgstr "Posizione fiscale"
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1072,25 +1068,21 @@ msgid "Group By..."
|
||||
msgstr "Raggruppa per..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1233,6 +1225,11 @@ msgstr "Tipo fatturazione"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Tipo fatturazione"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1278,25 +1275,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Ultima data fatturata"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
@@ -1348,8 +1336,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgstr "Rinnovo manuale necessario"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.actions.act_window,name:contract.purchase_contract_manually_create_invoice_act_window
|
||||
@@ -1580,8 +1568,9 @@ msgstr "Pianificazione successore non permessa per questa riga"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Definire un registro vendite %s per l'azienda \"%s\"."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -1932,6 +1921,7 @@ msgstr "Arresto/pianificazione del successore non permessi per questa riga"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Sub totale"
|
||||
|
||||
@@ -2018,6 +2008,11 @@ msgstr "Data notifica termine"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr "Notifica termine prima di"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2032,11 +2027,6 @@ msgstr "Tipo notifica termine"
|
||||
msgid "Termination Reason"
|
||||
msgstr "Data notifica termine"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr "Data notifica termine"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2261,6 +2251,94 @@ msgstr "e.g. Contratto XYZ"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "Contratto ${object.company_id.name} (Rif. ${object.name or 'n/d'})"
|
||||
|
||||
#~ msgid "Contract line Un-canceled: %s<br/>- "
|
||||
#~ msgstr "Riga contratto ri-attivata: %s<br/>- "
|
||||
|
||||
#~ msgid "Contract line canceled: %s<br/>- "
|
||||
#~ msgstr "Riga contratto annullata: %s<br/>- "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " stopped: <br/>\n"
|
||||
#~ " - <strong>End</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Riga contratto per <strong>{product}</strong>\n"
|
||||
#~ " arrestata: <br/>\n"
|
||||
#~ " - <strong>Fine</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " planned a successor: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "La riga contratto per <strong>{product}</strong>\n"
|
||||
#~ " ha pianificato un successore: <br/>\n"
|
||||
#~ " - <strong>Inizio</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fine</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " renewed: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Riga contratto per <strong>{product}</strong>\n"
|
||||
#~ " rinnovata: <br/>\n"
|
||||
#~ " - <strong>Inizio</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fine</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " suspended: <br/>\n"
|
||||
#~ " - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Riga contratto per <strong>{product}</strong>\n"
|
||||
#~ " sospesa: <br/>\n"
|
||||
#~ " - <strong>Inizio sospensione</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fine sospensione</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid "Manual renew needed"
|
||||
#~ msgstr "Rinnovo manuale necessario"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Definire un registro vendite %s per l'azienda \"%s\"."
|
||||
|
||||
#~ msgid "Termination notice date"
|
||||
#~ msgstr "Data notifica termine"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span attrs=\"{'invisible': [('contract_to_invoice_count', '>', "
|
||||
#~ "1)]}\">\n"
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "최근 갱신 날짜"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1230,25 +1249,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1299,7 +1309,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1528,7 +1538,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -20,97 +20,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -375,7 +372,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -428,6 +424,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -549,6 +552,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -624,7 +632,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -642,16 +650,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -659,11 +668,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -671,11 +680,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -683,11 +692,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -711,8 +720,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -752,6 +761,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -934,6 +952,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -953,25 +972,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -982,6 +992,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -997,11 +1020,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1030,25 +1048,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1185,6 +1199,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1231,25 +1250,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1300,7 +1310,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1529,7 +1539,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1874,6 +1885,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1956,6 +1968,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1969,11 +1986,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2187,3 +2199,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
|
||||
"2);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1230,25 +1249,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Pēdējās izmaiņas"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1299,7 +1309,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1528,7 +1538,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1230,25 +1249,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1299,7 +1309,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1528,7 +1538,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
@@ -982,6 +992,19 @@ msgstr "Vis navn"
|
||||
msgid "Display Type"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -997,11 +1020,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1030,25 +1048,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1185,6 +1199,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1231,25 +1250,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Sist oppdatert den"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret den"
|
||||
|
||||
@@ -1300,7 +1310,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1529,7 +1539,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1874,6 +1885,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1956,6 +1968,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1969,11 +1986,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2187,3 +2199,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Contract (Ref ${object.name or 'n/b'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -390,7 +387,6 @@ msgstr "Aantal bijlagen"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "Automatisch vernieuwen"
|
||||
@@ -444,6 +440,13 @@ msgstr "Annuleren niet toegestaan voor deze regel"
|
||||
msgid "Canceled"
|
||||
msgstr "Geannuleerd"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -568,6 +571,11 @@ msgstr "Contractregels wizard"
|
||||
msgid "Contract Modification"
|
||||
msgstr "Contract modificaties"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -648,8 +656,8 @@ msgstr "Contract '%s' startdatum kan niet later zijn dan einddatum"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgstr "Contractregel annuleren ongedaan gemaakt: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -666,77 +674,55 @@ msgstr "Contractlijn en zijn opvolger overlappen elkaar"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgstr "Contractregel geannuleerd: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Contractregel voor <strong>{product}</strong>\n"
|
||||
" gestopt: <br/>\n"
|
||||
" - <strong>Einde:</strong>: {old_end} -- "
|
||||
"{new_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Contracttegel voor <strong>{product}</strong>\n"
|
||||
" plande een opvolger: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Einde</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Contractregel voor <strong>{product}</strong>\n"
|
||||
" vernieuwd: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Einde</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Contractregel voor <strong>{product}</strong>\n"
|
||||
" opgeschort: <br/>\n"
|
||||
" - <strong>opgeschort Start</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>opgeschort Einde</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -758,11 +744,9 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
"Contract handmatig gefactureerd: <a href=\"#\" data-oe-model=\"%s\" data-oe-"
|
||||
"id=\"%s\">factuur</a>"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.message.subtype,name:contract.mail_message_subtype_contract_modification
|
||||
@@ -802,6 +786,15 @@ msgstr "Contracten"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Contract Regels"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -986,6 +979,7 @@ msgstr "Omschrijving"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Korting (%)"
|
||||
|
||||
@@ -1007,25 +1001,16 @@ msgstr ""
|
||||
"kleiner of gelijk naan 100 zijn"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergave naam"
|
||||
|
||||
@@ -1037,6 +1022,19 @@ msgstr "Weergave naam"
|
||||
msgid "Display Type"
|
||||
msgstr "Weergave naam"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1052,11 +1050,6 @@ msgstr "Fiscale positie"
|
||||
msgid "Followers"
|
||||
msgstr "Volgers"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr "Volgers (Kanalen)"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1086,25 +1079,21 @@ msgid "Group By..."
|
||||
msgstr "Groepeer op..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1248,6 +1237,11 @@ msgstr "Factuur soort"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Factuur soort"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1293,25 +1287,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Datum laatste factuur"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
@@ -1362,8 +1347,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgstr "Handmatige vernieuwing nodig"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.actions.act_window,name:contract.purchase_contract_manually_create_invoice_act_window
|
||||
@@ -1594,8 +1579,9 @@ msgstr "Plannen opvolger niet toegestaan voor deze regel"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "U dient een '%s' verkoopboek te definiëren voor het bedrijf '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -1944,6 +1930,7 @@ msgstr "Stoppen / Plannen opvolger is niet toegestaan"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Subtotaal"
|
||||
|
||||
@@ -2030,6 +2017,11 @@ msgstr "Datum kennisgeving beëindiging"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr "Beëindiging kennisgeving voor"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2044,11 +2036,6 @@ msgstr "Type kennisgeving van beëindiging"
|
||||
msgid "Termination Reason"
|
||||
msgstr "Datum kennisgeving beëindiging"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr "Datum kennisgeving beëindiging"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2275,6 +2262,104 @@ msgstr "bijv. Contract ABC"
|
||||
msgid "on"
|
||||
msgstr "op"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Contract (Ref ${object.name or 'n/b'})"
|
||||
|
||||
#~ msgid "Contract line Un-canceled: %s<br/>- "
|
||||
#~ msgstr "Contractregel annuleren ongedaan gemaakt: %s<br/>- "
|
||||
|
||||
#~ msgid "Contract line canceled: %s<br/>- "
|
||||
#~ msgstr "Contractregel geannuleerd: %s<br/>- "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " stopped: <br/>\n"
|
||||
#~ " - <strong>End</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Contractregel voor <strong>{product}</strong>\n"
|
||||
#~ " gestopt: <br/>\n"
|
||||
#~ " - <strong>Einde:</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " planned a successor: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Contracttegel voor <strong>{product}</strong>\n"
|
||||
#~ " plande een opvolger: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Einde</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " renewed: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Contractregel voor <strong>{product}</strong>\n"
|
||||
#~ " vernieuwd: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Einde</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " suspended: <br/>\n"
|
||||
#~ " - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Contractregel voor <strong>{product}</strong>\n"
|
||||
#~ " opgeschort: <br/>\n"
|
||||
#~ " - <strong>opgeschort Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>opgeschort Einde</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
#~ "\"%s\">Invoice</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Contract handmatig gefactureerd: <a href=\"#\" data-oe-model=\"%s\" data-"
|
||||
#~ "oe-id=\"%s\">factuur</a>"
|
||||
|
||||
#~ msgid "Followers (Channels)"
|
||||
#~ msgstr "Volgers (Kanalen)"
|
||||
|
||||
#~ msgid "Manual renew needed"
|
||||
#~ msgstr "Handmatige vernieuwing nodig"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "U dient een '%s' verkoopboek te definiëren voor het bedrijf '%s'."
|
||||
|
||||
#~ msgid "Termination notice date"
|
||||
#~ msgstr "Datum kennisgeving beëindiging"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1230,25 +1249,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1299,7 +1309,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1528,7 +1538,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -428,6 +424,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -553,6 +556,11 @@ msgstr "Contractsjabloon"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
#, fuzzy
|
||||
@@ -637,7 +645,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -655,16 +663,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -672,11 +681,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -684,11 +693,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -696,11 +705,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -725,8 +734,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -768,6 +777,15 @@ msgstr "Contracten"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Contractsjabloon"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -951,6 +969,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -970,25 +989,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -999,6 +1009,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1014,11 +1037,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1047,25 +1065,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1206,6 +1220,11 @@ msgstr "Factuur"
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1252,25 +1271,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst aangepast op"
|
||||
|
||||
@@ -1321,7 +1331,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1554,7 +1564,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1903,6 +1914,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1988,6 +2000,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2001,11 +2018,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2221,6 +2233,18 @@ msgstr "Contracten"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice"
|
||||
#~ msgstr "Factuur"
|
||||
|
||||
|
||||
@@ -20,97 +20,94 @@ msgstr ""
|
||||
"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
|
||||
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -375,7 +372,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -428,6 +424,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -549,6 +552,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -624,7 +632,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -642,16 +650,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -659,11 +668,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -671,11 +680,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -683,11 +692,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -711,8 +720,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -752,6 +761,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -934,6 +952,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -953,25 +972,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -982,6 +992,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -997,11 +1020,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1030,25 +1048,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1185,6 +1199,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1231,25 +1250,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Data ostatniej modyfikacji"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1300,7 +1310,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1529,7 +1539,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1874,6 +1885,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1956,6 +1968,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1969,11 +1986,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2187,3 +2199,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -20,97 +20,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Contrato (Refª ${object.name or 'n/a'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -378,7 +375,6 @@ msgstr "Contagem de Anexos"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "Auto Renovação"
|
||||
@@ -431,6 +427,13 @@ msgstr "Cancelamento não autorizado para esta linha"
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -552,6 +555,11 @@ msgstr "O Contrato Cria Manualmente o Assistente da Fatura"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -627,8 +635,8 @@ msgstr "A data de início do contrato '%s' não pode ser posterior à data de fi
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgstr "Linha de Contrato Não Cancelada: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -645,76 +653,55 @@ msgstr "A linha do contrato e a sua sucessora sobrepuseram-se"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgstr "Linha do contrato cancelada: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Linha do contrato para <strong>{product}</strong>\n"
|
||||
" bloqueada: <br/>\n"
|
||||
" - <strong>Fim</strong>: {old_end} -- {new_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Linha do contrato para <strong>{product}</strong>\n"
|
||||
" planeou uma sucessora: <br/>\n"
|
||||
" - <strong>Início</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fim</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"A linha de contrato para <strong>{product}</strong>\n"
|
||||
" oi renovada: <br/>\n"
|
||||
" - <strong>Início</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fim</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"A linha de contrato para <strong>{product}</strong>\n"
|
||||
" foi suspensa: <br/>\n"
|
||||
" - <strong>Início da Suspensão</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fim da Suspensão</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -736,11 +723,9 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
"Contrato faturado manualmente: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Fatura</a>"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.message.subtype,name:contract.mail_message_subtype_contract_modification
|
||||
@@ -779,6 +764,15 @@ msgstr "Contratos"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Contratos a faturar"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -960,6 +954,7 @@ msgstr "Descrição"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Desconto (%)"
|
||||
|
||||
@@ -980,25 +975,16 @@ msgstr ""
|
||||
"Desconto que é aplicado nas faturas geradas. Deve ser igual ou inferior a 100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
@@ -1009,6 +995,19 @@ msgstr "Nome a Apresentar"
|
||||
msgid "Display Type"
|
||||
msgstr "Tipo de Exibição"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1024,11 +1023,6 @@ msgstr "Posição Fiscal"
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr "Seguidores (Canais)"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1057,25 +1051,21 @@ msgid "Group By..."
|
||||
msgstr "Agrupar Por..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1219,6 +1209,11 @@ msgstr "Desfasamento de faturação"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Tipo de faturação"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1264,25 +1259,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Data da Última Fatura"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação Em"
|
||||
|
||||
@@ -1333,8 +1319,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgstr "Renovação manual necessária"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.actions.act_window,name:contract.purchase_contract_manually_create_invoice_act_window
|
||||
@@ -1564,8 +1550,9 @@ msgstr "Plano sucessor não é autorizado para esta linha"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Por favor, defina um diário %s para a empresa '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -1915,6 +1902,7 @@ msgstr "Paragem/Plano sucessor não autorizados para esta linha"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Subtotal"
|
||||
|
||||
@@ -1997,6 +1985,11 @@ msgstr "Data de Término"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr "Aviso de Rescisão Antes"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2010,11 +2003,6 @@ msgstr "Tipo de Aviso de Rescisão"
|
||||
msgid "Termination Reason"
|
||||
msgstr "Motivo de Término"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr "Data de aviso de rescisão"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2240,6 +2228,104 @@ msgstr "p. ex. Contrato XYZ"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Contrato (Refª ${object.name or 'n/a'})"
|
||||
|
||||
#~ msgid "Contract line Un-canceled: %s<br/>- "
|
||||
#~ msgstr "Linha de Contrato Não Cancelada: %s<br/>- "
|
||||
|
||||
#~ msgid "Contract line canceled: %s<br/>- "
|
||||
#~ msgstr "Linha do contrato cancelada: %s<br/>- "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " stopped: <br/>\n"
|
||||
#~ " - <strong>End</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Linha do contrato para <strong>{product}</strong>\n"
|
||||
#~ " bloqueada: <br/>\n"
|
||||
#~ " - <strong>Fim</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " planned a successor: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Linha do contrato para <strong>{product}</strong>\n"
|
||||
#~ " planeou uma sucessora: <br/>\n"
|
||||
#~ " - <strong>Início</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fim</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " renewed: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "A linha de contrato para <strong>{product}</strong>\n"
|
||||
#~ " oi renovada: <br/>\n"
|
||||
#~ " - <strong>Início</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fim</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " suspended: <br/>\n"
|
||||
#~ " - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "A linha de contrato para <strong>{product}</strong>\n"
|
||||
#~ " foi suspensa: <br/>\n"
|
||||
#~ " - <strong>Início da Suspensão</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fim da Suspensão</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
#~ "\"%s\">Invoice</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Contrato faturado manualmente: <a href=\"#\" data-oe-model=\"%s\" data-oe-"
|
||||
#~ "id=\"%s\">Fatura</a>"
|
||||
|
||||
#~ msgid "Followers (Channels)"
|
||||
#~ msgstr "Seguidores (Canais)"
|
||||
|
||||
#~ msgid "Manual renew needed"
|
||||
#~ msgstr "Renovação manual necessária"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Por favor, defina um diário %s para a empresa '%s'."
|
||||
|
||||
#~ msgid "Termination notice date"
|
||||
#~ msgstr "Data de aviso de rescisão"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span attrs=\"{'invisible': [('contract_to_invoice_count', '>', "
|
||||
#~ "1)]}\">\n"
|
||||
|
||||
@@ -20,97 +20,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Contrato (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -379,7 +376,6 @@ msgstr "Contagem de Anexos"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "Renovação Automática"
|
||||
@@ -432,6 +428,13 @@ msgstr "Não é permitido o cancelamento para esta linha"
|
||||
msgid "Canceled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -553,6 +556,11 @@ msgstr "Assistente para criar manualmente fatura de contrato"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -629,8 +637,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgstr "Linha do Contrato Não Cancelada: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -647,76 +655,55 @@ msgstr "A linha do contrato e seu sucessora se sobrepuseram"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgstr "Linha do contrato cancelada: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Linha do Contrato para <strong>{product}</strong>\n"
|
||||
" parada: <br/>\n"
|
||||
" - <strong>Fim</strong>: {old_end} -- {new_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Linha do Contrato para <strong>{product}</strong>\n"
|
||||
" planejou um sucessor: <br/>\n"
|
||||
" - <strong>Início</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fim</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Linha do Contrato para <strong>{product}</strong>\n"
|
||||
" renovada: <br/>\n"
|
||||
" - <strong>Início</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fim</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Linha do contrato para <strong>{product}</strong>\n"
|
||||
" suspensa: <br/>\n"
|
||||
" - <strong>Início da Suspensão</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Fim da Suspensão</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -738,11 +725,9 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
"Contrato faturado manualmente: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Fatura</a>"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.message.subtype,name:contract.mail_message_subtype_contract_modification
|
||||
@@ -781,6 +766,15 @@ msgstr "Contratos"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Contratos para faturar"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -966,6 +960,7 @@ msgstr "Descrição"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "Desconto (%)"
|
||||
|
||||
@@ -985,25 +980,16 @@ msgid ""
|
||||
msgstr "Desconto aplicado em faturas geradas. Deve ser menor ou igual a 100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Exibir Nome"
|
||||
|
||||
@@ -1014,6 +1000,19 @@ msgstr "Exibir Nome"
|
||||
msgid "Display Type"
|
||||
msgstr "Exibir Tipo"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1029,11 +1028,6 @@ msgstr "Posição Fiscal"
|
||||
msgid "Followers"
|
||||
msgstr "Seguidores"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr "Seguidores (Canais)"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1062,25 +1056,21 @@ msgid "Group By..."
|
||||
msgstr "Agrupar por..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1225,6 +1215,11 @@ msgstr "Tipo de faturamento"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Tipo de Fatuamento"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1270,25 +1265,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Última Data Faturada"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação Feita em"
|
||||
|
||||
@@ -1339,8 +1325,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgstr "Renovação manual necessária"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.actions.act_window,name:contract.purchase_contract_manually_create_invoice_act_window
|
||||
@@ -1570,8 +1556,9 @@ msgstr "Plano sucessor não permitido para esta linha"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Defina um %s diário para a empresa '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -1921,6 +1908,7 @@ msgstr "Parar/Plano sucessor não permitido para esta linha"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Subtotal"
|
||||
|
||||
@@ -2003,6 +1991,11 @@ msgstr "Data de Encerramento"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr "Aviso de Rescisão Anterior"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2016,11 +2009,6 @@ msgstr "Tipo de Aviso de Rescisão"
|
||||
msgid "Termination Reason"
|
||||
msgstr "Razão do Encerramento"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr "Data de Aviso de Rescisão"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2246,6 +2234,104 @@ msgstr "ex: Contrato XYZ"
|
||||
msgid "on"
|
||||
msgstr "em"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Contrato (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#~ msgid "Contract line Un-canceled: %s<br/>- "
|
||||
#~ msgstr "Linha do Contrato Não Cancelada: %s<br/>- "
|
||||
|
||||
#~ msgid "Contract line canceled: %s<br/>- "
|
||||
#~ msgstr "Linha do contrato cancelada: %s<br/>- "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " stopped: <br/>\n"
|
||||
#~ " - <strong>End</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Linha do Contrato para <strong>{product}</strong>\n"
|
||||
#~ " parada: <br/>\n"
|
||||
#~ " - <strong>Fim</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " planned a successor: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Linha do Contrato para <strong>{product}</strong>\n"
|
||||
#~ " planejou um sucessor: <br/>\n"
|
||||
#~ " - <strong>Início</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fim</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " renewed: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Linha do Contrato para <strong>{product}</strong>\n"
|
||||
#~ " renovada: <br/>\n"
|
||||
#~ " - <strong>Início</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fim</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " suspended: <br/>\n"
|
||||
#~ " - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "Linha do contrato para <strong>{product}</strong>\n"
|
||||
#~ " suspensa: <br/>\n"
|
||||
#~ " - <strong>Início da Suspensão</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Fim da Suspensão</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
#~ "\"%s\">Invoice</a>"
|
||||
#~ msgstr ""
|
||||
#~ "Contrato faturado manualmente: <a href=\"#\" data-oe-model=\"%s\" data-oe-"
|
||||
#~ "id=\"%s\">Fatura</a>"
|
||||
|
||||
#~ msgid "Followers (Channels)"
|
||||
#~ msgstr "Seguidores (Canais)"
|
||||
|
||||
#~ msgid "Manual renew needed"
|
||||
#~ msgstr "Renovação manual necessária"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Defina um %s diário para a empresa '%s'."
|
||||
|
||||
#~ msgid "Termination notice date"
|
||||
#~ msgstr "Data de Aviso de Rescisão"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "<span attrs=\"{'invisible': [('contract_to_invoice_count', '>', "
|
||||
#~ "1)]}\">\n"
|
||||
|
||||
@@ -20,97 +20,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.1.1\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Contrato (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -377,7 +374,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -430,6 +426,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -551,6 +554,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -627,7 +635,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -645,16 +653,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -662,11 +671,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -674,11 +683,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -686,11 +695,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -714,8 +723,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -755,6 +764,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -937,6 +955,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -956,25 +975,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
@@ -986,6 +996,19 @@ msgstr "Nome a Apresentar"
|
||||
msgid "Display Type"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1001,11 +1024,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1034,25 +1052,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1189,6 +1203,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1235,25 +1254,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
|
||||
@@ -1304,7 +1314,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1533,7 +1543,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1878,6 +1889,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1960,6 +1972,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1973,11 +1990,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2191,3 +2203,18 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Contrato (Ref ${object.name or 'n/a'})"
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -376,7 +373,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -429,6 +425,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -550,6 +553,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -626,7 +634,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -644,16 +652,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -661,11 +670,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -673,11 +682,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -685,11 +694,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -713,8 +722,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -754,6 +763,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -936,6 +954,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -955,25 +974,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume Afişat"
|
||||
|
||||
@@ -985,6 +995,19 @@ msgstr "Nume Afişat"
|
||||
msgid "Display Type"
|
||||
msgstr "Nume Afişat"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1000,11 +1023,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1033,25 +1051,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1188,6 +1202,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1234,25 +1253,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Ultima actualizare la"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima actualizare în"
|
||||
|
||||
@@ -1303,7 +1313,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1532,7 +1542,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1877,6 +1888,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1959,6 +1971,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1972,11 +1989,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2190,3 +2202,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -20,97 +20,94 @@ msgstr ""
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
|
||||
"%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -375,7 +372,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -429,6 +425,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -554,6 +557,11 @@ msgstr "Договоры"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
#, fuzzy
|
||||
@@ -638,7 +646,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -656,16 +664,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -673,11 +682,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -685,11 +694,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -697,11 +706,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -726,8 +735,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -769,6 +778,15 @@ msgstr "Договоры"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Договоры"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -952,6 +970,7 @@ msgstr "Описание"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -971,25 +990,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -1000,6 +1010,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1015,11 +1038,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1048,25 +1066,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1207,6 +1221,11 @@ msgstr "Счёт-фактура"
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1253,25 +1272,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1322,7 +1332,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1555,7 +1565,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1905,6 +1916,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1990,6 +2002,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2003,11 +2020,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2223,6 +2235,18 @@ msgstr "Договоры"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice"
|
||||
#~ msgstr "Счёт-фактура"
|
||||
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Naposledy upravené"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -376,7 +373,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -429,6 +425,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -550,6 +553,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -626,7 +634,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -644,16 +652,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -661,11 +670,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -673,11 +682,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -685,11 +694,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -713,8 +722,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -754,6 +763,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -935,6 +953,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -954,25 +973,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -983,6 +993,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -998,11 +1021,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1031,25 +1049,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -1186,6 +1200,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1231,25 +1250,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1300,7 +1310,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1529,7 +1539,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1874,6 +1885,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1956,6 +1968,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1969,11 +1986,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2187,3 +2199,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -20,97 +20,94 @@ msgstr ""
|
||||
"%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -375,7 +372,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -428,6 +424,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -549,6 +552,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -624,7 +632,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -642,16 +650,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -659,11 +668,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -671,11 +680,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -683,11 +692,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -711,8 +720,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -752,6 +761,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr "Opis"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazni naziv"
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr "Prikazni naziv"
|
||||
msgid "Display Type"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr "Združi po..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Zadnjič zaračunano"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -20,97 +20,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -375,7 +372,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -428,6 +424,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -549,6 +552,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -624,7 +632,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -642,16 +650,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -659,11 +668,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -671,11 +680,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -683,11 +692,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -711,8 +720,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -752,6 +761,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -934,6 +952,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -953,25 +972,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -982,6 +992,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -997,11 +1020,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1030,25 +1048,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1185,6 +1199,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1230,25 +1249,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1299,7 +1309,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1528,7 +1538,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Senast uppdaterad"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "รหัส"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -20,100 +20,93 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Weblate 4.3.2\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"\n"
|
||||
" <p>Selam</p>\n"
|
||||
" <p>Sözleşmede size bildirmek istediğimiz değişiklikler var.</p>\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} Sözleşme (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
@@ -379,7 +372,6 @@ msgstr "Ek Sayısı"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "Otomatik Yenile"
|
||||
@@ -432,6 +424,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr "İptal Edildi"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -553,6 +552,11 @@ msgstr "Sözleşme Manuel Fatura Oluşturma Sihirbazı"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -628,7 +632,7 @@ msgstr "Sözleşme satırı '%s' başlangıç tarihi bitiş tarihinden sonra ola
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -646,16 +650,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -663,11 +668,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -675,11 +680,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -687,11 +692,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -715,8 +720,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -756,6 +761,15 @@ msgstr "Sözleşmeler"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Faturalanacak Sözleşmeler"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -937,6 +951,7 @@ msgstr "Açıklama"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "İndirim (%)"
|
||||
|
||||
@@ -957,25 +972,16 @@ msgstr ""
|
||||
"Üretilen faturalarda uygulanan indirim. 100'den az veya ona eşit olmalıdır"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ad Görünümü"
|
||||
|
||||
@@ -986,6 +992,19 @@ msgstr "Ad Görünümü"
|
||||
msgid "Display Type"
|
||||
msgstr "Ekran Türü"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1001,11 +1020,6 @@ msgstr "Mali Pozisyon"
|
||||
msgid "Followers"
|
||||
msgstr "Takipçiler"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr "Takipçiler (Kanallar)"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1034,25 +1048,21 @@ msgid "Group By..."
|
||||
msgstr "Grupla ..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1191,6 +1201,11 @@ msgstr "Ofset Faturalama"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Fatura Türü"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1236,25 +1251,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Son Fatura Tarihi"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Değiştirilme"
|
||||
|
||||
@@ -1305,7 +1311,7 @@ msgstr "Manuel Para Birimi"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1536,8 +1542,9 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Lütfen '%s' şirketi için bir %s yevmiye tanımlayın."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -1885,6 +1892,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Ara Toplam"
|
||||
|
||||
@@ -1967,6 +1975,11 @@ msgstr "Sonlandırma Tarihi"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1980,11 +1993,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr "Sonlandırma Nedeni"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2199,6 +2207,40 @@ msgstr "ör. Sözleşme XYZ"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ " <p>Hello</p>\n"
|
||||
#~ " <p>We have modifications on the contract that we want to "
|
||||
#~ "notify you.</p>\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "\n"
|
||||
#~ " <p>Selam</p>\n"
|
||||
#~ " <p>Sözleşmede size bildirmek istediğimiz değişiklikler var.</"
|
||||
#~ "p>\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} Sözleşme (Ref ${object.name or 'n/a'})"
|
||||
|
||||
#~ msgid "Followers (Channels)"
|
||||
#~ msgstr "Takipçiler (Kanallar)"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Lütfen '%s' şirketi için bir %s yevmiye tanımlayın."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -377,7 +374,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -431,6 +427,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -556,6 +559,11 @@ msgstr "Sözleşme"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
#, fuzzy
|
||||
@@ -640,7 +648,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -658,16 +666,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -675,11 +684,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -687,11 +696,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -699,11 +708,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -728,8 +737,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -771,6 +780,15 @@ msgstr "Sözleşmeler"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "Sözleşme"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -954,6 +972,7 @@ msgstr "Açıklama"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "İndirim (%)"
|
||||
|
||||
@@ -974,25 +993,16 @@ msgstr ""
|
||||
"Üretilen faturalarda uygulanan indirim. 100'den az veya ona eşit olmalıdır"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ad Görünümü"
|
||||
|
||||
@@ -1004,6 +1014,19 @@ msgstr "Ad Görünümü"
|
||||
msgid "Display Type"
|
||||
msgstr "Ad Görünümü"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1019,11 +1042,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1053,25 +1071,21 @@ msgid "Group By..."
|
||||
msgstr "Grupla ..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1214,6 +1228,11 @@ msgstr "Fatura türü"
|
||||
msgid "Invoicing type"
|
||||
msgstr "Fatura türü"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1260,25 +1279,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Sonraki Fatura Tarihi"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Güncelleme"
|
||||
|
||||
@@ -1329,7 +1339,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1562,9 +1572,10 @@ msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, fuzzy, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "Lütfen '%s' şirketi için bir satış yevmiyesi tanımlayın ('%s')."
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -1916,6 +1927,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "Alt Toplam"
|
||||
|
||||
@@ -2001,6 +2013,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2014,11 +2031,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2234,6 +2246,22 @@ msgstr "Sözleşmeler"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "Lütfen '%s' şirketi için bir satış yevmiyesi tanımlayın ('%s')."
|
||||
|
||||
#~ msgid "Invoice"
|
||||
#~ msgstr "Fatura"
|
||||
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1230,25 +1249,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Дата останньої зміни"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1299,7 +1309,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1528,7 +1538,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -18,97 +18,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -373,7 +370,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -426,6 +422,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -547,6 +550,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -622,7 +630,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -640,16 +648,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -657,11 +666,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -669,11 +678,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -681,11 +690,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -709,8 +718,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -750,6 +759,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -932,6 +950,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -951,25 +970,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -980,6 +990,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -995,11 +1018,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1028,25 +1046,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1183,6 +1197,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1228,25 +1247,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1297,7 +1307,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1526,7 +1536,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1871,6 +1882,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1953,6 +1965,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1966,11 +1983,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2184,3 +2196,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1230,25 +1249,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1299,7 +1309,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1528,7 +1538,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1873,6 +1884,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1955,6 +1967,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1968,11 +1985,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2186,3 +2198,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -20,97 +20,94 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 3.8\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr "${object.company_id.name} 合同(参考 ${object.name or 'n/a'})"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -380,7 +377,6 @@ msgstr "附件数量"
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr "自动更新"
|
||||
@@ -434,6 +430,13 @@ msgstr "取消此行不允许"
|
||||
msgid "Canceled"
|
||||
msgstr "已取消"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -558,6 +561,11 @@ msgstr "合同行向导"
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -638,8 +646,8 @@ msgstr "合同行'%s'的开始日期不能晚于结束日期"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgstr "合同行未取消:%s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -656,76 +664,55 @@ msgstr "与接替的合同行重叠"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgstr "合同行取消:%s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"合同行<strong>{product}</strong>\n"
|
||||
" 已停止:<br/>\n"
|
||||
" - <strong>结束</strong>: {old_end} -- {new_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"合同行 <strong>{product}</strong>\n"
|
||||
" 计划继任者:<br/>\n"
|
||||
" - <strong>开始</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>结束</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"计划继任者: <strong>{product}</strong>\n"
|
||||
" 更新: <br/>\n"
|
||||
" - <strong>开始</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>结束</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"合同行<strong>{product}</strong>\n"
|
||||
" 暂停:<br/>\n"
|
||||
" - <strong>暂停开始</strong>: {new_date_start}\n"
|
||||
" <br/>\n"
|
||||
" - <strong>暂停结束</strong>: {new_date_end}\n"
|
||||
" "
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
@@ -747,8 +734,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -789,6 +776,15 @@ msgstr "合同"
|
||||
msgid "Contracts to invoice"
|
||||
msgstr "合同行"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -973,6 +969,7 @@ msgstr "说明"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr "折扣(%)"
|
||||
|
||||
@@ -992,25 +989,16 @@ msgid ""
|
||||
msgstr "在生成的发票中应用的折扣。它应该小于或等于100"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
@@ -1022,6 +1010,19 @@ msgstr "显示名称"
|
||||
msgid "Display Type"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -1037,11 +1038,6 @@ msgstr "税科目调整"
|
||||
msgid "Followers"
|
||||
msgstr "关注者"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr "税科目调整"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1070,25 +1066,21 @@ msgid "Group By..."
|
||||
msgstr "分组..."
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1227,6 +1219,11 @@ msgstr "发票类型"
|
||||
msgid "Invoicing type"
|
||||
msgstr "发票类型"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1272,25 +1269,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr "已开票的最后日期"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
@@ -1341,8 +1329,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgstr "需要手动更新"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.actions.act_window,name:contract.purchase_contract_manually_create_invoice_act_window
|
||||
@@ -1573,8 +1561,9 @@ msgstr "计划接替不允许此行"
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgstr "请为定义一个%s日记账,公司 '%s'。"
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__access_url
|
||||
@@ -1923,6 +1912,7 @@ msgstr "此线路不允许停止/计划接替"
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr "小计"
|
||||
|
||||
@@ -2009,6 +1999,11 @@ msgstr "终止通知日期"
|
||||
msgid "Termination Notice Before"
|
||||
msgstr "终止通知之前"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -2023,11 +2018,6 @@ msgstr "终止通知类型"
|
||||
msgid "Termination Reason"
|
||||
msgstr "终止通知日期"
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr "终止通知日期"
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2242,6 +2232,97 @@ msgstr "例如 合同XYZ"
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
#~ msgstr "${object.company_id.name} 合同(参考 ${object.name or 'n/a'})"
|
||||
|
||||
#~ msgid "Contract line Un-canceled: %s<br/>- "
|
||||
#~ msgstr "合同行未取消:%s<br/>- "
|
||||
|
||||
#~ msgid "Contract line canceled: %s<br/>- "
|
||||
#~ msgstr "合同行取消:%s<br/>- "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " stopped: <br/>\n"
|
||||
#~ " - <strong>End</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "合同行<strong>{product}</strong>\n"
|
||||
#~ " 已停止:<br/>\n"
|
||||
#~ " - <strong>结束</strong>: {old_end} -- "
|
||||
#~ "{new_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " planned a successor: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "合同行 <strong>{product}</strong>\n"
|
||||
#~ " 计划继任者:<br/>\n"
|
||||
#~ " - <strong>开始</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>结束</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " renewed: <br/>\n"
|
||||
#~ " - <strong>Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "计划继任者: <strong>{product}</strong>\n"
|
||||
#~ " 更新: <br/>\n"
|
||||
#~ " - <strong>开始</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>结束</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Contract line for <strong>{product}</strong>\n"
|
||||
#~ " suspended: <br/>\n"
|
||||
#~ " - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
#~ msgstr ""
|
||||
#~ "合同行<strong>{product}</strong>\n"
|
||||
#~ " 暂停:<br/>\n"
|
||||
#~ " - <strong>暂停开始</strong>: {new_date_start}\n"
|
||||
#~ " <br/>\n"
|
||||
#~ " - <strong>暂停结束</strong>: {new_date_end}\n"
|
||||
#~ " "
|
||||
|
||||
#~ msgid "Followers (Channels)"
|
||||
#~ msgstr "税科目调整"
|
||||
|
||||
#~ msgid "Manual renew needed"
|
||||
#~ msgstr "需要手动更新"
|
||||
|
||||
#~ msgid "Please define a %s journal for the company '%s'."
|
||||
#~ msgstr "请为定义一个%s日记账,公司 '%s'。"
|
||||
|
||||
#~ msgid "Termination notice date"
|
||||
#~ msgstr "终止通知日期"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "\n"
|
||||
#~ "<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
|
||||
@@ -19,97 +19,94 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello <t t-out=\"object.partner_id.name or '' \"/>,</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
||||
"\">\n"
|
||||
" &nbsp;&nbsp;<strong>REFERENCES</strong><br/>\n"
|
||||
" &nbsp;&nbsp;Contract: <strong t-out=\"object.name"
|
||||
"\"/><br/>\n"
|
||||
" <t t-if=\"object.date_start\">\n"
|
||||
" &nbsp;&nbsp;Contract Date Start: <t t-out="
|
||||
"\"object.date_start or ''\"/><br/>\n"
|
||||
" </t>\n"
|
||||
"\n"
|
||||
" <t t-if=\"object.user_id\">\n"
|
||||
" <t t-if=\"object.user_id.email\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <a t-att-href="
|
||||
"\"'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)\" t-"
|
||||
"out=\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" <t t-else=\"\">\n"
|
||||
" &nbsp;&nbsp;Your Contact: <t t-out="
|
||||
"\"object.user_id.name\"/>\n"
|
||||
" </t>\n"
|
||||
" </t>\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us."
|
||||
"</p>\n"
|
||||
" <p>Thank you for choosing <t t-out=\"object.company_id.name "
|
||||
"or 'us'\"/>!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
||||
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
||||
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: "
|
||||
"12px; color: #DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\" t-out="
|
||||
"\"object.company_id.name\"/></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
||||
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: "
|
||||
"block; \">\n"
|
||||
" <address t-field=\"object.company_id.sudo()."
|
||||
"partner_id\" t-options=\"{"widget": "contact", ""
|
||||
"fields": ["name", "address"], ""
|
||||
"no_marker": True}\"/>\n"
|
||||
" </span>\n"
|
||||
" <t t-if=\"object.company_id.phone\">\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
||||
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
||||
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
||||
" Phone: <t t-out=\"object.company_id.phone\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" <t t-if=\"object.company_id.website\">\n"
|
||||
" <div>\n"
|
||||
" Web: <a t-att-href=\"object.company_id.website\" "
|
||||
"t-out=\"object.company_id.website\"/>\n"
|
||||
" </div>\n"
|
||||
" </t>\n"
|
||||
" </div>\n"
|
||||
" <br/>\n"
|
||||
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
||||
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
||||
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-"
|
||||
"decoration: none; color: #fff; border-radius: 5px; font-size:13px;\">View "
|
||||
"contract</a>\n"
|
||||
" </div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"\n"
|
||||
"<p>Hello</p>\n"
|
||||
" <p>We have modifications on the contract that we want to notify "
|
||||
"you.</p>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,body_html:contract.email_contract_template
|
||||
msgid ""
|
||||
"\n"
|
||||
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
||||
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
||||
" <p>Hello ${object.partner_id.name or ''},</p>\n"
|
||||
" <p>A new contract has been created: </p>\n"
|
||||
"\n"
|
||||
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;\">\n"
|
||||
" <strong>REFERENCES</strong><br />\n"
|
||||
" Contract: <strong>${object.name}</strong><br />\n"
|
||||
" % if object.date_start:\n"
|
||||
" Contract Date Start: ${object.date_start or ''}<br />\n"
|
||||
" % endif\n"
|
||||
"\n"
|
||||
" % if object.user_id:\n"
|
||||
" % if object.user_id.email:\n"
|
||||
" Your Contact: <a href=\"mailto:${object.user_id.email or "
|
||||
"''}?subject=Contract%20${object.name}\">${object.user_id.name}</a>\n"
|
||||
" % else:\n"
|
||||
" Your Contact: ${object.user_id.name}\n"
|
||||
" % endif\n"
|
||||
" % endif\n"
|
||||
" </p>\n"
|
||||
"\n"
|
||||
" <br/>\n"
|
||||
" <p>If you have any questions, do not hesitate to contact us.</p>\n"
|
||||
" <p>Thank you for choosing ${object.company_id.name or 'us'}!</p>\n"
|
||||
" <br/>\n"
|
||||
" <br/>\n"
|
||||
" <div style=\"width: 375px; margin: 0px; padding: 0px; background-color: "
|
||||
"#8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; "
|
||||
"background-repeat: repeat no-repeat;\">\n"
|
||||
" <h3 style=\"margin: 0px; padding: 2px 14px; font-size: 12px; color: "
|
||||
"#DDD;\">\n"
|
||||
" <strong style=\"text-transform:uppercase;\">${object.company_id."
|
||||
"name}</strong></h3>\n"
|
||||
" </div>\n"
|
||||
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; line-height: "
|
||||
"16px; background-color: #F2F2F2;\">\n"
|
||||
" <span style=\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
||||
" ${object.company_id.partner_id.sudo()."
|
||||
"with_context(show_address=True, html_format=True).name_get()[0][1] | safe}\n"
|
||||
" </span>\n"
|
||||
" % if object.company_id.phone:\n"
|
||||
" <div style=\"margin-top: 0px; margin-right: 0px; margin-bottom: "
|
||||
"0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: "
|
||||
"0px; padding-left: 0px; \">\n"
|
||||
" Phone: ${object.company_id.phone}\n"
|
||||
" </div>\n"
|
||||
" % endif\n"
|
||||
" % if object.company_id.website:\n"
|
||||
" <div>\n"
|
||||
" Web: <a href=\"${object.company_id.website}\">${object."
|
||||
"company_id.website}</a>\n"
|
||||
" </div>\n"
|
||||
" %endif\n"
|
||||
" <p></p>\n"
|
||||
" </div>\n"
|
||||
" <p></p>\n"
|
||||
" <a href=\"${object.get_base_url()}/my/contracts/${object.id}?"
|
||||
"access_token=${object.access_token}\" target=\"_blank\" style=\"background-"
|
||||
"color:#875A7B;padding: 8px 16px 8px 16px; text-decoration: none; color: "
|
||||
"#fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
||||
"</div>\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "${object.company_id.name} Contract (Ref ${object.name or 'n/a'})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"${object.company_id.name} Contract (Ref ${object.name or 'n/a'}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_manually_create_invoice_form_view
|
||||
msgid ""
|
||||
@@ -374,7 +371,6 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__is_auto_renew
|
||||
msgid "Auto Renew"
|
||||
msgstr ""
|
||||
@@ -427,6 +423,13 @@ msgstr ""
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
||||
msgid "Click to create a new contract template."
|
||||
@@ -548,6 +551,11 @@ msgstr ""
|
||||
msgid "Contract Modification"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.mail_template_contract_modification
|
||||
msgid "Contract Modification Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "Contract Name"
|
||||
@@ -623,7 +631,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line Un-canceled: %s<br/>- "
|
||||
msgid "Contract line Un-canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -641,16 +649,17 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid "Contract line canceled: %s<br/>- "
|
||||
msgid "Contract line canceled: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" stopped: <br/>\n"
|
||||
" - <strong>End</strong>: {old_end} -- {new_end}\n"
|
||||
" - <strong>End</strong>: %(old_end)s -- "
|
||||
"%(new_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -658,11 +667,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" planned a successor: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -670,11 +679,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" renewed: <br/>\n"
|
||||
" - <strong>Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>End</strong>: {new_date_end}\n"
|
||||
" - <strong>End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -682,11 +691,11 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract_line.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract line for <strong>{product}</strong>\n"
|
||||
"Contract line for <strong>%(product)s</strong>\n"
|
||||
" suspended: <br/>\n"
|
||||
" - <strong>Suspension Start</strong>: {new_date_start}\n"
|
||||
" - <strong>Suspension Start</strong>: %(new_date_start)s\n"
|
||||
" <br/>\n"
|
||||
" - <strong>Suspension End</strong>: {new_date_end}\n"
|
||||
" - <strong>Suspension End</strong>: %(new_date_end)s\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
@@ -710,8 +719,8 @@ msgstr ""
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%s\" data-oe-id="
|
||||
"\"%s\">Invoice</a>"
|
||||
"Contract manually invoiced: <a href=\"#\" data-oe-model=\"%(model_name)s"
|
||||
"\" data-oe-id=\"%(rec_id)s\">Invoice</a>"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -751,6 +760,15 @@ msgstr ""
|
||||
msgid "Contracts to invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_line__product_uom_category_id
|
||||
#: model:ir.model.fields,help:contract.field_contract_template_line__product_uom_category_id
|
||||
msgid ""
|
||||
"Conversion between Units of Measure can only occur if they belong to the "
|
||||
"same category. The conversion will be made based on the ratios."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__create_invoice_visibility
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__create_invoice_visibility
|
||||
@@ -933,6 +951,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__discount
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__discount
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Discount (%)"
|
||||
msgstr ""
|
||||
|
||||
@@ -952,25 +971,16 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__display_name
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
@@ -981,6 +991,19 @@ msgstr ""
|
||||
msgid "Display Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,name:contract.email_contract_template
|
||||
msgid "Email Contract Template"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: code:addons/contract/wizards/contract_manually_create_invoice.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n"
|
||||
"%(ue)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
||||
msgid "Finished"
|
||||
@@ -996,11 +1019,6 @@ msgstr ""
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_channel_ids
|
||||
msgid "Followers (Channels)"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_partner_ids
|
||||
msgid "Followers (Partners)"
|
||||
@@ -1029,25 +1047,21 @@ msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move__id
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__has_message
|
||||
msgid "Has Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__id
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings__id
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -1184,6 +1198,11 @@ msgstr ""
|
||||
msgid "Invoicing type"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__is_auto_renew
|
||||
msgid "Is Auto Renew"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_is_follower
|
||||
msgid "Is Follower"
|
||||
@@ -1229,25 +1248,16 @@ msgid "Last Date Invoiced"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_account_move_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_manually_create_invoice____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_modification____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_basic_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_recurrency_mixin____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_tag____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_terminate_reason____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_company____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_config_settings____last_update
|
||||
#: model:ir.model.fields,field_description:contract.field_res_partner____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
@@ -1298,7 +1308,7 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__manual_renew_needed
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line_wizard__manual_renew_needed
|
||||
msgid "Manual renew needed"
|
||||
msgid "Manual Renew Needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1527,7 +1537,8 @@ msgstr ""
|
||||
#. module: contract
|
||||
#: code:addons/contract/models/contract.py:0
|
||||
#, python-format
|
||||
msgid "Please define a %s journal for the company '%s'."
|
||||
msgid ""
|
||||
"Please define a %(contract_type)s journal for the company '%(company)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
@@ -1872,6 +1883,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__price_subtotal
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_template_line__price_subtotal
|
||||
#: model_terms:ir.ui.view,arch_db:contract.portal_contract_page
|
||||
msgid "Sub Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -1954,6 +1966,11 @@ msgstr ""
|
||||
msgid "Termination Notice Before"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination Notice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__termination_notice_rule_type
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_rule_type
|
||||
@@ -1967,11 +1984,6 @@ msgstr ""
|
||||
msgid "Termination Reason"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:ir.model.fields,field_description:contract.field_contract_line__termination_notice_date
|
||||
msgid "Termination notice date"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "This contract was terminated for the reason"
|
||||
@@ -2185,3 +2197,15 @@ msgstr ""
|
||||
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
||||
msgid "on"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.email_contract_template
|
||||
msgid "{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }})"
|
||||
msgstr ""
|
||||
|
||||
#. module: contract
|
||||
#: model:mail.template,subject:contract.mail_template_contract_modification
|
||||
msgid ""
|
||||
"{{ object.company_id.name }} Contract (Ref {{ object.name or 'n/a' }}) - "
|
||||
"Modifications"
|
||||
msgstr ""
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import test_contract
|
||||
from . import test_contract_manually_create_invoice
|
||||
from . import test_portal
|
||||
|
||||
@@ -1743,37 +1743,6 @@ class TestContract(TestContractBase):
|
||||
len(invoice_lines),
|
||||
)
|
||||
|
||||
def test_contract_manually_create_invoice(self):
|
||||
self.acct_line.date_start = "2018-01-01"
|
||||
self.acct_line.recurring_invoicing_type = "post-paid"
|
||||
self.acct_line.date_end = "2018-03-15"
|
||||
self.contract2.unlink()
|
||||
contracts = self.contract
|
||||
for _i in range(10):
|
||||
contracts |= self.contract.copy()
|
||||
wizard = self.env["contract.manually.create.invoice"].create(
|
||||
{"invoice_date": self.today}
|
||||
)
|
||||
wizard.action_show_contract_to_invoice()
|
||||
contract_to_invoice_count = wizard.contract_to_invoice_count
|
||||
self.assertFalse(
|
||||
contracts
|
||||
- self.env["contract.contract"].search(
|
||||
wizard.action_show_contract_to_invoice()["domain"]
|
||||
),
|
||||
)
|
||||
action = wizard.create_invoice()
|
||||
invoice_lines = self.env["account.move.line"].search(
|
||||
[("contract_line_id", "in", contracts.mapped("contract_line_ids").ids)]
|
||||
)
|
||||
self.assertEqual(
|
||||
len(contracts.mapped("contract_line_ids")),
|
||||
len(invoice_lines),
|
||||
)
|
||||
invoices = self.env["account.move"].search(action["domain"])
|
||||
self.assertFalse(invoice_lines.mapped("move_id") - invoices)
|
||||
self.assertEqual(len(invoices), contract_to_invoice_count)
|
||||
|
||||
def test_get_period_to_invoice_monthlylastday_postpaid(self):
|
||||
self.acct_line.date_start = "2018-01-05"
|
||||
self.acct_line.recurring_invoicing_type = "post-paid"
|
||||
|
||||
70
contract/tests/test_contract_manually_create_invoice.py
Normal file
70
contract/tests/test_contract_manually_create_invoice.py
Normal file
@@ -0,0 +1,70 @@
|
||||
# Copyright 2018 Tecnativa - Carlos Dauden
|
||||
# Copyright 2018-2020 Tecnativa - Pedro M. Baeza
|
||||
# Copyright 2021 Tecnativa - Víctor Martínez
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
from .test_contract import TestContractBase
|
||||
|
||||
|
||||
class TestContractManuallyCreateInvoice(TestContractBase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.acct_line.date_start = "2018-01-01"
|
||||
cls.acct_line.recurring_invoicing_type = "post-paid"
|
||||
cls.acct_line.date_end = "2018-03-15"
|
||||
cls.contract2.unlink()
|
||||
|
||||
def test_contract_manually_create_invoice(self):
|
||||
|
||||
contracts = self.contract
|
||||
for _i in range(10):
|
||||
contracts |= self.contract.copy()
|
||||
wizard = self.env["contract.manually.create.invoice"].create(
|
||||
{"invoice_date": self.today}
|
||||
)
|
||||
wizard.action_show_contract_to_invoice()
|
||||
contract_to_invoice_count = wizard.contract_to_invoice_count
|
||||
self.assertFalse(
|
||||
contracts
|
||||
- self.env["contract.contract"].search(
|
||||
wizard.action_show_contract_to_invoice()["domain"]
|
||||
),
|
||||
)
|
||||
action = wizard.create_invoice()
|
||||
invoice_lines = self.env["account.move.line"].search(
|
||||
[("contract_line_id", "in", contracts.mapped("contract_line_ids").ids)]
|
||||
)
|
||||
self.assertEqual(
|
||||
len(contracts.mapped("contract_line_ids")),
|
||||
len(invoice_lines),
|
||||
)
|
||||
invoices = self.env["account.move"].search(action["domain"])
|
||||
self.assertFalse(invoice_lines.mapped("move_id") - invoices)
|
||||
self.assertEqual(len(invoices), contract_to_invoice_count)
|
||||
|
||||
def test_contract_manually_create_invoice_with_usererror(self):
|
||||
|
||||
contracts = self.contract
|
||||
|
||||
accounts = self.product_1.product_tmpl_id.get_product_accounts()
|
||||
accounts["income"].deprecated = True # To trigger a UserError
|
||||
|
||||
for _i in range(3):
|
||||
contracts |= self.contract.copy()
|
||||
wizard = self.env["contract.manually.create.invoice"].create(
|
||||
{"invoice_date": self.acct_line.date_end}
|
||||
)
|
||||
|
||||
with self.assertRaises(UserError):
|
||||
# The UserError re-raise a UserError
|
||||
wizard.create_invoice()
|
||||
|
||||
try:
|
||||
wizard.create_invoice()
|
||||
except Exception as e:
|
||||
# The re-raised UserError message is the modified one.
|
||||
self.assertTrue(str(e).startswith("Failed to process the contract"))
|
||||
@@ -2,6 +2,13 @@
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import (
|
||||
AccessDenied,
|
||||
AccessError,
|
||||
MissingError,
|
||||
UserError,
|
||||
ValidationError,
|
||||
)
|
||||
|
||||
|
||||
class ContractManuallyCreateInvoice(models.TransientModel):
|
||||
@@ -52,7 +59,24 @@ class ContractManuallyCreateInvoice(models.TransientModel):
|
||||
self.ensure_one()
|
||||
invoices = self.env["account.move"]
|
||||
for contract in self.contract_to_invoice_ids:
|
||||
try:
|
||||
invoices |= contract.recurring_create_invoice()
|
||||
except (
|
||||
AccessDenied,
|
||||
AccessError,
|
||||
MissingError,
|
||||
UserError,
|
||||
ValidationError,
|
||||
) as oe:
|
||||
raise UserError(
|
||||
_(
|
||||
"Failed to process the contract %(name)s [id: %(id)s]:\n%(ue)s",
|
||||
name=contract.name,
|
||||
id=contract.id,
|
||||
ue=repr(oe),
|
||||
)
|
||||
) from oe
|
||||
|
||||
return {
|
||||
"type": "ir.actions.act_window",
|
||||
"name": _("Invoices"),
|
||||
|
||||
Reference in New Issue
Block a user