diff --git a/crm_phonecall_summary_predefined/README.rst b/crm_phonecall_summary_predefined/README.rst new file mode 100644 index 00000000000..32012a36af5 --- /dev/null +++ b/crm_phonecall_summary_predefined/README.rst @@ -0,0 +1,102 @@ +================================== +Restricted Summary for Phone Calls +================================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:b0dcca150ece19a16476b596d4c75340a58bba5b306038fd2a5548d6e9b497d7 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcrm-lightgray.png?logo=github + :target: https://github.com/OCA/crm/tree/17.0/crm_phonecall_summary_predefined + :alt: OCA/crm +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/crm-17-0/crm-17-0-crm_phonecall_summary_predefined + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/crm&target_branch=17.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module extends the functionality of CRM phone calls to support +setting a limited list of possible phone call summaries, that only the +sales manager can edit. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +To configure the possible summary options: + +1. Activate the developer mode +2. Go to *CRM > Configuration > Phone Calls > Summaries*. +3. Add or modify types there. + +Usage +===== + +1. Go to *CRM > Phone Calls > Logged Calls*. +2. There you can use the new *Summary* field + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Tecnativa + +Contributors +------------ + +- `Tecnativa `__: + + - Rafael Blasco + - Jairo Llopis + - Vicent Cubells + - Cristina Martín + - Víctor Martínez + - Carolina Fernandez + +- Anand Kansagra + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/crm `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/crm_phonecall_summary_predefined/__init__.py b/crm_phonecall_summary_predefined/__init__.py new file mode 100644 index 00000000000..b6cb263f5b1 --- /dev/null +++ b/crm_phonecall_summary_predefined/__init__.py @@ -0,0 +1,5 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from . import models +from . import wizard +from .hooks import convert_names_to_many2one diff --git a/crm_phonecall_summary_predefined/__manifest__.py b/crm_phonecall_summary_predefined/__manifest__.py new file mode 100644 index 00000000000..068c1b75c21 --- /dev/null +++ b/crm_phonecall_summary_predefined/__manifest__.py @@ -0,0 +1,23 @@ +# Copyright 2016 Antiun Ingeniería S.L. - Jairo Llopis +# Copyright 2017 Tecnativa - Vicent Cubells +# Copyright 2024 Tecnativa - Carolina Fernandez +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +{ + "name": "Restricted Summary for Phone Calls", + "summary": "Allows to choose from a defined summary list", + "version": "17.0.1.0.0", + "category": "Customer Relationship Management", + "website": "https://github.com/OCA/crm", + "author": "Tecnativa, Odoo Community Association (OCA)", + "license": "AGPL-3", + "installable": True, + "post_init_hook": "convert_names_to_many2one", + "depends": ["crm_phonecall", "sales_team"], + "data": [ + "security/ir.model.access.csv", + "views/crm_phonecall_summary_view.xml", + "views/crm_phonecall_view.xml", + "wizard/crm_phonecall_to_phonecall_view.xml", + ], + "images": ["images/summary_picker.png", "images/summary_editor.png"], +} diff --git a/crm_phonecall_summary_predefined/hooks.py b/crm_phonecall_summary_predefined/hooks.py new file mode 100644 index 00000000000..4c2161b3d77 --- /dev/null +++ b/crm_phonecall_summary_predefined/hooks.py @@ -0,0 +1,17 @@ +# Copyright 2017 Vicent Cubells +# Copyright 2024 Tecnativa - Carolina Fernandez +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from psycopg2 import IntegrityError + + +def convert_names_to_many2one(env): # pragma: no cover + """Convert old string names to new Many2one""" + summary = env["crm.phonecall.summary"] + phone_call = env["crm.phonecall"] + for s in phone_call.search([("summary_id", "=", False)]): + try: + with env.cr.savepoint(): + s.summary_id = summary.create({"name": s.name}) + except IntegrityError: + s.summary_id = summary.search([("name", "=", s.name)]) diff --git a/crm_phonecall_summary_predefined/i18n/am.po b/crm_phonecall_summary_predefined/i18n/am.po new file mode 100644 index 00000000000..f18536d7fd6 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/am.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/ar.po b/crm_phonecall_summary_predefined/i18n/ar.po new file mode 100644 index 00000000000..0ed2619cebd --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/ar.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "المعرف" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "الاسم" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/bg.po b/crm_phonecall_summary_predefined/i18n/bg.po new file mode 100644 index 00000000000..21813b04cc9 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/bg.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Име" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/bs.po b/crm_phonecall_summary_predefined/i18n/bs.po new file mode 100644 index 00000000000..f5d230fbb6e --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/bs.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Ime" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/ca.po b/crm_phonecall_summary_predefined/i18n/ca.po new file mode 100644 index 00000000000..f43570dd0ad --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/ca.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nom" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/crm_phonecall_summary_predefined.pot b/crm_phonecall_summary_predefined/i18n/crm_phonecall_summary_predefined.pot new file mode 100644 index 00000000000..113dc49942f --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/crm_phonecall_summary_predefined.pot @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/cs.po b/crm_phonecall_summary_predefined/i18n/cs.po new file mode 100644 index 00000000000..12f3d5052b5 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/cs.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Název" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/da.po b/crm_phonecall_summary_predefined/i18n/da.po new file mode 100644 index 00000000000..15dc178d827 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/da.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "Id" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Navn" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/de.po b/crm_phonecall_summary_predefined/i18n/de.po new file mode 100644 index 00000000000..0b4116c8012 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/de.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2019-07-17 12:43+0000\n" +"Last-Translator: Maria Sparenberg \n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.7.1\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Bezeichnung" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/el_GR.po b/crm_phonecall_summary_predefined/i18n/el_GR.po new file mode 100644 index 00000000000..af7b98832a7 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/el_GR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "Κωδικός" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/en_GB.po b/crm_phonecall_summary_predefined/i18n/en_GB.po new file mode 100644 index 00000000000..cd377ca0fa8 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/en_GB.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Created on" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Name" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/es.po b/crm_phonecall_summary_predefined/i18n/es.po new file mode 100644 index 00000000000..81c5f566eb5 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/es.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2023-09-26 14:18+0000\n" +"Last-Translator: Ivorra78 \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "Resumen de llamadas" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "Resumen de la llamada" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "Resumen de llamadas del CRM" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "El nombre debe ser único" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "Llamada telefónica" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "Llamada telefónica a llamada telefónica" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "Llamadas telefónicas" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "Llamadas telefónicas con este resumen." + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "Resúmenes" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "Resumen" diff --git a/crm_phonecall_summary_predefined/i18n/es_AR.po b/crm_phonecall_summary_predefined/i18n/es_AR.po new file mode 100644 index 00000000000..2d8cdc19dc7 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/es_AR.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2020-08-14 16:59+0000\n" +"Last-Translator: Ignacio Buioli \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" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "Resumen de Llamada" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "Resumen de llamada" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "Resumen de Llamadas Telefónicas del CRM" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "El nombre debe ser único" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "Llamada telefónica" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "Llamada Telefónica A Llamada Telefónica" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "Llamadas Telefónicas" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "Llamadas Telefónicas con este resumen." + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "Resúmenes" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "Resumen" diff --git a/crm_phonecall_summary_predefined/i18n/es_CL.po b/crm_phonecall_summary_predefined/i18n/es_CL.po new file mode 100644 index 00000000000..dfe194c0846 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/es_CL.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/es_CO.po b/crm_phonecall_summary_predefined/i18n/es_CO.po new file mode 100644 index 00000000000..9f9d7a78d76 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/es_CO.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/es_CR.po b/crm_phonecall_summary_predefined/i18n/es_CR.po new file mode 100644 index 00000000000..cf9f5d75c2e --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/es_CR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/es_DO.po b/crm_phonecall_summary_predefined/i18n/es_DO.po new file mode 100644 index 00000000000..395dc786d88 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/es_DO.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/es_EC.po b/crm_phonecall_summary_predefined/i18n/es_EC.po new file mode 100644 index 00000000000..05a2d5eb479 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/es_EC.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/es_ES.po b/crm_phonecall_summary_predefined/i18n/es_ES.po new file mode 100644 index 00000000000..42b4c3d4b2a --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/es_ES.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/es_MX.po b/crm_phonecall_summary_predefined/i18n/es_MX.po new file mode 100644 index 00000000000..4214a696992 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/es_MX.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/es_PE.po b/crm_phonecall_summary_predefined/i18n/es_PE.po new file mode 100644 index 00000000000..e5a08aeb90e --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/es_PE.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/es_PY.po b/crm_phonecall_summary_predefined/i18n/es_PY.po new file mode 100644 index 00000000000..76830f1e96e --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/es_PY.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/es_VE.po b/crm_phonecall_summary_predefined/i18n/es_VE.po new file mode 100644 index 00000000000..6671b4132a0 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/es_VE.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nombre" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/et.po b/crm_phonecall_summary_predefined/i18n/et.po new file mode 100644 index 00000000000..9ac80629b13 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/et.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nimi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/eu.po b/crm_phonecall_summary_predefined/i18n/eu.po new file mode 100644 index 00000000000..4ceeb3f39a4 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/eu.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Created on" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Izena" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/fa.po b/crm_phonecall_summary_predefined/i18n/fa.po new file mode 100644 index 00000000000..cd2da5a96f8 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/fa.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "شناسه" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "نام" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/fi.po b/crm_phonecall_summary_predefined/i18n/fi.po new file mode 100644 index 00000000000..e2b301e8476 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/fi.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nimi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/fr.po b/crm_phonecall_summary_predefined/i18n/fr.po new file mode 100644 index 00000000000..d2726b55968 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/fr.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +#, fuzzy +msgid "Call Summary" +msgstr "Résumé" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +#, fuzzy +msgid "Call summary" +msgstr "Résumé" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nom d'affichage" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Dernière mise-à-jour le" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nom" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "Résumé" diff --git a/crm_phonecall_summary_predefined/i18n/fr_CA.po b/crm_phonecall_summary_predefined/i18n/fr_CA.po new file mode 100644 index 00000000000..c7b9d69623f --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/fr_CA.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "Identifiant" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nom" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/fr_CH.po b/crm_phonecall_summary_predefined/i18n/fr_CH.po new file mode 100644 index 00000000000..09538560b78 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/fr_CH.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/gl.po b/crm_phonecall_summary_predefined/i18n/gl.po new file mode 100644 index 00000000000..1d3812e31df --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/gl.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/gl_ES.po b/crm_phonecall_summary_predefined/i18n/gl_ES.po new file mode 100644 index 00000000000..a16af50006d --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/gl_ES.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/he.po b/crm_phonecall_summary_predefined/i18n/he.po new file mode 100644 index 00000000000..92c3f71e62a --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/he.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "מזהה" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "שם" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/hr.po b/crm_phonecall_summary_predefined/i18n/hr.po new file mode 100644 index 00000000000..a086032a76b --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/hr.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2019-11-13 15:34+0000\n" +"Last-Translator: Bole \n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 3.8\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "Sažetak" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +#, fuzzy +msgid "Call summary" +msgstr "Sažetak" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Kreirao/la" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Kreirano na dan" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "Sažetak telefonskih poziva" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Zadnje ažuriranje izvršio/la" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Naziv" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "Ime mora biti jedinstveno." + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "Telefonski poziv" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "Telefonski pozivi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "Telefonski pozivi sa ovim sažetkom." + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "Sažeci" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "Sažetak" diff --git a/crm_phonecall_summary_predefined/i18n/hr_HR.po b/crm_phonecall_summary_predefined/i18n/hr_HR.po new file mode 100644 index 00000000000..37a6ee1d6ae --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/hr_HR.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"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: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/hu.po b/crm_phonecall_summary_predefined/i18n/hu.po new file mode 100644 index 00000000000..163a02461da --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/hu.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Név" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/id.po b/crm_phonecall_summary_predefined/i18n/id.po new file mode 100644 index 00000000000..27d127630b9 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/id.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nama" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/it.po b/crm_phonecall_summary_predefined/i18n/it.po new file mode 100644 index 00000000000..0634aee6e93 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/it.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2023-06-12 16:10+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "Riepilogo chiamata" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "Riepilogo chiamata" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "Riepilogo chiamate telefoniche CRM" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nome" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "Il nome deve essere univoco" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "Chiamata telefonica" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "Telefonata su telefonata" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "Chiamate telefoniche" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "Chiamate telefoniche con questo riepilogo." + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "Riepiloghi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "Riepilogo" diff --git a/crm_phonecall_summary_predefined/i18n/ja.po b/crm_phonecall_summary_predefined/i18n/ja.po new file mode 100644 index 00000000000..dc071a29dd9 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/ja.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "作成日" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "名称" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/ko.po b/crm_phonecall_summary_predefined/i18n/ko.po new file mode 100644 index 00000000000..f6bfc5508dd --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/ko.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "작성일" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "이름" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/lt.po b/crm_phonecall_summary_predefined/i18n/lt.po new file mode 100644 index 00000000000..9b92cf26859 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/lt.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Pavadinimas" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/lt_LT.po b/crm_phonecall_summary_predefined/i18n/lt_LT.po new file mode 100644 index 00000000000..28ea45ce485 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/lt_LT.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/lv.po b/crm_phonecall_summary_predefined/i18n/lv.po new file mode 100644 index 00000000000..9bf51987ffd --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/lv.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nosaukums" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/mk.po b/crm_phonecall_summary_predefined/i18n/mk.po new file mode 100644 index 00000000000..54e0d97348d --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/mk.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Име" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/mn.po b/crm_phonecall_summary_predefined/i18n/mn.po new file mode 100644 index 00000000000..01e0b37a7fa --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/mn.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Нэр" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/nb.po b/crm_phonecall_summary_predefined/i18n/nb.po new file mode 100644 index 00000000000..12d28a5e25e --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/nb.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Navn" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/nb_NO.po b/crm_phonecall_summary_predefined/i18n/nb_NO.po new file mode 100644 index 00000000000..483663acf8e --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/nb_NO.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/nl.po b/crm_phonecall_summary_predefined/i18n/nl.po new file mode 100644 index 00000000000..4f245c653cb --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/nl.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +#, fuzzy +msgid "Call Summary" +msgstr "Samenvatting" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +#, fuzzy +msgid "Call summary" +msgstr "Samenvatting" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Naam" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "Samenvatting" diff --git a/crm_phonecall_summary_predefined/i18n/nl_BE.po b/crm_phonecall_summary_predefined/i18n/nl_BE.po new file mode 100644 index 00000000000..86c55030f81 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/nl_BE.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Naam:" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/nl_NL.po b/crm_phonecall_summary_predefined/i18n/nl_NL.po new file mode 100644 index 00000000000..a4ea123cf18 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/nl_NL.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +#, fuzzy +msgid "Call Summary" +msgstr "Samenvatting" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +#, fuzzy +msgid "Call summary" +msgstr "Samenvatting" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +#, fuzzy +msgid "Crm Phonecall Summary" +msgstr "Telefoongesprek" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Naam" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "Naam moet uniek zijn" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "Telefoongesprek" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "Telefoongesprekken" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "Samenvattingen" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "Samenvatting" diff --git a/crm_phonecall_summary_predefined/i18n/pl.po b/crm_phonecall_summary_predefined/i18n/pl.po new file mode 100644 index 00000000000..73e643484cc --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/pl.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" +"%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: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nazwa" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/pt.po b/crm_phonecall_summary_predefined/i18n/pt.po new file mode 100644 index 00000000000..8c796a9f088 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/pt.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nome" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/pt_BR.po b/crm_phonecall_summary_predefined/i18n/pt_BR.po new file mode 100644 index 00000000000..32ecb2a4dde --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/pt_BR.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2020-08-12 18:59+0000\n" +"Last-Translator: Rodrigo Macedo \n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.10\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "Sumário de Chamada" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "Sumário de chamada" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "Resumo da chamada telefônica de CRM" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nome" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "O nome deve ser exclusivo" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "Chamada telefônica" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "Telefonema para telefonema" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "Chamadas telefônicas" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "Telefonemas com este resumo." + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "Resumos" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "Resumo" diff --git a/crm_phonecall_summary_predefined/i18n/pt_PT.po b/crm_phonecall_summary_predefined/i18n/pt_PT.po new file mode 100644 index 00000000000..1e01d7842d8 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/pt_PT.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +#, fuzzy +msgid "Call Summary" +msgstr "Resumo" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +#, fuzzy +msgid "Call summary" +msgstr "Resumo" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Nome" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "Resumo" diff --git a/crm_phonecall_summary_predefined/i18n/ro.po b/crm_phonecall_summary_predefined/i18n/ro.po new file mode 100644 index 00000000000..b8389c75505 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/ro.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/ru.po b/crm_phonecall_summary_predefined/i18n/ru.po new file mode 100644 index 00000000000..ca234f0a26a --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/ru.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Создан" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Название" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/sk.po b/crm_phonecall_summary_predefined/i18n/sk.po new file mode 100644 index 00000000000..577eebec7a5 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/sk.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Meno" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/sl.po b/crm_phonecall_summary_predefined/i18n/sl.po new file mode 100644 index 00000000000..c5923674514 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/sl.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2020-03-21 11:13+0000\n" +"Last-Translator: Matjaz Mozetic \n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 3.10\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "Povzetek klica" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +#, fuzzy +msgid "Call summary" +msgstr "Povzetek klica" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "Povzetek telefonskega klica" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Zadnjič posodobil" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Naziv" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "Naziv mora biti unikaten" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "Telefonski klic" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "Telefonski klici" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "Telefonski klici s tem povzetkom." + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "Povzetki" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "Povzetek" diff --git a/crm_phonecall_summary_predefined/i18n/sr.po b/crm_phonecall_summary_predefined/i18n/sr.po new file mode 100644 index 00000000000..dc17ea0161d --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/sr.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Ime" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/sr@latin.po b/crm_phonecall_summary_predefined/i18n/sr@latin.po new file mode 100644 index 00000000000..6fa886157db --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/sr@latin.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr" +"%40latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Ime:" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/sv.po b/crm_phonecall_summary_predefined/i18n/sv.po new file mode 100644 index 00000000000..6f1c3b3bc7b --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/sv.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Namn" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/th.po b/crm_phonecall_summary_predefined/i18n/th.po new file mode 100644 index 00000000000..8a5d2b68a35 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/th.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "รหัส" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "ชื่อ" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/tr.po b/crm_phonecall_summary_predefined/i18n/tr.po new file mode 100644 index 00000000000..84060c2f7ba --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/tr.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +# Ediz Duman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: Ediz Duman , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +#, fuzzy +msgid "Call Summary" +msgstr "Özet" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +#, fuzzy +msgid "Call summary" +msgstr "Özet" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +#, fuzzy +msgid "Crm Phonecall Summary" +msgstr "Telefon çağrısı" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Ad Görünümü" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Son Değişiklik" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Son Güncelleyen" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Son Güncelleme" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Adı" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "Ad benzersiz olmalı" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "Telefon çağrısı" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "Telefon çağrıları" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "Özetler" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "Özet" diff --git a/crm_phonecall_summary_predefined/i18n/tr_TR.po b/crm_phonecall_summary_predefined/i18n/tr_TR.po new file mode 100644 index 00000000000..c0fe6eec80d --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/tr_TR.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "Kimlik" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Ad" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/uk.po b/crm_phonecall_summary_predefined/i18n/uk.po new file mode 100644 index 00000000000..0877b0c7cda --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/uk.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Name" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/vi.po b/crm_phonecall_summary_predefined/i18n/vi.po new file mode 100644 index 00000000000..c490b6a4e18 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/vi.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "Tên" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/vi_VN.po b/crm_phonecall_summary_predefined/i18n/vi_VN.po new file mode 100644 index 00000000000..36a35b49e39 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/vi_VN.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/zh_CN.po b/crm_phonecall_summary_predefined/i18n/zh_CN.po new file mode 100644 index 00000000000..7cfa476058e --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/zh_CN.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "ID" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "名称" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/i18n/zh_TW.po b/crm_phonecall_summary_predefined/i18n/zh_TW.po new file mode 100644 index 00000000000..3ee40acb185 --- /dev/null +++ b/crm_phonecall_summary_predefined/i18n/zh_TW.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * crm_phonecall_summary_predefined +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-04-28 12:23+0000\n" +"PO-Revision-Date: 2018-04-28 12:23+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__name +msgid "Call Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__name +msgid "Call summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__create_date +msgid "Created on" +msgstr "建立於" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall_summary +msgid "Crm Phonecall Summary" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__id +msgid "ID" +msgstr "編號" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary____last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__name +msgid "Name" +msgstr "名稱" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.constraint,message:crm_phonecall_summary_predefined.constraint_crm_phonecall_summary_name_unique +msgid "Name must be unique" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall +msgid "Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model,name:crm_phonecall_summary_predefined.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,help:crm_phonecall_summary_predefined.field_crm_phonecall_summary__phonecall_ids +msgid "Phonecalls with this summary." +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.actions.act_window,name:crm_phonecall_summary_predefined.crm_phonecall_summary_action +#: model:ir.ui.menu,name:crm_phonecall_summary_predefined.crm_phonecall_summary_menu +msgid "Summaries" +msgstr "" + +#. module: crm_phonecall_summary_predefined +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall2phonecall__summary_id +#: model:ir.model.fields,field_description:crm_phonecall_summary_predefined.field_crm_phonecall__summary_id +msgid "Summary" +msgstr "" diff --git a/crm_phonecall_summary_predefined/images/summary_editor.png b/crm_phonecall_summary_predefined/images/summary_editor.png new file mode 100644 index 00000000000..0685c7801f3 Binary files /dev/null and b/crm_phonecall_summary_predefined/images/summary_editor.png differ diff --git a/crm_phonecall_summary_predefined/images/summary_picker.png b/crm_phonecall_summary_predefined/images/summary_picker.png new file mode 100644 index 00000000000..f7d52dced48 Binary files /dev/null and b/crm_phonecall_summary_predefined/images/summary_picker.png differ diff --git a/crm_phonecall_summary_predefined/models/__init__.py b/crm_phonecall_summary_predefined/models/__init__.py new file mode 100644 index 00000000000..724232402b8 --- /dev/null +++ b/crm_phonecall_summary_predefined/models/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from . import crm_phonecall diff --git a/crm_phonecall_summary_predefined/models/crm_phonecall.py b/crm_phonecall_summary_predefined/models/crm_phonecall.py new file mode 100644 index 00000000000..95065bb5c90 --- /dev/null +++ b/crm_phonecall_summary_predefined/models/crm_phonecall.py @@ -0,0 +1,47 @@ +# Copyright 2016 Antiun Ingeniería S.L. - Jairo Llopis +# Copyright 2017 Tecnativa - Vicent Cubells +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from odoo import fields, models + + +class CRMPhonecall(models.Model): + """Added number and summary in the phonecall.""" + + _inherit = "crm.phonecall" + + name = fields.Char( + related="summary_id.name", + store=True, + required=False, + readonly=True, + ) + summary_id = fields.Many2one( + comodel_name="crm.phonecall.summary", + string="Summary", + required=True, + ondelete="restrict", + ) + + def get_values_schedule_another_phonecall(self, vals): + res = super().get_values_schedule_another_phonecall(vals) + res.update({"summary_id": vals.get("summary_id")}) + return res + + +class CRMPhonecallSummary(models.Model): + """Added phonecall summary feature.""" + + _name = "crm.phonecall.summary" + _description = "Crm Phonecall Summary" + _sql_constraints = [ + ("name_unique", "UNIQUE (name)", "Name must be unique"), + ] + + name = fields.Char(required=True) + phonecall_ids = fields.One2many( + comodel_name="crm.phonecall", + inverse_name="summary_id", + string="Phonecalls", + help="Phonecalls with this summary.", + ) diff --git a/crm_phonecall_summary_predefined/pyproject.toml b/crm_phonecall_summary_predefined/pyproject.toml new file mode 100644 index 00000000000..4231d0cccb3 --- /dev/null +++ b/crm_phonecall_summary_predefined/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/crm_phonecall_summary_predefined/readme/CONFIGURE.md b/crm_phonecall_summary_predefined/readme/CONFIGURE.md new file mode 100644 index 00000000000..a2f6407f681 --- /dev/null +++ b/crm_phonecall_summary_predefined/readme/CONFIGURE.md @@ -0,0 +1,6 @@ +To configure the possible summary options: + +1. Activate the developer mode +2. Go to *CRM \> Configuration \> Phone Calls + \> Summaries*. +3. Add or modify types there. diff --git a/crm_phonecall_summary_predefined/readme/CONTRIBUTORS.md b/crm_phonecall_summary_predefined/readme/CONTRIBUTORS.md new file mode 100644 index 00000000000..189f2fd682b --- /dev/null +++ b/crm_phonecall_summary_predefined/readme/CONTRIBUTORS.md @@ -0,0 +1,8 @@ + - [Tecnativa](https://www.tecnativa.com): + - Rafael Blasco + - Jairo Llopis + - Vicent Cubells + - Cristina Martín + - Víctor Martínez + - Carolina Fernandez + - Anand Kansagra \<\> diff --git a/crm_phonecall_summary_predefined/readme/DESCRIPTION.md b/crm_phonecall_summary_predefined/readme/DESCRIPTION.md new file mode 100644 index 00000000000..6923537eded --- /dev/null +++ b/crm_phonecall_summary_predefined/readme/DESCRIPTION.md @@ -0,0 +1,3 @@ +This module extends the functionality of CRM phone calls to support +setting a limited list of possible phone call summaries, that only the +sales manager can edit. diff --git a/crm_phonecall_summary_predefined/readme/USAGE.md b/crm_phonecall_summary_predefined/readme/USAGE.md new file mode 100644 index 00000000000..c0818d3abb7 --- /dev/null +++ b/crm_phonecall_summary_predefined/readme/USAGE.md @@ -0,0 +1,2 @@ +1. Go to *CRM \> Phone Calls \> Logged Calls*. +2. There you can use the new *Summary* field diff --git a/crm_phonecall_summary_predefined/security/ir.model.access.csv b/crm_phonecall_summary_predefined/security/ir.model.access.csv new file mode 100644 index 00000000000..7c6b1e5e636 --- /dev/null +++ b/crm_phonecall_summary_predefined/security/ir.model.access.csv @@ -0,0 +1,4 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +read_partner_manager,crm.phonecall.summary,model_crm_phonecall_summary,base.group_partner_manager,1,0,0,0 +read_salesman,crm.phonecall.summary,model_crm_phonecall_summary,sales_team.group_sale_salesman,1,0,0,0 +write,crm.phonecall.summary,model_crm_phonecall_summary,sales_team.group_sale_manager,1,1,1,1 diff --git a/crm_phonecall_summary_predefined/static/description/icon.png b/crm_phonecall_summary_predefined/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/crm_phonecall_summary_predefined/static/description/icon.png differ diff --git a/crm_phonecall_summary_predefined/static/description/index.html b/crm_phonecall_summary_predefined/static/description/index.html new file mode 100644 index 00000000000..988cb2a2177 --- /dev/null +++ b/crm_phonecall_summary_predefined/static/description/index.html @@ -0,0 +1,452 @@ + + + + + +Restricted Summary for Phone Calls + + + +
+

