diff --git a/README.md b/README.md
index 5aec3a66bae..b1f610f1b21 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ addon | version | maintainers | summary
[crm_lead_currency](crm_lead_currency/) | 18.0.1.0.0 |
| On leads/opportunities, add the amount in the customer's currency.
[crm_lead_firstname](crm_lead_firstname/) | 18.0.1.0.0 | | Specify split names for contacts in leads
[crm_lead_product](crm_lead_product/) | 18.0.1.0.1 | | Adds a lead line in the lead/opportunity model in odoo
-[crm_lead_to_task](crm_lead_to_task/) | 18.0.1.1.0 | | Create Tasks from Leads/Opportunities
+[crm_lead_to_task](crm_lead_to_task/) | 18.0.1.1.1 | | Create Tasks from Leads/Opportunities
[crm_lead_vat](crm_lead_vat/) | 18.0.1.0.0 |
| Add VAT field to leads
[crm_location](crm_location/) | 18.0.1.0.1 | | CRM location
[crm_partner_assign](crm_partner_assign/) | 18.0.1.0.0 |
| Assign a Partner to an Opportunity/Lead/Partner to indicate Partnership
diff --git a/crm_lead_to_task/README.rst b/crm_lead_to_task/README.rst
index d6afc195d2f..3aa1a687dae 100644
--- a/crm_lead_to_task/README.rst
+++ b/crm_lead_to_task/README.rst
@@ -11,7 +11,7 @@ Lead to Task
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- !! source digest: sha256:8c57d1a9a028a904af0b573159693f33a7d05faaefc292afeb1924cfab88c042
+ !! source digest: sha256:ab2655870e409a1c9e5279f0684407537b10ff81f3b7e3fcdf45b0577d8477d6
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
diff --git a/crm_lead_to_task/__manifest__.py b/crm_lead_to_task/__manifest__.py
index 55d5f62de4c..bf53da59186 100644
--- a/crm_lead_to_task/__manifest__.py
+++ b/crm_lead_to_task/__manifest__.py
@@ -11,7 +11,7 @@
"author": "Odoo S.A., Odoo Community Association (OCA), Tecnativa",
"website": "https://github.com/OCA/crm",
"depends": ["crm", "project"],
- "version": "18.0.1.1.0",
+ "version": "18.0.1.1.1",
"license": "LGPL-3",
"installable": True,
"data": [
diff --git a/crm_lead_to_task/models/crm_lead.py b/crm_lead_to_task/models/crm_lead.py
index 45fb8b6fa46..41c74530264 100644
--- a/crm_lead_to_task/models/crm_lead.py
+++ b/crm_lead_to_task/models/crm_lead.py
@@ -51,14 +51,14 @@ def _create_task_from_lead(self, project):
task = self.env["project.task"].create(vals)
# Move mail thread + attachments
- self.message_change_thread(task)
-
- self.env["ir.attachment"].search(
- [
- ("res_model", "=", "crm.lead"),
- ("res_id", "=", self.id),
- ]
- ).write({"res_model": "project.task", "res_id": task.id})
+ if self.company_id.crm_archive_lead_on_convert:
+ self.message_change_thread(task)
+ self.env["ir.attachment"].search(
+ [
+ ("res_model", "=", "crm.lead"),
+ ("res_id", "=", self.id),
+ ]
+ ).write({"res_model": "project.task", "res_id": task.id})
return task
diff --git a/crm_lead_to_task/static/description/index.html b/crm_lead_to_task/static/description/index.html
index 8e8f88ba8fd..2dd30fd8dca 100644
--- a/crm_lead_to_task/static/description/index.html
+++ b/crm_lead_to_task/static/description/index.html
@@ -372,7 +372,7 @@
This module allows you to convert leads or opportunities into project diff --git a/crm_lead_to_task/tests/test_crm_lead_task.py b/crm_lead_to_task/tests/test_crm_lead_task.py index 2ebcc21db52..b3656e2a494 100644 --- a/crm_lead_to_task/tests/test_crm_lead_task.py +++ b/crm_lead_to_task/tests/test_crm_lead_task.py @@ -64,6 +64,19 @@ def test_action_view_leads(self): self.assertEqual(action["name"], _("Lead: %s") % self.lead.name) def test_create_task_from_lead(self): + """Test task creation without archiving (no thread/attachment transfer)""" + self.lead.company_id.crm_archive_lead_on_convert = False + + # Create an attachment to verify it's not moved + attachment = self.env["ir.attachment"].create( + { + "name": "Attach1", + "datas": "bWlncmF0aW9uIHRlc3Q=", + "res_model": "crm.lead", + "res_id": self.lead.id, + } + ) + task = self.lead._create_task_from_lead(self.project) self.assertEqual(task.name, self.lead.name) @@ -73,7 +86,37 @@ def test_create_task_from_lead(self): self.assertEqual(task.lead_id, self.lead) self.assertIn(task, self.lead.task_ids) + # Verify attachment was not moved + attachment.invalidate_recordset() + self.assertEqual(attachment.res_model, "crm.lead") + self.assertEqual(attachment.res_id, self.lead.id) + + def test_create_task_from_lead_with_archive(self): + """Test task creation with archiving moves messages and attachments""" + self.lead.company_id.crm_archive_lead_on_convert = True + + # Create an attachment on the lead + attachment = self.env["ir.attachment"].create( + { + "name": "Attach2", + "datas": "bWlncmF0aW9uIHRlc3Q=", + "res_model": "crm.lead", + "res_id": self.lead.id, + } + ) + + task = self.lead._create_task_from_lead(self.project) + self.assertEqual(task.lead_id, self.lead) + + # Verify attachment was moved to task + attachment.invalidate_recordset() + self.assertEqual(attachment.res_model, "project.task") + self.assertEqual(attachment.res_id, task.id) + def test_action_create_and_open_task(self): + """Test action create and open task without archiving""" + self.lead.company_id.crm_archive_lead_on_convert = False + action = self.lead._action_create_and_open_task(self.project) self.assertEqual(action["type"], "ir.actions.act_window") @@ -85,3 +128,31 @@ def test_action_create_and_open_task(self): self.assertEqual( action["view_id"], self.lead.env.ref("project.view_task_form2").id ) + + def test_action_create_and_open_task_with_archive(self): + """Test action create and open task with archiving and thread transfer""" + self.lead.company_id.crm_archive_lead_on_convert = True + + # Create an attachment to verify thread transfer + attachment = self.env["ir.attachment"].create( + { + "name": "Attach3", + "datas": "bWlncmF0aW9uIHRlc3Q=", + "res_model": "crm.lead", + "res_id": self.lead.id, + } + ) + action = self.lead._action_create_and_open_task(self.project) + + # Verify action structure + self.assertEqual(action["type"], "ir.actions.act_window") + self.assertEqual(action["res_model"], "project.task") + self.assertTrue(action["res_id"]) + + # Lead should be archived + self.assertFalse(self.lead.active) + + # Attachment should be moved to task + attachment.invalidate_recordset() + self.assertEqual(attachment.res_model, "project.task") + self.assertEqual(attachment.res_id, action["res_id"]) diff --git a/crm_phonecall/i18n/am.po b/crm_phonecall/i18n/am.po index 8afcaf24ffa..56d2f83ef66 100644 --- a/crm_phonecall/i18n/am.po +++ b/crm_phonecall/i18n/am.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/ar.po b/crm_phonecall/i18n/ar.po index dfdac092504..d50d648b743 100644 --- a/crm_phonecall/i18n/ar.po +++ b/crm_phonecall/i18n/ar.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/bg.po b/crm_phonecall/i18n/bg.po index dee17000008..bf9930131a3 100644 --- a/crm_phonecall/i18n/bg.po +++ b/crm_phonecall/i18n/bg.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/bs.po b/crm_phonecall/i18n/bs.po index c89f0233fdf..d50294817d1 100644 --- a/crm_phonecall/i18n/bs.po +++ b/crm_phonecall/i18n/bs.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/ca.po b/crm_phonecall/i18n/ca.po index d1e7e7578f0..91519bd97c5 100644 --- a/crm_phonecall/i18n/ca.po +++ b/crm_phonecall/i18n/ca.po @@ -82,7 +82,7 @@ msgstr "Informació addicional" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/cs.po b/crm_phonecall/i18n/cs.po index e59e2f27e1d..b116d01f371 100644 --- a/crm_phonecall/i18n/cs.po +++ b/crm_phonecall/i18n/cs.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/da.po b/crm_phonecall/i18n/da.po index 618164a56bb..9e7c1d85a67 100644 --- a/crm_phonecall/i18n/da.po +++ b/crm_phonecall/i18n/da.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/de.po b/crm_phonecall/i18n/de.po index eb81ba564e5..f5831f4057b 100644 --- a/crm_phonecall/i18n/de.po +++ b/crm_phonecall/i18n/de.po @@ -83,7 +83,7 @@ msgstr "Weitere Informationen" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/el_GR.po b/crm_phonecall/i18n/el_GR.po index 73011935aa4..195a08519a3 100644 --- a/crm_phonecall/i18n/el_GR.po +++ b/crm_phonecall/i18n/el_GR.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/en_GB.po b/crm_phonecall/i18n/en_GB.po index ee4aaebcb5d..d35084be8eb 100644 --- a/crm_phonecall/i18n/en_GB.po +++ b/crm_phonecall/i18n/en_GB.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/es.po b/crm_phonecall/i18n/es.po index b4e7f2ae08e..c37818caf5f 100644 --- a/crm_phonecall/i18n/es.po +++ b/crm_phonecall/i18n/es.po @@ -97,7 +97,7 @@ msgstr "Información adicional" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/es_AR.po b/crm_phonecall/i18n/es_AR.po index 7947fb00eb8..c0c2604fb56 100644 --- a/crm_phonecall/i18n/es_AR.po +++ b/crm_phonecall/i18n/es_AR.po @@ -99,7 +99,7 @@ msgstr "Información Adicional" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/es_CL.po b/crm_phonecall/i18n/es_CL.po index a30d9a0824c..a5713e19829 100644 --- a/crm_phonecall/i18n/es_CL.po +++ b/crm_phonecall/i18n/es_CL.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/es_CO.po b/crm_phonecall/i18n/es_CO.po index 441eb059a57..33827615d32 100644 --- a/crm_phonecall/i18n/es_CO.po +++ b/crm_phonecall/i18n/es_CO.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/es_CR.po b/crm_phonecall/i18n/es_CR.po index 0744860e12a..cfd59b7e1bb 100644 --- a/crm_phonecall/i18n/es_CR.po +++ b/crm_phonecall/i18n/es_CR.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/es_DO.po b/crm_phonecall/i18n/es_DO.po index 6bf24a08763..971726ff3f0 100644 --- a/crm_phonecall/i18n/es_DO.po +++ b/crm_phonecall/i18n/es_DO.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/es_EC.po b/crm_phonecall/i18n/es_EC.po index 62b769f1cf4..44bad7914a9 100644 --- a/crm_phonecall/i18n/es_EC.po +++ b/crm_phonecall/i18n/es_EC.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/es_ES.po b/crm_phonecall/i18n/es_ES.po index 81209bec4d8..39b6152120a 100644 --- a/crm_phonecall/i18n/es_ES.po +++ b/crm_phonecall/i18n/es_ES.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/es_MX.po b/crm_phonecall/i18n/es_MX.po index 3316aaefe4c..1bcb6ad3e2c 100644 --- a/crm_phonecall/i18n/es_MX.po +++ b/crm_phonecall/i18n/es_MX.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/es_PE.po b/crm_phonecall/i18n/es_PE.po index e0d8641602b..ff9f207bfd8 100644 --- a/crm_phonecall/i18n/es_PE.po +++ b/crm_phonecall/i18n/es_PE.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/es_PY.po b/crm_phonecall/i18n/es_PY.po index 8a466add54b..b815d6128a0 100644 --- a/crm_phonecall/i18n/es_PY.po +++ b/crm_phonecall/i18n/es_PY.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/es_VE.po b/crm_phonecall/i18n/es_VE.po index 9944b372b2b..a1599ea6fc6 100644 --- a/crm_phonecall/i18n/es_VE.po +++ b/crm_phonecall/i18n/es_VE.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/et.po b/crm_phonecall/i18n/et.po index a57ac24b00d..ddd00214245 100644 --- a/crm_phonecall/i18n/et.po +++ b/crm_phonecall/i18n/et.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/eu.po b/crm_phonecall/i18n/eu.po index 8b72fe9a1b0..148c2f309f2 100644 --- a/crm_phonecall/i18n/eu.po +++ b/crm_phonecall/i18n/eu.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/fa.po b/crm_phonecall/i18n/fa.po index e95f83144d4..1aa1c731c60 100644 --- a/crm_phonecall/i18n/fa.po +++ b/crm_phonecall/i18n/fa.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/fi.po b/crm_phonecall/i18n/fi.po index a0d9b4bb565..510100036d0 100644 --- a/crm_phonecall/i18n/fi.po +++ b/crm_phonecall/i18n/fi.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/fr.po b/crm_phonecall/i18n/fr.po index 578299969b9..e7258ab5c09 100644 --- a/crm_phonecall/i18n/fr.po +++ b/crm_phonecall/i18n/fr.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/fr_CA.po b/crm_phonecall/i18n/fr_CA.po index 97b87e64d0f..7b7df60313e 100644 --- a/crm_phonecall/i18n/fr_CA.po +++ b/crm_phonecall/i18n/fr_CA.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/fr_CH.po b/crm_phonecall/i18n/fr_CH.po index b00ae7c39d2..0763550fad4 100644 --- a/crm_phonecall/i18n/fr_CH.po +++ b/crm_phonecall/i18n/fr_CH.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/gl.po b/crm_phonecall/i18n/gl.po index 80d6f1a5eda..ccf508aed2d 100644 --- a/crm_phonecall/i18n/gl.po +++ b/crm_phonecall/i18n/gl.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/gl_ES.po b/crm_phonecall/i18n/gl_ES.po index f4da5cc9551..c41c98182aa 100644 --- a/crm_phonecall/i18n/gl_ES.po +++ b/crm_phonecall/i18n/gl_ES.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/he.po b/crm_phonecall/i18n/he.po index 159cd56b6f5..63ba0399d60 100644 --- a/crm_phonecall/i18n/he.po +++ b/crm_phonecall/i18n/he.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/hr.po b/crm_phonecall/i18n/hr.po index 1f14af725ed..3dff62cbbcd 100644 --- a/crm_phonecall/i18n/hr.po +++ b/crm_phonecall/i18n/hr.po @@ -84,7 +84,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/hr_HR.po b/crm_phonecall/i18n/hr_HR.po index 639ac3d0bf6..4f02f97e85c 100644 --- a/crm_phonecall/i18n/hr_HR.po +++ b/crm_phonecall/i18n/hr_HR.po @@ -83,7 +83,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/hu.po b/crm_phonecall/i18n/hu.po index 522025b3d4f..f75b4624add 100644 --- a/crm_phonecall/i18n/hu.po +++ b/crm_phonecall/i18n/hu.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/id.po b/crm_phonecall/i18n/id.po index 491ced5ed22..ea77e1717d9 100644 --- a/crm_phonecall/i18n/id.po +++ b/crm_phonecall/i18n/id.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/it.po b/crm_phonecall/i18n/it.po index 40eccc8313c..f27b03047e9 100644 --- a/crm_phonecall/i18n/it.po +++ b/crm_phonecall/i18n/it.po @@ -97,8 +97,8 @@ msgstr "Informazioni aggiuntive" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" -msgstr "Divisione amministrativa della nazione. Es. Stato, Regione, Provincia" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" +msgstr "" #. module: crm_phonecall #: model:ir.model.fields,field_description:crm_phonecall.field_crm_phonecall2phonecall__user_id @@ -948,6 +948,12 @@ msgstr "CAP" msgid "Zip" msgstr "CAP" +#~ msgid "" +#~ "Administrative divisions of a country. E.g. Fed. State, Departement, " +#~ "Canton" +#~ msgstr "" +#~ "Divisione amministrativa della nazione. Es. Stato, Regione, Provincia" + #~ msgid "SMS Delivery error" #~ msgstr "Errore consegna SMS" diff --git a/crm_phonecall/i18n/ja.po b/crm_phonecall/i18n/ja.po index 6d3dec3a689..a578da802c2 100644 --- a/crm_phonecall/i18n/ja.po +++ b/crm_phonecall/i18n/ja.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/ko.po b/crm_phonecall/i18n/ko.po index e3bb7a5c2e0..27e21c05eca 100644 --- a/crm_phonecall/i18n/ko.po +++ b/crm_phonecall/i18n/ko.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/lt.po b/crm_phonecall/i18n/lt.po index 958fef0a851..4cf82709b1e 100644 --- a/crm_phonecall/i18n/lt.po +++ b/crm_phonecall/i18n/lt.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/lt_LT.po b/crm_phonecall/i18n/lt_LT.po index c4278671227..6649d52c0cc 100644 --- a/crm_phonecall/i18n/lt_LT.po +++ b/crm_phonecall/i18n/lt_LT.po @@ -83,7 +83,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/lv.po b/crm_phonecall/i18n/lv.po index 5d943cde472..d8da154510e 100644 --- a/crm_phonecall/i18n/lv.po +++ b/crm_phonecall/i18n/lv.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/mk.po b/crm_phonecall/i18n/mk.po index d5bb1d96ae3..3aca63053db 100644 --- a/crm_phonecall/i18n/mk.po +++ b/crm_phonecall/i18n/mk.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/mn.po b/crm_phonecall/i18n/mn.po index d6d8b8e0830..8a499efb124 100644 --- a/crm_phonecall/i18n/mn.po +++ b/crm_phonecall/i18n/mn.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/nb.po b/crm_phonecall/i18n/nb.po index a75364d5ebd..7b13a909d7d 100644 --- a/crm_phonecall/i18n/nb.po +++ b/crm_phonecall/i18n/nb.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/nb_NO.po b/crm_phonecall/i18n/nb_NO.po index 80cd4a593e1..ed552d950a5 100644 --- a/crm_phonecall/i18n/nb_NO.po +++ b/crm_phonecall/i18n/nb_NO.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/nl.po b/crm_phonecall/i18n/nl.po index 2b6656c004c..34dab060c92 100644 --- a/crm_phonecall/i18n/nl.po +++ b/crm_phonecall/i18n/nl.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/nl_BE.po b/crm_phonecall/i18n/nl_BE.po index 7d1f13838c3..3173e32453c 100644 --- a/crm_phonecall/i18n/nl_BE.po +++ b/crm_phonecall/i18n/nl_BE.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/nl_NL.po b/crm_phonecall/i18n/nl_NL.po index 3dfa331d9e2..2aa8b70ec93 100644 --- a/crm_phonecall/i18n/nl_NL.po +++ b/crm_phonecall/i18n/nl_NL.po @@ -83,7 +83,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/pl.po b/crm_phonecall/i18n/pl.po index 67cc23aed2d..1d01cd8fa7b 100644 --- a/crm_phonecall/i18n/pl.po +++ b/crm_phonecall/i18n/pl.po @@ -85,7 +85,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/pt.po b/crm_phonecall/i18n/pt.po index 7ea5355a474..54e97302ebd 100644 --- a/crm_phonecall/i18n/pt.po +++ b/crm_phonecall/i18n/pt.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/pt_BR.po b/crm_phonecall/i18n/pt_BR.po index 1a4f09fc5fa..c84b0d4419a 100644 --- a/crm_phonecall/i18n/pt_BR.po +++ b/crm_phonecall/i18n/pt_BR.po @@ -84,7 +84,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/pt_PT.po b/crm_phonecall/i18n/pt_PT.po index 01619d26f7b..67a6b06fa71 100644 --- a/crm_phonecall/i18n/pt_PT.po +++ b/crm_phonecall/i18n/pt_PT.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/ro.po b/crm_phonecall/i18n/ro.po index 53418bb89e5..ecf27183bfe 100644 --- a/crm_phonecall/i18n/ro.po +++ b/crm_phonecall/i18n/ro.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/ru.po b/crm_phonecall/i18n/ru.po index e47b1237e5c..19e0f1a9db4 100644 --- a/crm_phonecall/i18n/ru.po +++ b/crm_phonecall/i18n/ru.po @@ -83,7 +83,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/sk.po b/crm_phonecall/i18n/sk.po index 918224a27e5..af73e9aaf92 100644 --- a/crm_phonecall/i18n/sk.po +++ b/crm_phonecall/i18n/sk.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/sl.po b/crm_phonecall/i18n/sl.po index 534cd68a2cf..67fd368c32b 100644 --- a/crm_phonecall/i18n/sl.po +++ b/crm_phonecall/i18n/sl.po @@ -83,7 +83,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/sr.po b/crm_phonecall/i18n/sr.po index c6a07ae6162..bfb360f22b8 100644 --- a/crm_phonecall/i18n/sr.po +++ b/crm_phonecall/i18n/sr.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/sr@latin.po b/crm_phonecall/i18n/sr@latin.po index 9af04d1e3b7..3993e8f78ea 100644 --- a/crm_phonecall/i18n/sr@latin.po +++ b/crm_phonecall/i18n/sr@latin.po @@ -83,7 +83,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/sv.po b/crm_phonecall/i18n/sv.po index c9a1f9758d7..db18e481258 100644 --- a/crm_phonecall/i18n/sv.po +++ b/crm_phonecall/i18n/sv.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/th.po b/crm_phonecall/i18n/th.po index 030a81d6804..bee14f4db0c 100644 --- a/crm_phonecall/i18n/th.po +++ b/crm_phonecall/i18n/th.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/tr.po b/crm_phonecall/i18n/tr.po index c31b9215840..fc48e63a79b 100644 --- a/crm_phonecall/i18n/tr.po +++ b/crm_phonecall/i18n/tr.po @@ -98,8 +98,8 @@ msgstr "Ek Bilgi" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" -msgstr "Bir ülkenin idari bölümleri. Örn. Eyalet, Departman, Kanton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" +msgstr "" #. module: crm_phonecall #: model:ir.model.fields,field_description:crm_phonecall.field_crm_phonecall2phonecall__user_id @@ -945,6 +945,11 @@ msgstr "PK" msgid "Zip" msgstr "Posta Kodu" +#~ msgid "" +#~ "Administrative divisions of a country. E.g. Fed. State, Departement, " +#~ "Canton" +#~ msgstr "Bir ülkenin idari bölümleri. Örn. Eyalet, Departman, Kanton" + #~ msgid "Last Modified on" #~ msgstr "Son Değişiklik" diff --git a/crm_phonecall/i18n/tr_TR.po b/crm_phonecall/i18n/tr_TR.po index 082f0f017a6..0809f44d3c9 100644 --- a/crm_phonecall/i18n/tr_TR.po +++ b/crm_phonecall/i18n/tr_TR.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/uk.po b/crm_phonecall/i18n/uk.po index 8c786176b07..b2b308332b0 100644 --- a/crm_phonecall/i18n/uk.po +++ b/crm_phonecall/i18n/uk.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/vi.po b/crm_phonecall/i18n/vi.po index de1412645e9..f08de98a596 100644 --- a/crm_phonecall/i18n/vi.po +++ b/crm_phonecall/i18n/vi.po @@ -81,7 +81,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/vi_VN.po b/crm_phonecall/i18n/vi_VN.po index 0aa9248f894..6da3a3ea3fc 100644 --- a/crm_phonecall/i18n/vi_VN.po +++ b/crm_phonecall/i18n/vi_VN.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/zh_CN.po b/crm_phonecall/i18n/zh_CN.po index af312f2d47c..c6d59b85081 100644 --- a/crm_phonecall/i18n/zh_CN.po +++ b/crm_phonecall/i18n/zh_CN.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall diff --git a/crm_phonecall/i18n/zh_TW.po b/crm_phonecall/i18n/zh_TW.po index 042dc7ca289..32f0ab1c1ca 100644 --- a/crm_phonecall/i18n/zh_TW.po +++ b/crm_phonecall/i18n/zh_TW.po @@ -82,7 +82,7 @@ msgstr "" #. module: crm_phonecall #: model:ir.model.fields,help:crm_phonecall.field_crm_phonecall__partner_state msgid "" -"Administrative divisions of a country. E.g. Fed. State, Departement, Canton" +"Administrative divisions of a country. E.g. Fed. State, Department, Canton" msgstr "" #. module: crm_phonecall