Начальное наполнение
This commit is contained in:
parent
8dfb997e01
commit
fdc09c2f67
1
__init__.py
Normal file
1
__init__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
from . import controllers
|
36
__manifest__.py
Normal file
36
__manifest__.py
Normal file
@ -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',
|
||||||
|
}
|
1
controllers/__init__.py
Normal file
1
controllers/__init__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
from . import main
|
15
controllers/main.py
Normal file
15
controllers/main.py
Normal file
@ -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)
|
19
data/website_form_project_data.xml
Normal file
19
data/website_form_project_data.xml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<record id="project.model_project_task" model="ir.model">
|
||||||
|
<field name="website_form_key">create_task</field>
|
||||||
|
<field name="website_form_default_field_id" ref="project.field_project_task__description" />
|
||||||
|
<field name="website_form_access">True</field>
|
||||||
|
<field name="website_form_label">Create a Task</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
|
<function model="ir.model.fields" name="formbuilder_whitelist">
|
||||||
|
<value>project.task</value>
|
||||||
|
<value eval="[
|
||||||
|
'name',
|
||||||
|
'description',
|
||||||
|
'project_id',
|
||||||
|
]"/>
|
||||||
|
</function>
|
||||||
|
|
||||||
|
</odoo>
|
48
i18n/ar.po
Normal file
48
i18n/ar.po
Normal file
@ -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 "بريدك الإلكتروني "
|
51
i18n/bg.po
Normal file
51
i18n/bg.po
Normal file
@ -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 <marabo2000@gmail.com>, 2023
|
||||||
|
# kirily <kiril@teracomp.eu>, 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 <kiril@teracomp.eu>, 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 "Вашият имейл"
|
50
i18n/ca.po
Normal file
50
i18n/ca.po
Normal file
@ -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 <quim@eccit.com>, 2023
|
||||||
|
# M Palau <mpalau@tda.ad>, 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 <mpalau@tda.ad>, 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"
|
49
i18n/cs.po
Normal file
49
i18n/cs.po
Normal file
@ -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"
|
48
i18n/da.po
Normal file
48
i18n/da.po
Normal file
@ -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"
|
49
i18n/de.po
Normal file
49
i18n/de.po
Normal file
@ -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"
|
49
i18n/es.po
Normal file
49
i18n/es.po
Normal file
@ -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"
|
50
i18n/es_419.po
Normal file
50
i18n/es_419.po
Normal file
@ -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 <pagc@odoo.com>, 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"
|
51
i18n/et.po
Normal file
51
i18n/et.po
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_form_project
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Triine Aavik <triine@avalah.ee>, 2023
|
||||||
|
# Patrick-Jordan Kiudorv, 2023
|
||||||
|
# Martin Aavastik <martin@avalah.ee>, 2023
|
||||||
|
# Eneli Õigus <enelioigus@gmail.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: Eneli Õigus <enelioigus@gmail.com>, 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"
|
50
i18n/fa.po
Normal file
50
i18n/fa.po
Normal file
@ -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 <hamed@dehongi.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: Hamed Mohammadi <hamed@dehongi.com>, 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 "ایمیل شما"
|
51
i18n/fi.po
Normal file
51
i18n/fi.po
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_form_project
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2023
|
||||||
|
# Svante Suominen <svante.suominen@web-veistamo.fi>, 2023
|
||||||
|
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2023
|
||||||
|
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.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: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 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"
|
49
i18n/fr.po
Normal file
49
i18n/fr.po
Normal file
@ -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"
|
49
i18n/he.po
Normal file
49
i18n/he.po
Normal file
@ -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 <ZVIBLONDER@gmail.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: ZVI BLONDER <ZVIBLONDER@gmail.com>, 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 "הדוא\"ל שלך"
|
51
i18n/hr.po
Normal file
51
i18n/hr.po
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_form_project
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Bole <bole@dajmi5.com>, 2019
|
||||||
|
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2019
|
||||||
|
# Đurđica Žarković <durdica.zarkovic@storm.hr>, 2019
|
||||||
|
# Ivica Dimjašević <ivica.dimjasevic@storm.hr>, 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ć <ivica.dimjasevic@storm.hr>, 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"
|
50
i18n/hu.po
Normal file
50
i18n/hu.po
Normal file
@ -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 <akos.nagy@oregional.hu>, 2023
|
||||||
|
# gezza <geza.nagy@oregional.hu>, 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 <geza.nagy@oregional.hu>, 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"
|
49
i18n/id.po
Normal file
49
i18n/id.po
Normal file
@ -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"
|
48
i18n/it.po
Normal file
48
i18n/it.po
Normal file
@ -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"
|
48
i18n/ja.po
Normal file
48
i18n/ja.po
Normal file
@ -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メール"
|
48
i18n/ko.po
Normal file
48
i18n/ko.po
Normal file
@ -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 "이메일"
|
44
i18n/lb.po
Normal file
44
i18n/lb.po
Normal file
@ -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 ""
|
50
i18n/lt.po
Normal file
50
i18n/lt.po
Normal file
@ -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 <digitouchagencyeur@gmail.com>, 2023
|
||||||
|
# Jonas Zinkevicius <jozi@odoo.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: Jonas Zinkevicius <jozi@odoo.com>, 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"
|
49
i18n/lv.po
Normal file
49
i18n/lv.po
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_form_project
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||||
|
# Armīns Jeltajevs <armins.jeltajevs@gmail.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: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 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"
|
49
i18n/mn.po
Normal file
49
i18n/mn.po
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_form_project
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 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 "Даалгаврын гарчиг"
|
48
i18n/nb.po
Normal file
48
i18n/nb.po
Normal file
@ -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"
|
48
i18n/nl.po
Normal file
48
i18n/nl.po
Normal file
@ -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"
|
48
i18n/pl.po
Normal file
48
i18n/pl.po
Normal file
@ -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"
|
48
i18n/pt.po
Normal file
48
i18n/pt.po
Normal file
@ -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"
|
49
i18n/pt_BR.po
Normal file
49
i18n/pt_BR.po
Normal file
@ -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"
|
44
i18n/ro.po
Normal file
44
i18n/ro.po
Normal file
@ -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 ""
|
50
i18n/ru.po
Normal file
50
i18n/ru.po
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_form_project
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Сергей Шебанин <sergey@shebanin.ru>, 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"
|
48
i18n/sk.po
Normal file
48
i18n/sk.po
Normal file
@ -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"
|
50
i18n/sl.po
Normal file
50
i18n/sl.po
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_form_project
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# matjaz k <matjaz@mentis.si>, 2023
|
||||||
|
# Matjaz Mozetic <m.mozetic@matmoz.si>, 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"
|
48
i18n/sr.po
Normal file
48
i18n/sr.po
Normal file
@ -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"
|
50
i18n/sv.po
Normal file
50
i18n/sv.po
Normal file
@ -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 <anders.wallenquist@vertel.se>, 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 <anders.wallenquist@vertel.se>, 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"
|
49
i18n/th.po
Normal file
49
i18n/th.po
Normal file
@ -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 "อีเมลของคุณ"
|
49
i18n/tr.po
Normal file
49
i18n/tr.po
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
# Translation of Odoo Server.
|
||||||
|
# This file contains the translation of the following modules:
|
||||||
|
# * website_form_project
|
||||||
|
#
|
||||||
|
# Translators:
|
||||||
|
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||||
|
# Murat Kaplan <muratk@projetgrup.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: Murat Kaplan <muratk@projetgrup.com>, 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"
|
48
i18n/uk.po
Normal file
48
i18n/uk.po
Normal file
@ -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 "Ваша електронна пошта"
|
48
i18n/vi.po
Normal file
48
i18n/vi.po
Normal file
@ -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"
|
44
i18n/website_form_project.pot
Normal file
44
i18n/website_form_project.pot
Normal file
@ -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 ""
|
49
i18n/zh_CN.po
Normal file
49
i18n/zh_CN.po
Normal file
@ -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 "您的邮箱"
|
48
i18n/zh_TW.po
Normal file
48
i18n/zh_TW.po
Normal file
@ -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 "你的電郵地址"
|
BIN
static/description/icon.png
Normal file
BIN
static/description/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
1
static/description/icon.svg
Normal file
1
static/description/icon.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path d="m30.842 34.612-8.105 10.387L5.452 31.37a3.862 3.862 0 0 1-.616-5.417l5.748-7.243 20.258 15.903Z" fill="#088BF5"/><path d="m22.623 44.909-10.455-8.335 8.128-10.242 10.547 8.28L22.738 45l-.115-.091Z" fill="#144496"/><path d="m22.593 44.886.144.114 22.447-28.767a3.862 3.862 0 0 0-.636-5.393L37.223 5 20.296 26.332l10.547 8.28-8.105 10.387-.144-.113Z" fill="#2EBCFA"/></svg>
|
After Width: | Height: | Size: 464 B |
31
static/src/js/website_form_project_editor.js
Normal file
31
static/src/js/website_form_project_editor.js
Normal file
@ -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',
|
||||||
|
}],
|
||||||
|
});
|
8
views/project_portal_project_project_template.xml
Normal file
8
views/project_portal_project_project_template.xml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<template id="website_portal_my_project" name="My Project website" inherit_id="project.portal_my_project">
|
||||||
|
<xpath expr="//t[@t-set='title']" position="replace">
|
||||||
|
<t t-set="additional_title" t-value="project.name"/>
|
||||||
|
</xpath>
|
||||||
|
</template>
|
||||||
|
</odoo>
|
8
views/project_portal_project_task_template.xml
Normal file
8
views/project_portal_project_task_template.xml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<template id="website_portal_my_task" name="My Task website" inherit_id="project.portal_my_task">
|
||||||
|
<xpath expr="//t[@t-set='title']" position="replace">
|
||||||
|
<t t-set="additional_title" t-value="task.name"/>
|
||||||
|
</xpath>
|
||||||
|
</template>
|
||||||
|
</odoo>
|
Loading…
x
Reference in New Issue
Block a user