Restricted Summary for Phone Calls

+ + +

Beta License: AGPL-3 OCA/crm Translate me on Weblate Try me on Runboat

+

This module extends the functionality of CRM phone calls to support +setting a limited list of possible phone call summaries, that only the +sales manager can edit.

+

Table of contents

+ +
+

Configuration

+

To configure the possible summary options:

+
    +
  1. Activate the developer mode
  2. +
  3. Go to CRM > Configuration > Phone Calls > Summaries.
  4. +
  5. Add or modify types there.
  6. +
+
+
+

Usage

+
    +
  1. Go to CRM > Phone Calls > Logged Calls.
  2. +
  3. There you can use the new Summary field
  4. +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/crm project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/crm_phonecall_summary_predefined/tests/__init__.py b/crm_phonecall_summary_predefined/tests/__init__.py new file mode 100644 index 00000000000..eb2b40ebc44 --- /dev/null +++ b/crm_phonecall_summary_predefined/tests/__init__.py @@ -0,0 +1 @@ +from . import test_crm_phonecall_summary_predefined diff --git a/crm_phonecall_summary_predefined/tests/test_crm_phonecall_summary_predefined.py b/crm_phonecall_summary_predefined/tests/test_crm_phonecall_summary_predefined.py new file mode 100644 index 00000000000..f6519183d5e --- /dev/null +++ b/crm_phonecall_summary_predefined/tests/test_crm_phonecall_summary_predefined.py @@ -0,0 +1,51 @@ +# Copyright 2022 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from psycopg2 import IntegrityError + +from odoo.tests import common +from odoo.tools import mute_logger + + +class TestCrmPhoneCallSummaryPredefined(common.TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.summary = cls.env["crm.phonecall.summary"].create({"name": "Test summary"}) + cls.partner = cls.env["res.partner"].create({"name": "Mr Odoo"}) + cls.phonecall = cls.env["crm.phonecall"].create( + { + "name": "Test phonecall", + "partner_id": cls.partner.id, + "summary_id": cls.summary.id, + } + ) + + def test_summary_constraint(self): + with self.assertRaises(IntegrityError), mute_logger("odoo.sql_db"): + self.summary.copy() + + def test_schedule_another_phonecall(self): + new_phonecall = self.phonecall.schedule_another_phonecall( + { + "name": "Test schedule method", + "action": "schedule", + "summary_id": self.phonecall.summary_id.id, + } + )[self.phonecall.id] + self.assertEqual(new_phonecall.summary_id, self.phonecall.summary_id) + + def test_wizard(self): + wizard = ( + self.env["crm.phonecall2phonecall"] + .with_context( + active_ids=self.phonecall.ids, + active_id=self.phonecall.id, + active_model="crm.phonecall", + ) + .create({}) + ) + self.assertEqual(wizard.summary_id, self.summary) + result = wizard.action_schedule() + new_phonecall = self.env["crm.phonecall"].browse(result["res_id"]) + self.assertEqual(new_phonecall.summary_id, self.phonecall.summary_id) diff --git a/crm_phonecall_summary_predefined/views/crm_phonecall_summary_view.xml b/crm_phonecall_summary_predefined/views/crm_phonecall_summary_view.xml new file mode 100644 index 00000000000..bb9d64b5b57 --- /dev/null +++ b/crm_phonecall_summary_predefined/views/crm_phonecall_summary_view.xml @@ -0,0 +1,52 @@ + + + + + CRM Phonecall Summary Form + crm.phonecall.summary + +
