diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e046e49 --- /dev/null +++ b/__init__.py @@ -0,0 +1 @@ +from . import controllers diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..92ae415 --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Online Task Submission', + 'category': 'Website/Website', + 'summary': 'Add a task suggestion form to your website', + 'version': '1.0', + 'description': """ +Generate tasks in Project app from a form published on your website. This module requires the use of the *Form Builder* module (available in Odoo Enterprise) in order to build the form. + """, + 'depends': ['website', 'project'], + 'data': [ + 'data/website_form_project_data.xml', + 'views/project_portal_project_task_template.xml', + 'views/project_portal_project_project_template.xml', + ], + 'installable': True, + 'auto_install': True, + 'assets': { + 'website.assets_wysiwyg': [ + 'website_form_project/static/src/js/website_form_project_editor.js', + ], + 'project.webclient': [ + # In website, there is a patch of the LinkDialog (see + # website/static/src/js/editor/editor.js) that require the utils.js. + # Thus, when website is installed, this bundle need to have the + # utils.js in its assets, otherwise, there will be an unmet + # dependency. + 'website/static/src/js/utils.js', + 'web/static/src/core/autocomplete/*', + 'website/static/src/components/autocomplete_with_pages/*', + ], + }, + 'license': 'LGPL-3', +} diff --git a/controllers/__init__.py b/controllers/__init__.py new file mode 100644 index 0000000..12a7e52 --- /dev/null +++ b/controllers/__init__.py @@ -0,0 +1 @@ +from . import main diff --git a/controllers/main.py b/controllers/main.py new file mode 100644 index 0000000..747076c --- /dev/null +++ b/controllers/main.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.addons.website.controllers import form + + +class WebsiteForm(form.WebsiteForm): + def insert_record(self, request, model, values, custom, meta=None): + if model.model == 'project.task': + visitor_sudo = request.env['website.visitor']._get_visitor_from_request() + visitor_partner = visitor_sudo.partner_id + if visitor_partner: + values['partner_id'] = visitor_partner.id + + return super().insert_record(request, model, values, custom, meta=meta) diff --git a/data/website_form_project_data.xml b/data/website_form_project_data.xml new file mode 100644 index 0000000..df4d340 --- /dev/null +++ b/data/website_form_project_data.xml @@ -0,0 +1,19 @@ + + + + create_task + + True + Create a Task + + + + project.task + + + + diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..f21f17a --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\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: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "الوصف" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "المشروع" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "عنوان المهمة" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "بريدك الإلكتروني " diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..b0193f7 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Martin Trigaux, 2023 +# aleksandar ivanov, 2023 +# Maria Boyadjieva , 2023 +# kirily , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: kirily , 2023\n" +"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Описание" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Проект" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Заглавие на задача" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Вашият имейл" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..3fe701d --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Martin Trigaux, 2023 +# Quim - eccit , 2023 +# M Palau , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: M Palau , 2023\n" +"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Descripció" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projecte" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Títol de la tasca" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "El vostre correu electrònic" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..bcef05c --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Jakub Smolka, 2023 +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Popis" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projekty" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Název úkolu" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Váš e-mail" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..7d5380f --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Beskrivelse" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projekt" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Opgave overskrift" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Din e-mail" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..2be8319 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 2023\n" +"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Beschreibung" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projekt" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Aufgabentitel" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Ihre E-Mail" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..c431b63 --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 2024\n" +"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Descripción" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Proyecto" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Título de la tarea" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Su correo electrónico" diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..0a77634 --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Patricia Gutiérrez Capetillo , 2023 +# Wil Odoo, 2023 +# Iran Villalobos López, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Iran Villalobos López, 2023\n" +"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_419\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Descripción" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Proyecto" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Título de tarea" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Su correo electrónico" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..531aa82 --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Triine Aavik , 2023 +# Patrick-Jordan Kiudorv, 2023 +# Martin Aavastik , 2023 +# Eneli Õigus , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Eneli Õigus , 2023\n" +"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Kirjeldus" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projektid" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Ülesande nimi" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Sinu e-post" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..871d9f2 --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Hanna Kheradroosta, 2023 +# Hamid Darabi, 2023 +# Hamed Mohammadi , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Hamed Mohammadi , 2023\n" +"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "توصیف" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "پروژه" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "عنوان کار" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "ایمیل شما" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..fef5724 --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Kari Lindgren , 2023 +# Svante Suominen , 2023 +# Veikko Väätäjä , 2023 +# Jarmo Kortetjärvi , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2023\n" +"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Kuvaus" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projektit" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Tehtävän otsikko" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Sähköpostisi" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..c0dfbff --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# Jolien De Paepe, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jolien De Paepe, 2023\n" +"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Description" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projet" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Titre de la tâche" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Votre email" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..f26194c --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Martin Trigaux, 2023 +# ZVI BLONDER , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: ZVI BLONDER , 2023\n" +"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "תיאור" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "פרויקט" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "שם המשימה" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "הדוא\"ל שלך" diff --git a/i18n/hr.po b/i18n/hr.po new file mode 100644 index 0000000..fcf6cb6 --- /dev/null +++ b/i18n/hr.po @@ -0,0 +1,51 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Bole , 2019 +# Vladimir Olujić , 2019 +# Đurđica Žarković , 2019 +# Ivica Dimjašević , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Ivica Dimjašević , 2019\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:23 +#, python-format +msgid "Description" +msgstr "Opis" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:15 +#, python-format +msgid "Email" +msgstr "E-pošta" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:17 +#, python-format +msgid "Project" +msgstr "Projekt" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:7 +#, python-format +msgid "Task Title" +msgstr "Naslov zadatka" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..ea41d0a --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# krnkris, 2023 +# Ákos Nagy , 2023 +# gezza , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: gezza , 2023\n" +"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Leírás" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projekt" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Feladat neve" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Az Ön e-mail címe" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..21616fc --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Abe Manyo, 2023 +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Keterangan" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Proyek" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Tugas judul" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Email Anda" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..8c59114 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Descrizione" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Progetto" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Titolo del lavoro" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "E-mail" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..a4224b4 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "説明" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "プロジェクト" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "タスク名" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Eメール" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..c2b27ef --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "설명" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "프로젝트" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "작업명" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "이메일" diff --git a/i18n/lb.po b/i18n/lb.po new file mode 100644 index 0000000..c94449f --- /dev/null +++ b/i18n/lb.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:23 +#, python-format +msgid "Description" +msgstr "" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:15 +#, python-format +msgid "Email" +msgstr "" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:17 +#, python-format +msgid "Project" +msgstr "" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:7 +#, python-format +msgid "Task Title" +msgstr "" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..c6d59e9 --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Martin Trigaux, 2023 +# digitouch UAB , 2023 +# Jonas Zinkevicius , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jonas Zinkevicius , 2023\n" +"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Aprašymas" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projektas" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Užduoties pavadinimas" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Jūsų el. pašto adresas" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..2eb248e --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# ievaputnina , 2023 +# Armīns Jeltajevs , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Armīns Jeltajevs , 2023\n" +"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Apraksts" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projekti" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Jūsu e-pasts" diff --git a/i18n/mn.po b/i18n/mn.po new file mode 100644 index 0000000..b4a7be9 --- /dev/null +++ b/i18n/mn.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Baskhuu Lodoikhuu , 2019 +# Martin Trigaux, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Martin Trigaux, 2019\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:23 +#, python-format +msgid "Description" +msgstr "Тайлбар" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:15 +#, python-format +msgid "Email" +msgstr "Имэйл" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:17 +#, python-format +msgid "Project" +msgstr "Төсөл" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:7 +#, python-format +msgid "Task Title" +msgstr "Даалгаврын гарчиг" diff --git a/i18n/nb.po b/i18n/nb.po new file mode 100644 index 0000000..9ce7fd0 --- /dev/null +++ b/i18n/nb.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Martin Trigaux, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Last-Translator: Martin Trigaux, 2019\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:23 +#, python-format +msgid "Description" +msgstr "Beskrivelse" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:15 +#, python-format +msgid "Email" +msgstr "Epost" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:17 +#, python-format +msgid "Project" +msgstr "Prosjekt" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:7 +#, python-format +msgid "Task Title" +msgstr "Oppgavetittel" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..7bfe8b5 --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Omschrijving" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Project" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Titel taak" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Je e-mail" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..cf3826c --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\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: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Opis" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projekt" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Tytuł zadania" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Twój email" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..1aa8f50 --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Descrição" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projeto" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Título da Tarefa" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "O Seu Email" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..57fd32b --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# Layna Nascimento, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Layna Nascimento, 2023\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Descrição" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projeto" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Título da tarefa" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Seu e-mail" diff --git a/i18n/ro.po b/i18n/ro.po new file mode 100644 index 0000000..b17dafd --- /dev/null +++ b/i18n/ro.po @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:15+0000\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:23 +#, python-format +msgid "Description" +msgstr "" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:15 +#, python-format +msgid "Email" +msgstr "" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:17 +#, python-format +msgid "Project" +msgstr "" + +#. module: website_form_project +#. openerp-web +#: code:addons/website_form_project/static/src/xml/website_form_project.xml:7 +#, python-format +msgid "Task Title" +msgstr "" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..de2ea7d --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Сергей Шебанин , 2023 +# Martin Trigaux, 2023 +# Wil Odoo, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2024\n" +"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\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: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Описание" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Проект" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Название задачи" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Ваш Email" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..76da4a6 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Popis" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projekt" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Názov úlohy" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Váš email" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..576b534 --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# matjaz k , 2023 +# Matjaz Mozetic , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Opis" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projekt" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Naziv opravila" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Vaša e-pošta" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..40013fa --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Milan Bojovic, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Milan Bojovic, 2023\n" +"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\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: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Opis" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projekat" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Naziv zadatka" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Vaš e-mail" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..d3e0cb5 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,50 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Martin Trigaux, 2023 +# Robin Calvin, 2023 +# Anders Wallenquist , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Anders Wallenquist , 2023\n" +"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Beskrivning" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Projekt" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Aktivitetens titel" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Din e-post" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..35aa97c --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# Rasareeyar Lappiam, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Rasareeyar Lappiam, 2023\n" +"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "คำอธิบาย" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "โปรเจ็กต์" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "หัวข้องาน" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "อีเมลของคุณ" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..37d857b --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Ediz Duman , 2023 +# Murat Kaplan , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Murat Kaplan , 2023\n" +"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Açıklama" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Proje" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Görev Başlığı" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "E-Posta Adresiniz" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..34ae515 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Опис" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Проект" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Назва завдання" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Ваша електронна пошта" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..b3fc044 --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "Mô tả" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "Dự án" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "Tiêu đề Nhiệm vụ" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "Email" diff --git a/i18n/website_form_project.pot b/i18n/website_form_project.pot new file mode 100644 index 0000000..5af09b2 --- /dev/null +++ b/i18n/website_form_project.pot @@ -0,0 +1,44 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 21:56+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..2393683 --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,49 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023\n" +"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "说明" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "项目" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "任务标题" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "您的邮箱" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..b473430 --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * website_form_project +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Description" +msgstr "說明" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Project" +msgstr "專案" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Task Title" +msgstr "任務標題" + +#. module: website_form_project +#. odoo-javascript +#: code:addons/website_form_project/static/src/js/website_form_project_editor.js:0 +#, python-format +msgid "Your Email" +msgstr "你的電郵地址" diff --git a/static/description/icon.png b/static/description/icon.png new file mode 100644 index 0000000..b7aaac7 Binary files /dev/null and b/static/description/icon.png differ diff --git a/static/description/icon.svg b/static/description/icon.svg new file mode 100644 index 0000000..3718046 --- /dev/null +++ b/static/description/icon.svg @@ -0,0 +1 @@ + diff --git a/static/src/js/website_form_project_editor.js b/static/src/js/website_form_project_editor.js new file mode 100644 index 0000000..4ba1aee --- /dev/null +++ b/static/src/js/website_form_project_editor.js @@ -0,0 +1,31 @@ +/** @odoo-module **/ + +import { _t } from "@web/core/l10n/translation"; +import FormEditorRegistry from "@website/js/form_editor_registry"; + +FormEditorRegistry.add('create_task', { + formFields: [{ + type: 'char', + modelRequired: true, + name: 'name', + string: _t('Task Title'), + }, { + type: 'email', + custom: true, + required: true, + fillWith: 'email', + name: 'email_from', + string: _t('Your Email'), + }, { + type: 'char', + name: 'description', + string: _t('Description'), + }], + fields: [{ + name: 'project_id', + type: 'many2one', + relation: 'project.project', + string: _t('Project'), + createAction: 'project.open_view_project_all', + }], +}); diff --git a/views/project_portal_project_project_template.xml b/views/project_portal_project_project_template.xml new file mode 100644 index 0000000..cf8e0bf --- /dev/null +++ b/views/project_portal_project_project_template.xml @@ -0,0 +1,8 @@ + + + + diff --git a/views/project_portal_project_task_template.xml b/views/project_portal_project_task_template.xml new file mode 100644 index 0000000..aaed9ec --- /dev/null +++ b/views/project_portal_project_task_template.xml @@ -0,0 +1,8 @@ + + + +