+ + + + + + + + +
+
+
+ + CRM Phonecall Summary Tree + crm.phonecall.summary + + + + + + + + CRM Phonecall Summary Search + crm.phonecall.summary + + + + + + + + Summaries + ir.actions.act_window + crm.phonecall.summary + tree + + +
diff --git a/crm_phonecall_summary_predefined/views/crm_phonecall_view.xml b/crm_phonecall_summary_predefined/views/crm_phonecall_view.xml new file mode 100644 index 00000000000..1d8da545353 --- /dev/null +++ b/crm_phonecall_summary_predefined/views/crm_phonecall_view.xml @@ -0,0 +1,46 @@ + + + + + Replace name by summary_id + crm.phonecall + + + + True + + + + + + + + Replace name by summary_id + crm.phonecall + + + + True + + + + + + + + Replace name by summary_id + crm.phonecall + + + + True + + + + + + + diff --git a/crm_phonecall_summary_predefined/wizard/__init__.py b/crm_phonecall_summary_predefined/wizard/__init__.py new file mode 100644 index 00000000000..c7e26295615 --- /dev/null +++ b/crm_phonecall_summary_predefined/wizard/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). + +from . import crm_phonecall_to_phonecall diff --git a/crm_phonecall_summary_predefined/wizard/crm_phonecall_to_phonecall.py b/crm_phonecall_summary_predefined/wizard/crm_phonecall_to_phonecall.py new file mode 100644 index 00000000000..b78bca665bb --- /dev/null +++ b/crm_phonecall_summary_predefined/wizard/crm_phonecall_to_phonecall.py @@ -0,0 +1,35 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class CrmPhonecall2phonecall(models.TransientModel): + _inherit = "crm.phonecall2phonecall" + + name = fields.Char( + related="summary_id.name", + store=True, + required=False, + readonly=True, + ) + summary_id = fields.Many2one( + comodel_name="crm.phonecall.summary", + string="Summary", + required=True, + ondelete="restrict", + ) + + @api.model + def default_get(self, fields): + """Function gets default values.""" + res = super().default_get(fields) + model = self.env.context.get("active_model") + if model == "crm.phonecall": + phonecall = self.env[model].browse(self.env.context.get("active_id")) + res["summary_id"] = phonecall.summary_id.id + return res + + def get_vals_action_schedule(self): + res = super().get_vals_action_schedule() + res.update({"summary_id": self.summary_id.id}) + return res diff --git a/crm_phonecall_summary_predefined/wizard/crm_phonecall_to_phonecall_view.xml b/crm_phonecall_summary_predefined/wizard/crm_phonecall_to_phonecall_view.xml new file mode 100644 index 00000000000..fadf20237fb --- /dev/null +++ b/crm_phonecall_summary_predefined/wizard/crm_phonecall_to_phonecall_view.xml @@ -0,0 +1,17 @@ + + + + + crm.phonecall2phonecall.form + crm.phonecall2phonecall + + + + True + + + + + + +