squashed commit

This commit is contained in:
hoangvv
2026-09-18 13:55:25 +07:00
commit 039c98d4d0
45882 changed files with 24235585 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import controllers
@@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Project Mail Plugin',
'version': '1.0',
'category': 'Services/Project',
'sequence': 5,
'summary': 'Integrate your inbox with projects',
'description': "Turn emails received in your mailbox into tasks and log their content as internal notes.",
'data': [
'views/project_task_views.xml'
],
'website': 'https://www.odoo.com/app/project',
'depends': [
'project',
'mail_plugin',
],
'installable': True,
'auto_install': True,
'license': 'LGPL-3',
}
@@ -0,0 +1,5 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import mail_plugin
from . import project_client
@@ -0,0 +1,61 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import logging
from odoo.http import request
from odoo.addons.mail_plugin.controllers import mail_plugin
_logger = logging.getLogger(__name__)
class MailPluginController(mail_plugin.MailPluginController):
def _get_contact_data(self, partner):
"""
Overrides the base module's get_contact_data method by Adding the "tasks" key within the initial contact
information dict loaded when opening an email on Outlook.
This is structured this way to enable the "project" feature on the Outlook side only if the Odoo version
supports it.
Return the tasks key only if the current user can create tasks. So, if they can not
create tasks, the section won't be visible on the addin side (like if the project
module was not installed on the database).
"""
contact_values = super(MailPluginController, self)._get_contact_data(partner)
if not request.env['project.task'].has_access('create'):
return contact_values
if not partner:
contact_values['tasks'] = []
else:
partner_tasks = request.env['project.task'].search(
[('partner_id', '=', partner.id)], offset=0, limit=5)
accessible_projects = partner_tasks.project_id._filtered_access('read').ids
tasks_values = [
{
'task_id': task.id,
'name': task.name,
'project_name': task.project_id.name,
} for task in partner_tasks if task.project_id.id in accessible_projects]
contact_values['tasks'] = tasks_values
contact_values['can_create_project'] = request.env['project.project'].has_access('create')
return contact_values
def _mail_content_logging_models_whitelist(self):
models_whitelist = super(MailPluginController, self)._mail_content_logging_models_whitelist()
if not request.env['project.task'].has_access('create'):
return models_whitelist
return models_whitelist + ['project.task']
def _translation_modules_whitelist(self):
modules_whitelist = super(MailPluginController, self)._translation_modules_whitelist()
if not request.env['project.task'].has_access('create'):
return modules_whitelist
return modules_whitelist + ['project_mail_plugin']
@@ -0,0 +1,50 @@
from odoo import Command, http, _
from odoo.http import request
class ProjectClient(http.Controller):
@http.route('/mail_plugin/project/search', type='json', auth='outlook', cors="*")
def projects_search(self, search_term, limit=5):
"""
Used in the plugin side when searching for projects.
Fetches projects that have names containing the search_term.
"""
projects = request.env['project.project'].search([('name', 'ilike', search_term)], limit=limit)
return [
{
'project_id': project.id,
'name': project.name,
'partner_name': project.partner_id.name,
'company_id': project.company_id.id
}
for project in projects.sudo()
]
@http.route('/mail_plugin/task/create', type='json', auth='outlook', cors="*")
def task_create(self, email_subject, email_body, project_id, partner_id):
partner = request.env['res.partner'].browse(partner_id).exists()
if not partner:
return {'error': 'partner_not_found'}
if not request.env['project.project'].browse(project_id).exists():
return {'error': 'project_not_found'}
if not email_subject:
email_subject = _('Task for %s', partner.name)
record = request.env['project.task'].with_company(partner.company_id).create({
'name': email_subject,
'partner_id': partner_id,
'description': email_body,
'project_id': project_id,
'user_ids': [Command.link(request.env.uid)],
})
return {'task_id': record.id, 'name': record.name}
@http.route('/mail_plugin/project/create', type='json', auth='outlook', cors="*")
def project_create(self, name):
record = request.env['project.project'].create({'name': name})
return {"project_id": record.id, "name": record.name}
+205
View File
@@ -0,0 +1,205 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "تعذر إنشاء المشروع "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "تعذر إنشاء المهمة "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "إنشاء"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "إنشاء %(name)s "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "إنشاء مشروع ومهمة "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "إنشاء مهمة في مشروع جديد "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "إنشاء مهمة في مشروع موجود بالفعل "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "البريد الإلكتروني مسجل في المهمة بالفعل "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "تسجيل البريد الإلكتروني في المهمة "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "تسجيل البريد الإلكتروني في المهمة "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "لم يتم العثور على مشروع"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "لا يوجد مشروع "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "لم يتم العثور على مشروع. "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "لم يتم العثور على مهام لجهة الاتصال هذه. "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "أو "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "اختر مشروعاً لإنشاء مهمة "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "اسم المشروع"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "حفظ جهة الاتصال لإنشاء مهام جديدة. "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "حفظ جهة الاتصال لإنشاء مهام جديدة. "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "بحث"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "البحث في المشاريع... "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "البحث عن مشروع "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "المهمة"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "مهمة لـ %s "
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "المهمة: إعادة التوجيه في وضع التحرير "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "المهام (%(count)s) "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "المهام (%s) "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "يجب أن تكون جهة الاتصال موجودة حتى تتمكن من إنشاء مهمة. "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "اسم المشروع مطلوب "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"لا توجد مشاريع في قاعدة بياناتك. رجاءً اطلب من مدير مشروعك إنشاء واحد. "
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Jumshud Sultanov <cumshud@gmail.com>, 2024
# erpgo translator <jumshud@erpgo.az>, 2024
# Nurlan Farajov <coolinuxoid@gmail.com>, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Nurlan Farajov <coolinuxoid@gmail.com>, 2025\n"
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: az\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Yaradın"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "%(name)s yarat"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "və yaxud"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Axtarın"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Tapşırıq"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+207
View File
@@ -0,0 +1,207 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Petko Karamotchev, 2024
# KeyVillage, 2024
# Maria Boyadjieva <marabo2000@gmail.com>, 2024
# Albena Mincheva <albena_vicheva@abv.bg>, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Albena Mincheva <albena_vicheva@abv.bg>, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Създай"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Име на проект"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Tyrsene"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Задача"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+205
View File
@@ -0,0 +1,205 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2025-11-25 09:51+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Bosnian <https://translate.odoo.com/projects/odoo-18/"
"project_mail_plugin/bs/>\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Kreiraj"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Pretraži"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Zadatak"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+211
View File
@@ -0,0 +1,211 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Ivan Espinola, 2024
# Quim - coopdevs <quim.rebull@coopdevs.org>, 2024
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2024
# marcescu, 2024
# Martin Trigaux, 2024
# CristianCruzParra, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: CristianCruzParra, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "No s'ha pogut crear el projecte"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "No s'ha pogut crear la tasca"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Crear"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Crea %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Crea un projecte & tasca"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Crear una tasca en un nou projecte"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Crea una tasca en un projecte existent"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "El correu electrònic ja està connectat a la tasca"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Registra el correu electrònic a la tasca"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Registra el correu electrònic de la tasca"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "No s'ha trobat cap projecte"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Cap projecte"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "No s'ha trobat cap projecte."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "No s'ha trobat cap tasca per a aquest contacte."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "OR"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Seleccioneu un projecte per crear una tasca"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Nom del projecte"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Desa el contacte per crear tasques noves."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Desa el contacte per crear tasques noves."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Cercar"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Cercar projectes..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Cerca un projecte"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Tasca"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Tasca per %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Tasca: redirecció a formar en mode de modificar"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Tasques (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Tasques (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "El contacte ha d'existir per crear la tasca."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "El nom del projecte és requerit"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"No hi ha cap projecte a la vostra base de dades. Si us plau, demaneu al "
"vostre director de projecte que en creï un."
+204
View File
@@ -0,0 +1,204 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2025\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Projekt se nepodařilo vytvořit"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Úkol se nepodařilo vytvořit"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Vytvořit"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Vytvořit %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Nebyl nalezen žádný projekt"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Žádný projekt"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Nebyl nalezen žádný projekt."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Pro tento kontakt nebyly nalezeny žádné úkoly."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "NEBO"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Vybrat projekt pro vytvoření úkolu."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Název projektu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Vyhledávání"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Úkol"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Název projektu je vyžadován"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+207
View File
@@ -0,0 +1,207 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Sanne Kristensen <sanne@vkdata.dk>, 2024
# Mads Søndergaard, 2024
# lhmflexerp <lhm@flexerp.dk>, 2024
# Martin Trigaux, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Martin Trigaux, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Opret"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Opret %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Ingen opgaver fundet for denne kontakt."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "ELLER"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Projektnavn"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Gem kontakt for at oprette nye opgaver."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Gem denne kontakt for at oprette nye opgaver."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Søg"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Søg projekter..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Opgave"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Opgaver (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Opgaver (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Projekt konnte nicht erstellt werden"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Aufgabe konnte nicht erstellt werden"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Erstellen"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "%(name)s erstellen"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Projekt und Aufgabe erstellen"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Aufgabe in neuem Projekt erstellen"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Aufgabe in einem bestehenden Projekt erstellen"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "E-Mail bereits auf der Aufgabe erfasst"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "E-Mail auf Aufgabe erfassen"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "E-Mail auf Aufgabe erfassen"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Kein Projekt gefunden"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Kein Projekt"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Kein Projekt gefunden."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Für diesen Kontakt wurde keine Aufgabe gefunden."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "ODER"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Wählen Sie ein Projekt, um eine Aufgabe zu erstellen"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Projektname"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Kontakt speichern, um neue Aufgabe zu erstellen. "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Kontakt speichern, um neue Aufgaben zu erstellen. "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Suchen"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Projekte suchen ..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Nach einem Projekt suchen"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Aufgabe"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Aufgabe für %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Aufgabe: Weiterleitung zum Formular im Bearbeitungsmodus"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Aufgaben (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Aufgaben (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Der Kontakt muss existieren, um eine Aufgabe zu erstellen."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Der Projektname wird benötigt"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Es befinden sich keine Projekte in Ihrer Datenbank. Bitte bitten Sie Ihren "
"Projektmanager darum, eins zu erstellen."
+205
View File
@@ -0,0 +1,205 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Martin Trigaux, 2024
# Kostas Goutoudis <goutoudis@gmail.com>, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2024\n"
"Language-Team: Greek (https://app.transifex.com/odoo/teams/41243/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Δημιουργία"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Όνομα Έργου"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Αναζήτηση"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Εργασία"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "No se pudo crear el proyecto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "No se pudo crear la tarea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Crear"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Crear %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Crear proyecto y tarea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Crear una tarea en un nuevo proyecto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Crear una tarea en un proyecto existente"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "Correo electrónico ya registrado en la tarea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Registrar correo electrónico en la tarea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Registrar el correo electrónico en la tarea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "No se encontraron proyectos"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Sin proyecto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "No se encontraron proyectos."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "No se encontraron tareas para este contacto."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "O"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Elegir un proyecto para crear una tarea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Nombre del proyecto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Guarde el contacto para crear nuevas tareas."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Guarde el contacto para crear nuevas tareas."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Buscar"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Buscar proyectos..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Buscar un proyecto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Tarea"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Tarea para %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Tarea: redireccionar al formulario en el modo de edición"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Tareas (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Tareas (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "El contacto debe existir para crear una tarea."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "El nombre del proyecto es obligatorio"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"No hay proyectos en su base de datos. Pida a su gerente de proyecto que cree"
" uno."
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "No se pudo crear el proyecto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "No se pudo crear la tarea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Crear"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Crear %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Crear proyecto y tarea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Crear una tarea en un nuevo proyecto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Crear una tarea en un proyecto existente"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "Correo electrónico ya registrado en la tarea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Registrar correo electrónico en la tarea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Registrar el correo electrónico en la tarea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "No se encontró ningún proyecto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Sin proyecto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "No se encontró ningún proyecto."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "No se encontraron tareas para este contacto."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "O"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Elija un proyecto para crear una tarea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Nombre del proyecto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Guardar contacto para crear nuevas tareas."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Guarde el contacto para crear nuevas tareas."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Buscar"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Buscar proyectos..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Buscar un proyecto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Tarea"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Tarea para %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Tarea: redirigir al formulario en el modo de edición"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Tareas (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Tareas (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "El contacto debe existir para crear una tarea."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "El proyecto debe tener un nombre"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"No hay proyectos en su base de datos. Pida a su gerente de proyecto que cree"
" uno."
+207
View File
@@ -0,0 +1,207 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Stevin Lilla, 2024
# Siim Raasuke, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Siim Raasuke, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Ei saanud projekti luua"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Ei saanud ülesannet luua"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Loo"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Loo %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Loo projekt ja ülesanne"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Loo ülesanne uues projektis"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Loo ülesanne olemasolevasse projekti"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "E-kiri on juba logitud ülesandele"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Logi e-kiri ülesandele"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Logi e-kiri ülesandele"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Projekti ei leitud"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Projekti pole"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Projekti ei leitud."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Ei leitud ülesannet otsitud kontaktile."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "või"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Vali projekt ülesande loomiseks."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Projekti nimi"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Salvesta kontakt, et luua uusi ülesandeid."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Salvesta kontakt, et luua uusi ülesandeid."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Otsi"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Otsi projekte..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Otsi projekti"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Ülesanne"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Ülesanne %s jaoks"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Ülesanne: suuna edasi muutmiseks"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Ülesanded (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Ülesanded (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Kontakt peab olema loodud, et saaks luua ülesannet. "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Projekti nimi on kohustuslik"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Sinu andmebaasis pole ühtegi projekti. Palu oma projektijuhil luua uus "
"projekt. "
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Tiffany Chang, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Tiffany Chang, 2025\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "نمی‌توان پروژه را ایجاد کرد"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "نمی‌توان وظیفه را ایجاد کرد"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "ایجاد"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "ایجاد %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "ایجاد پروژه و وظیفه"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "ایجاد یک تسک در پروژه جدید"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "ایجاد یک وظیفه در یک پروژه موجود"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "ایمیل قبلاً در وظیفه ثبت شده است"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "ورود ایمیل به وظیفه"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "روی وظیفه ایمیل را ثبت کنید"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "هیچ پروژه‌ای یافت نشد"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "بدون پروژه"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "هیچ پروژه‌ای یافت نشد."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "هیچ وظیفه‌ای برای این مخاطب یافت نشد."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "OR"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "انتخاب یک پروژه برای ایجاد یک وظیفه"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "نام پروژه"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "ذخیره‌ی تماس برای ایجاد وظایف جدید."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "ذخیره کردن تماس برای ایجاد وظایف جدید."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "جستجو"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "جستجوی پروژه‌ها..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "<p>جستجوی یک پروژه</p>"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "وظیفه"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "وظیفه برای %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "وظیفه: ارجاع به فرم در حالت ویرایش"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "وظایف (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "وظایف (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "تماس باید وجود داشته باشد تا کار ایجاد شود."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "نام پروژه الزامی است"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"در پایگاه داده شما هیچ پروژه‌ای وجود ندارد. لطفاً از مدیر پروژه خود بخواهید "
"یک پروژه ایجاد کند."
+208
View File
@@ -0,0 +1,208 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Martin Trigaux, 2024
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2024
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Projektia ei voitu luoda"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Tehtävää ei voitu luoda"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Luo"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Luo %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Luo projekti ja tehtävä"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Luo tehtävä uuteen projektiin"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Luo tehtävä olemassa olevaan projektiin"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "Sähköposti on jo kirjattu tehtävään"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Kirjaa sähköposti tehtävään"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Kirjaa sähköpostiviesti tehtävään"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Projektia ei löytynyt"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Ei projektia"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Projektia ei löytynyt"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Tälle yhteyshenkilölle ei löytynyt tehtäviä."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "TAI"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Valitse projekti luodaksesi tehtävän"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Projektin nimi"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Tallenna yhteyshenkilö luodaksesi uusia tehtäviä."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Tallenna yhteyshenkilö luodaksesi uusia tehtäviä."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Hae"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Etsi projekteja..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Etsi projektia"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Tehtävä"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Tehtävä %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Tehtävä: uudelleenohjaus lomakkeelle muokkaustilassa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Tehtävät (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Tehtävät (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Yhteyshenkilön on oltava olemassa, jotta tehtävä voidaan luoda."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Projektin nimi vaaditaan"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Tietokannassasi ei ole projekteja. Pyydä projektipäällikköäsi luomaan "
"sellainen."
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Impossible de créer le projet"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Impossible de créer la tâche"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Créer"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Créer %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Créer projet & tâche"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Créer une tâche dans un nouveau projet"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Créer une tâche dans un projet existant"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "E-mail déjà enregistré sur la tâche"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Enregistrer l'e-mail sur la tâche"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Enregistrer l'e-mail sur la tâche"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Aucun projet trouvé"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Pas de projet"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Aucun projet trouvé."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Aucune tâche trouvée pour ce contact."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "OU"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Choisir un projet pour créer une tâche"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Nom du projet"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Enregistrez le contact pour créer de nouvelles tâches."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Enregistrez le contact pour créer de nouvelles tâches."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Rechercher"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Rechercher des projets..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Rechercher un projet"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Tâche"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Tâche pour %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Tâche: rediriger vers le formulaire en mode édition"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Tâches (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Tâches (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Le contact doit exister pour créer la tâche."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Le nom du projet est requis"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Il n'y a aucun projet dans votre base de données. Veuillez demander à votre "
"chef de projet d'en créer un. "
+212
View File
@@ -0,0 +1,212 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2024
# MichaelHadar, 2024
# yael terner, 2024
# Martin Trigaux, 2024
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2024
# Yoram Lavi, 2025
# or balmas <or@laylinetech.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2025-09-16 22:21+0000\n"
"Last-Translator: or balmas <or@laylinetech.com>\n"
"Language-Team: Hebrew <https://translate.odoo.com/projects/odoo-18/"
"project_mail_plugin/he/>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n == 2) ? 1 : 2);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "לא ניתן ליצור את הפרויקט"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "לא ניתן ליצור את המשימה"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "יצירה"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "צור %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "צור פרוייקט & משימה"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "צור משימה בפרויקט חדש"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "צור משימה בפרויקט קיים"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "דוא\"ל כבר מחובר למשימה"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "חבר אימייל למשימה"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "רשום את המייל על המשימה"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "לא נמצא פרוייקט"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "פרויקט לא קיים"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "לא נמצא פרוייקט"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "לא נמצאו משימות עבור איש קשר זה."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "או"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "בחר פרויקט ליצירת משימה "
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "שם הפרויקט"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "שמור איש קשר כדי ליצור משימות חדשות."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "שמור את איש הקשר כדי ליצור משימות חדשות."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "חיפוש"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "חפש פרויקטים..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "חפש פרויקט"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "משימה"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "משימה עבור %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "משימה: הבור לטופס במצב עריכה"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "משימות (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "משימות (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "איש הקשר צריך להיות מגדר כדי ליצור הזדמנות."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "נדרש להזין שם פרוייקט"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"לא קיים פרויקט במסד הנתוונים. יש לפנות למנהל הפרויקט כדי ליצור פרויקט ."
+207
View File
@@ -0,0 +1,207 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Martin Trigaux, 2024
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2025-11-18 13:13+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Hindi <https://translate.odoo.com/projects/odoo-18/"
"project_mail_plugin/hi/>\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "बनाएँ"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "सर्च"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "टास्क"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+211
View File
@@ -0,0 +1,211 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Bole <bole@dajmi5.com>, 2024
# Martin Trigaux, 2024
# Đurđica Žarković <durdica.zarkovic@storm.hr>, 2024
# Vladimir Vrgoč, 2024
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2025
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2025-11-18 13:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Croatian <https://translate.odoo.com/projects/odoo-18/"
"project_mail_plugin/hr/>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Kreiraj"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Kreiraj %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Kreiraj Projekt i Zadatak"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "ILI"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Naziv projekta"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Traži"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Zadatak"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+207
View File
@@ -0,0 +1,207 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Tamás Németh <ntomasz81@gmail.com>, 2024
# gezza <geza.nagy@oregional.hu>, 2024
# Tamás Dombos, 2024
# krnkris, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: krnkris, 2025\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Létrehozás"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Létrehoz %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Projekt és feladat létrehozása"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "VAGY"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Projekt neve"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Keresés"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Feladat"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+207
View File
@@ -0,0 +1,207 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
# Abe Manyo, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Abe Manyo, 2025\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Tidak dapat membuat projec"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Tidak dapat membuat task"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Buat"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Buat %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Buat Project & Task"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Buat Task di Project baru"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Buat Task di Project yang tersedia"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "Email sudah di log on pada task"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Log Email Menjadi Task"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Log email ke task"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Tidak ada Project yang Ditemukan"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Tidak ada projec"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Tidak ada project yang ditemukan."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Tidak ada task yang ditemukan untuk kontak ini."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "ATAU"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Pilih Project untuk membuat Task"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Nama Project"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Simpan Kontak untuk membuat Task baru."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Simpan kontak untuk membuat task baru."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Pencarian"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Cari Project..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Cari Projec"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Kegiatan"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Task untuk %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Task: redirect ke formulir di mode edit"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Task (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Task (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Harus ada Kontak untuk membuat Task."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Nama project diperlukan"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Tidak ada project di database Anda. Mohon minta manajer project Anda untuk "
"membuat project."
+207
View File
@@ -0,0 +1,207 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
# Sergio Zanchetta <primes2h@gmail.com>, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2025\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Impossibile creare il progetto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Impossibile creare il lavoro"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Crea"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Crea %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Crea progetto e lavoro"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Crea un'attività in un nuovo progetto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Crea un'attività in un progetto esistente"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "Email già registrate sul compito"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Registra l'e-mail sul ticket"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Registra l'e-mail sul compito"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Nessun progetto trovato"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Nessun progetto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Nessun progetto trovato."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Nessun lavoro trovato per questo contatto."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "O"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Scegli un progetto per creare un'attività"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Nome progetto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Salva Contatto per creare nuovi Compiti."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Salva il contatto per creare nuovi compiti."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Ricerca"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Cercare progetti..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Cerca un progetto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Lavoro"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Lavoro per %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Compito: reindirizzare al modulo in modalità di modifica"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Lavori (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Lavori (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Per creare un lavoro deve esistere il contatto."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Nome del progetto obbligatorio"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Non sono presenti progetti nel tuo database. Chiedi al tuo project manager "
"di crearne uno."
+204
View File
@@ -0,0 +1,204 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "プロジェクトを作成できませんでした"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "タスクを作成できませんでした"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "作成"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr " %(name)sを作成"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "プロジェクト & タスク作成"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "新規プロジェクト内にタスク作成"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "既存プロジェクト内にタスク作成"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "タスクにすでに記録されているEメール"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "タスクにEメールを記録"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "タスクでEメールを記録"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "プロジェクトが見つかりません"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "プロジェクトなし"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "プロジェクトが見つかりません"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "この連絡先用のタスクが見つかりません"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "又は"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "プロジェクトを選んでタスクを作成します"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "プロジェクト名"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "連絡先を保存して新規タスクを作成します"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "連絡先を保存して新規タスクを作成します"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "検索"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "プロジェクトを検索"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "プロジェクトを検索"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "タスク"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr " %s用のタスク"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "タスク: 編集モードのフォームからリダイレクト"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "タスク (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "タスク (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "タスクを作成するには連絡先が存在する必要があります。"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "プロジェクト名が必要です。"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr "データベースにプロジェクトがありません。プロジェクト管理者にプロジェクトの作成を依頼して下さい。"
+205
View File
@@ -0,0 +1,205 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Odoo Translation Bot <c3p@odoo.com>, 2025.
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2025-11-25 09:51+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Kabyle <https://translate.odoo.com/projects/odoo-18/"
"project_mail_plugin/kab/>\n"
"Language: kab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Rnu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Isem n usenfaṛ"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Nadi"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Tawuri"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+204
View File
@@ -0,0 +1,204 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "프로젝트를 생성할 수 없습니다"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "작업을 생성할 수 없습니다"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "작성"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "%(name)s 생성"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "프로젝트 및 작업 생성"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "신규 프로젝트에 작업 만들기"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "기존 프로젝트에 작업 만들기"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "작업에 이미 로그인되어 있는 이메일입니다"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "작업에 이메일 기록"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "작업에 이메일 기록"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "프로젝트를 찾을 수 없습니다"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "프로젝트 없음"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "프로젝트를 찾을 수 없습니다."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "이 계약에 대한 작업을 찾을 수 없습니다."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "또는"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "프로젝트를 선택하여 작업 생성"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "프로젝트 이름"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "새 작업을 생성하려면 연락처를 저장하십시오."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "새 작업을 생성하려면 연락처를 저장하십시오."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "검색"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "프로젝트 검색..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "프로젝트 검색"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "작업"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "%s에 대한 작업"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "작업: 편집 모드에서 양식으로 이동"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "작업 (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "작업 (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "작업을 생성하려면 연락처가 있어야 합니다."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "프로젝트명은 필수 입력 사항입니다"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr "데이터베이스에 프로젝트가 존재하지 않습니다. 프로젝트 관리자에게 새 프로젝트를 생성하도록 요청하세요."
+204
View File
@@ -0,0 +1,204 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Raz Omer Hussein, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Raz Omer Hussein, 2025\n"
"Language-Team: Kurdish (https://app.transifex.com/odoo/teams/41243/ku/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: ku\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "دروستکردن"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+204
View File
@@ -0,0 +1,204 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Martin Trigaux, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Martin Trigaux, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Sukurti"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Projekto pavadinimas"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Paieška"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Užduotis"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Martin Trigaux, 2024
# Arnis Putniņš <arnis@allegro.lv>, 2024
# ievaputnina <ievai.putninai@gmail.com>, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2025\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Izveidot"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Izveidot %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Projekta Nosaukums"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Meklēt"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Uzdevums"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+205
View File
@@ -0,0 +1,205 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Martin Trigaux, 2024
# Otgonbayar.A <gobi.mn@gmail.com>, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Otgonbayar.A <gobi.mn@gmail.com>, 2025\n"
"Language-Team: Mongolian (https://app.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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Үүсгэх"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "%(name)s үүсгэх"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Төслийн нэр"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Хайх"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Даалгавар"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+204
View File
@@ -0,0 +1,204 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Oakarmin Iron <oakarminiron@gmail.com>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2025-10-28 19:44+0000\n"
"Last-Translator: Oakarmin Iron <oakarminiron@gmail.com>\n"
"Language-Team: Burmese <https://translate.odoo.com/projects/odoo-18/"
"project_mail_plugin/my/>\n"
"Language: my\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "အသစ်ဖန်တီး"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "သို့မဟုတ်"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "ရှာဖွေ"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "တာဝန်"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Martin Trigaux, 2024
# Rune Restad, 2024
# Jorunn D. Newth, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Jorunn D. Newth, 2025\n"
"Language-Team: Norwegian Bokmål (https://app.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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Opprett"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Opprett %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "Eller"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Prosjektnavn"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Søk"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Oppgave"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Kan het project niet maken"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Kan de taak niet maken"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Aanmaken"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr " %(name)s aanmaken"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Project en taak maken"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Een taak maken in een nieuw project"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Een taak maken in een bestaand project"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "E-mail al aangemeld bij de taak"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "E-mail aanmelden bij taak"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "De e-mail aanmelden bij de taak"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Geen project gevonden"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Geen project"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Geen project gevonden."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Geen taken gevonden voor deze contactpersoon."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "OF"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Kies een project om een taak te maken"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Projectnaam"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Contactpersoon opslaan om nieuwe taken aan te maken."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Contactpersoon opslaan om nieuwe taken te maken."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Zoeken"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Zoek projecten..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Zoek een project"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Taak"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Taak voor %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Taak: doorsturen naar formulier in bewerkingsmodus"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Taken (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Taken (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "De contactpersoon moet bestaan om de taak te kunnen maken."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "De projectnaam is vereist"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Er zijn geen projecten in je database. Vraag je projectmanager om er een aan"
" te maken."
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Nie można utworzyć projektu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Nie można utworzyć zadania"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Utwórz"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Utwórz %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Utwórz projekt i zadanie"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Utwórz zadanie w nowym projekcie"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Utwórz zadanie w istniejącym projekcie"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "Email już jest zapisany na zgłoszeniu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Zapisz email na zgłoszeniu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Zapisz email na zgłoszeniu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Nie znaleziono żadnego projektu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Brak projektu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Nie znaleziono żadnego projektu."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Nie znaleziono zadań dla tego kontaktu."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "LUB"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Wybierz projekt, aby utworzyć zadanie"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Nazwa projektu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Zapisz kontakt, aby utworzyć nowe zadania."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Zapisz kontakt, aby utworzyć nowe zadania."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Szukaj"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Wyszukaj projekty..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Szukaj projektu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Zadanie"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Zadanie dla %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Zadanie: przekierowanie do formularza w trybie edycji"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Zadania (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Zadania (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Kontakt musi istnieć aby utworzyć zadanie."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Nazwa projektu jest wymagana"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"W bazie danych nie ma żadnego projektu. Poproś twojego kierownika projektu o"
" jego utworzenie."
@@ -0,0 +1,200 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 08:39+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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+210
View File
@@ -0,0 +1,210 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2025
# Wil Odoo, 2025
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2025-11-18 13:13+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-18/"
"project_mail_plugin/pt/>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : ((n != 0 && n % "
"1000000 == 0) ? 1 : 2);\n"
"X-Generator: Weblate 5.12.2\n"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Não foi possível criar o projeto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Não foi possível criar a tarefa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Criar"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Criar %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Criar projeto e tarefa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Criar uma tarefa em um novo projeto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Criar uma tarefa em um projeto existente"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "E-mail já registrado na tarefa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Registrar e-mail na tarefa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Registrar o e-mail na tarefa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Nenhum projeto encontrado"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Não há projetos"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Nenhum projeto encontrado."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Não foram encontradas tarefas para esse contato."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "OU"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Escolha um projeto para criar uma tarefa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Nome do Projeto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Salvar contato para criar novas tarefas."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Salve o contato para criar novas tarefas."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Pesquisar"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Pesquisar projetos…"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Pesquisar um projeto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Tarefa"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Tarefa para %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Tarefa: redirecionar para o formulário no modo de edição"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Tarefas (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Tarefas (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "O contato precisa existir para criar a tarefa."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "O nome do projeto é obrigatório"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Não há nenhum projeto em sua base de dados. Solicite ao gerente de projeto "
"que crie um."
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Não foi possível criar o projeto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Não foi possível criar a tarefa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Criar"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Criar %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Criar projeto e tarefa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Criar uma tarefa em um novo projeto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Criar uma tarefa em um projeto existente"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "E-mail já registrado na tarefa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Registrar e-mail na tarefa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Registrar o e-mail na tarefa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Nenhum projeto encontrado"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Não há projetos"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Nenhum projeto encontrado."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Não foram encontradas tarefas para esse contato."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "OU"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Escolha um projeto para criar uma tarefa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Nome do projeto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Salvar contato para criar novas tarefas."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Salve o contato para criar novas tarefas."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Pesquisar"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Pesquisar projetos…"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Pesquisar um projeto"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Tarefa"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Tarefa para %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Tarefa: redirecionar para o formulário no modo de edição"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Tarefas (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Tarefas (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "O contato precisa existir para criar a tarefa."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "O nome do projeto é obrigatório"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Não há nenhum projeto em sua base de dados. Solicite ao gerente de projeto "
"que crie um."
+207
View File
@@ -0,0 +1,207 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
# Larisa_nexterp, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Larisa_nexterp, 2025\n"
"Language-Team: Romanian (https://app.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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Nu s-a putut crea proiectul"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Nu s-a putut crea sarcina"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Creează"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Creează %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Creează proiect și sarcină"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Creează o sarcină într-un proiect nou"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Creează o sarcină într-un proiect existent"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "Emailul a fost deja înregistrat în sarcină"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Loghează emailul în sarcină"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Loghează emailul în sarcină"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Niciun proiect găsit"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Niciun proiect"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Niciun proiect găsit."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Nicio sarcină găsită pentru acest contact."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "SAU"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Alege un proiect pentru a crea o sarcină"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Nume proiect"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Salvează contactul pentru a crea noi sarcini."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Salvează contactul pentru a crea noi sarcini."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Căutare"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Caută proiecte..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Caută un proiect"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Sarcină"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Sarcină pentru %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Sarcină: redirecționează la formular în modul editare"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Sarcini (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Sarcini (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Contactul trebuie să existe pentru a crea o sarcină."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Numele proiectului este obligatoriu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Nu există proiecte în baza de date. Te rugăm să contactezi managerul de "
"proiect pentru a crea unul."
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Не удалось создать проект"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Не удалось создать задание"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Создать"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Создать %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Создание проекта и задачи"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Создание задачи в новом проекте"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Создание задачи в существующем проекте"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "Электронная почта уже зарегистрирована в задании"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Ввод электронной почты в задачу"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Зафиксируйте электронное письмо в задании"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Проекты не найдены!"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Нет проекта"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Проект не найден."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Для этого контакта не найдено ни одного задания."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "ИЛИ"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Выберите проект для создания задачи"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Название проекта"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Сохраните контакт, чтобы создать новую задачу."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Сохраните контакт для создания новых задач."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Поиск"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Поиск проектов..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Поиск проекта"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Задача"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Задание для %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Задача: перенаправить на форму в режиме редактирования"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Задачи (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Задачи (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Контакт должен существовать, чтобы создать задачу."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Название проекта обязательно"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"В вашей базе данных нет ни одного проекта. Пожалуйста, попросите вашего "
"менеджера проекта создать его."
+204
View File
@@ -0,0 +1,204 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Vytvoriť"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Názov projektu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Vyhľadávanie"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Požiadavka"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2025
# Aleš Pipan, 2025
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Aleš Pipan, 2025\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Projekta ni bilo mogoče ustvariti"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Naloge ni bilo mogoče ustvariti"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Ustvari"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Ustvari %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Ustvari projekt in nalogo"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Ustvarjanje naloge v novem projektu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Ustvarjanje naloge v obstoječem projektu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "E-pošta je že prijavljena v nalogo"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Prijava e-pošte v opravilo"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Zabeleži e-pošto v opravilu"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Ni najdenega projekta"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Ni projekta"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Ni najdenega projekta."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Za ta stik ni bilo najdenih opravil."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "ALI"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Izberite projekt za ustvarjanje naloge"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Naziv projekta"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Shrani stik, da ustvariš nova opravila."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Shranite stik, da ustvarite nova opravila."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Iskanje"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Iskanje projektov ..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Iskanje projekta"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Opravilo"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Naloga za %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Naloga: preusmeritev na obrazec v načinu urejanja"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Naloge (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Naloge (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Za ustvarjanje naloge mora stik obstajati."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Ime projekta je obvezno"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"V vaši bazi podatkov ni projektov. Prosite vodjo projekta, da ga ustvari."
+205
View File
@@ -0,0 +1,205 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2025-11-18 13:14+0000\n"
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
"Language-Team: Serbian (Latin script) <https://translate.odoo.com/projects/"
"odoo-18/project_mail_plugin/sr_Latn/>\n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.12.2\n"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Kreirajte"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "ILI"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Naziv projekta"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Pronađi"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Zadatak"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr ""
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr ""
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
+207
View File
@@ -0,0 +1,207 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Martin Trigaux, 2024
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
# Lasse L, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Lasse L, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Det gick inte att skapa projektet"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Det gick inte att skapa uppgiften"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Skapa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Skapa %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Skapa projekt och uppgift"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Skapa en uppgift i ett nytt projekt"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Skapa en uppgift i ett befintligt projekt"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "E-post som redan är inloggad på uppgiften"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Logga in e-post i uppgift"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Logga e-postmeddelandet på uppgiften"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Inget projekt hittat"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Inget projekt"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Inget projekt hittades."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Inga uppgifter hittades för denna kontakt."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "ELLER"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Välj ett projekt för att skapa en uppgift"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Projektnamn"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Spara kontakt för att skapa nya Tasks."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Spara kontakten för att skapa nya uppgifter."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Sök"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Sök projekt..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Sök ett projekt"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Aktivitet"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Uppgift för %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Uppgift: omdirigera till formulär i redigeringsläge"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Uppgifter (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Uppgifter (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Kontakten måste finnas för att skapa en uppgift."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Projektnamnet är obligatoriskt"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Det finns inga projekt i din databas. Be din projektledare att skapa ett."
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "ไม่สามารถสร้างโปรเจ็กต์ได้"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "ไม่สามารถสร้างงานได้"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "สร้าง"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "สร้าง %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "สร้างโปรเจ็กต์และงาน"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "สร้างงานในโปรเจ็กต์ใหม่"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "สร้างงานในโปรเจ็กต์ที่มีอยู่"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "อีเมลที่เข้าสู่ระบบงานแล้ว"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "เข้าสู่ระบบอีเมลเข้าไปในงาน"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "เข้าสู่ระบบอีเมลในงาน"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "ไม่พบโปรเจ็กต์"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "ไม่มีโปรเจ็กต์"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "ไม่พบโปรเจ็กต์"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "ไม่พบงานสำหรับผู้ติดต่อรายนี้"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "หรือ"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "เลือกโปรเจ็กต์เพื่อสร้างงาน"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "ชื่อโปรเจ็กต์"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "บันทึกผู้ติดต่อเพื่อสร้างงานใหม่"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "บันทึกผู้ติดต่อเพื่อสร้างงานใหม่"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "ค้นหา"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "ค้นหาโปรเจ็กต์..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "ค้นหาโปรเจ็กต์"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "งาน"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "งานสำหรับ %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "งาน: เปลี่ยนเส้นทางไปยังแบบฟอร์มในโหมดแก้ไข"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "งาน (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "งาน (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "จำเป็นต้องมีผู้ติดต่อเพื่อสร้างงาน"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "ต้องระบุชื่อโปรเจ็กต์"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"ไม่มีโปรเจ็กต์ในฐานข้อมูลของคุณ "
"โปรดขอให้ผู้จัดการโปรเจ็กต์ของคุณสร้างบัญชีขึ้นมา"
+209
View File
@@ -0,0 +1,209 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Murat Kaplan <muratk@projetgrup.com>, 2024
# Martin Trigaux, 2024
# Ediz Duman <neps1192@gmail.com>, 2024
# Tugay Hatıl <tugayh@projetgrup.com>, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Tugay Hatıl <tugayh@projetgrup.com>, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Proje oluşturulamadı"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Görev oluşturulamadı"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Oluştur"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "%(name)s Oluştur"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Proje ve Görev Oluştur"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Yeni bir Projede Görev Oluşturun"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Mevcut bir Projede Görev Oluşturma"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "E-posta zaten görevde oturum açmış"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "E-postayı Göreve Giriş Yap"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "E-postayı göreve kaydedin"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Proje Bulunamadı"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Proje yok"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Proje bulunamadı."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Bu kişi için görev bulunamadı."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "VEYA"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Görev oluşturmak için bir Proje seçin"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Proje Adı"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Yeni Görevler oluşturmak için Kişiyi Kaydet."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Yeni görevler oluşturmak için kişiyi kaydedin."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Arama"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Proje Ara..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Proje Ara"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Görev"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "%s için görev"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Görev: düzenleme modunda forma yönlendirme"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Görevler (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Görevler (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Görev oluşturmak için Kişinin var olması gerekir."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Proje adı gerekli"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Veritabanınızda proje yok. Lütfen proje yöneticinizden bir tane "
"oluşturmasını isteyin."
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Неможливо створити проект"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Неможливо створити завдання"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Створити"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Створити %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Створіть проект та завдання"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Створити завдання у новому проекті"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Створити завдання в існуючому проекті"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "Електронна пошта вже зареєстрована на завданні"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Додайте Email на завдання"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Додайте email на завдання"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Проекту не знайдено"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Немає проекту"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Не знайдено проекту."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Не знайдено завдань для цього контакту."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "OR"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Виберіть проект, щоб створити завдання"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Назва проекту"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Збережіть контакт, щоб створити нові завдання."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Збережіть контакт, щоб створити нові завдання."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Пошук"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Пошук проектів..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Пошук проекту"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Завдання"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Завдання для %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Завдання: перенаправити на форму в режимі редагування"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Завдання (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Завдання (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Контакт повинен існувати для створення завдання."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Необхідне ім'я проекту"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"У вашій базі даних немає жодного проекту. Попросіть менеджера проекту "
"створити його."
+206
View File
@@ -0,0 +1,206 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "Không thể tạo dự án"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "Không thể tạo nhiệm vụ"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "Tạo"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "Tạo %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "Tạo dự án & nhiệm vụ"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "Tạo nhiệm vụ trong dự án mới"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "Tạo nhiệm vụ trong dự án đã có"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "Email đã ghi nhận cho nhiệm vụ"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "Ghi nhận email vào nhiệm vụ"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "Ghi nhận email vào nhiệm vụ"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "Không tìm thấy dự án nào"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "Không có dự án"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "Không tìm thấy dự án"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "Không tìm thấy nhiệm vụ cho liên hệ này."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "HOẶC"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "Chọn một dự án hoặc tạo một nhiệm vụ"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "Tên dự án"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "Lưu liên hệ để tạo nhiệm vụ mới."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "Lưu liên hệ để tạo nhiệm vụ mới."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "Tìm kiếm"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "Tìm kiếm dự án..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "Tìm kiếm dự án"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "Nhiệm vụ"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "Nhiệm vụ cho %s"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "Nhiệm vụ: chuyển hướng tới biểu mẫu trong chế độ chỉnh sửa"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "Nhiệm vụ (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "Nhiệm vụ (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "Liên hệ cần tồn tại để tạo Nhiệm vụ."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "Yêu cầu có tên dự án"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr ""
"Không có dự án nào trong cơ sở dữ liệu của bạn. Vui lòng báo quản lý dự án "
"tạo mới."
+204
View File
@@ -0,0 +1,204 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "无法创建该项目"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "无法创建任务"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "创建"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "创建%(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "创建项目"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "在新项目中创建一个任务"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "在现有项目中创建任务"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "已经登录在任务上的电子邮件"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "将电子邮件记录到任务中"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "记录任务中的电子邮件"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "未找到项目"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "没有项目"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "沒有找到项目。"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "没有发现该联系人的任务。"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "或"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "选择一个项目来创建一个任务"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "项目名称"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "直接从任务创建新报价."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "直接从任务创建新报价."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "搜索"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "搜索项目..."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "搜索一个项目"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "任务"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "针对%s的任务"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "任务:重定向到编辑模式下的表单"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "任务 (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "任务 (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "需要存在联系人才能创建任务."
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "项目名称是必需的"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr "您的数据库中没有项目。请让您的项目经理创建一个."
+204
View File
@@ -0,0 +1,204 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_mail_plugin
#
# Translators:
# Wil Odoo, 2024
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-25 08:39+0000\n"
"PO-Revision-Date: 2024-09-25 09:41+0000\n"
"Last-Translator: Wil Odoo, 2024\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: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the project"
msgstr "未能建立專案"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Could not create the task"
msgstr "未能建立任務"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create"
msgstr "建立"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Create %(name)s"
msgstr "建立 %(name)s"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create Project & Task"
msgstr "建立專案及任務"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in a new Project"
msgstr "在新專案中建立任務"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Create a Task in an existing Project"
msgstr "在現有專案中建立任務"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Email already logged on the task"
msgstr "電郵已經記錄至任務內"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Log Email Into Task"
msgstr "記錄電郵至任務"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Log the email on the task"
msgstr "記錄電子郵件至任務內"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No Project Found"
msgstr "找不到專案"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No project"
msgstr "沒有專案"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "No project found."
msgstr "找不到專案。"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "No tasks found for this contact."
msgstr "找不到此聯絡人相關任務。"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "OR"
msgstr "或"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Pick a Project to create a Task"
msgstr "選擇一個專案以建立任務"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Project Name"
msgstr "專案名稱"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Save Contact to create new Tasks."
msgstr "儲存聯絡人以建立新任務。"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Save the contact to create new tasks."
msgstr "儲存該聯絡人以建立新任務。"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search"
msgstr "搜尋"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Search Projects..."
msgstr "搜尋專案⋯"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Search a Project"
msgstr "搜尋一個專案"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Task"
msgstr "任務"
#. module: project_mail_plugin
#. odoo-python
#: code:addons/project_mail_plugin/controllers/project_client.py:0
msgid "Task for %s"
msgstr "%s 相關任務"
#. module: project_mail_plugin
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
msgid "Task: redirect to form in edit mode"
msgstr "任務:編輯模式下重新導向至表單"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "Tasks (%(count)s)"
msgstr "任務 (%(count)s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "Tasks (%s)"
msgstr "任務 (%s)"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
msgid "The Contact needs to exist to create Task."
msgstr "須有聯絡人存在,才可建立任務。"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid "The project name is required"
msgstr "專案名稱為必填"
#. module: project_mail_plugin
#. odoo-javascript
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
msgid ""
"There are no project in your database. Please ask your project manager to "
"create one."
msgstr "你的資料庫沒有專案。你可要求你的專案項目經理建立一個。"
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Terms to translate for the Gmail plugin
-->
<ressources>
<string>Task</string>
<string>Could not create the project</string>
<string>Could not create the task</string>
<string>Search</string>
<string>Search a Project</string>
<string>Create a Task in a new Project</string>
<string>Create a Task in an existing Project</string>
<string>Project Name</string>
<string>Create Project &amp; Task</string>
<string>Email already logged on the task</string>
<string>Tasks (%s)</string>
<string>Create</string>
<string>OR</string>
<string>Log the email on the task</string>
<string>Save the contact to create new tasks.</string>
<string>The project name is required</string>
<string>No project found.</string>
<string>The Contact needs to exist to create Task.</string>
<string>No project</string>
<string>There are no project in your database. Please ask your project manager to create one.</string>
</ressources>
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<!--Terms to translate for the outlook plugin -->
<ressources>
<string>Task</string>
<string>Save Contact to create new Tasks.</string>
<string>No tasks found for this contact.</string>
<string>Tasks (%(count)s)</string>
<string>Pick a Project to create a Task</string>
<string>Create %(name)s</string>
<string>Search Projects...</string>
<string>Log Email Into Task</string>
<string>The Contact needs to exist to create Task.</string>
<string>No Project Found</string>
<string>No project</string>
</ressources>
@@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import test_controller
@@ -0,0 +1,51 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import json
from unittest.mock import patch
from odoo.addons.mail_plugin.tests.common import TestMailPluginControllerCommon
class TestMailPluginProjectController(TestMailPluginControllerCommon):
def test_user_lang(self):
"""Verify that we translate field in the user language."""
self.env["res.lang"]._activate_lang("fr_BE")
self.env["res.lang"]._activate_lang("es_ES")
project = self.env["project.project"].create({"name": "Test Mail Plugin"})
project.with_context(lang="fr_BE").name = "[FR] Test Mail Plugin"
self.assertEqual(project.name, "Test Mail Plugin")
for lang, expected in (
(False, "Test Mail Plugin"),
("en_US", "Test Mail Plugin"),
("fr_BE", "[FR] Test Mail Plugin"),
("es_ES", "Test Mail Plugin"), # no translation
):
self.user_test.lang = lang
data = {
"id": 0,
"jsonrpc": "2.0",
"method": "call",
"params": {"search_term": "Test Mail Plugin"},
}
with patch.object(
type(self.env["res.users.apikeys"]),
"_check_credentials",
new=lambda *args, **kwargs: self.user_test.id,
):
result = self.url_open(
"/mail_plugin/project/search",
data=json.dumps(data).encode(),
headers={
"Content-Type": "application/json",
"Authorization": "dummy",
},
)
result = result.json().get("result")
self.assertEqual(len(result), 1)
self.assertEqual(result[0]["project_id"], project.id)
self.assertEqual(result[0]["name"], expected)
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- action used by the mail plugins in order to redirect the user to the newly created task in edit mode-->
<record id="project_task_action_form_edit" model="ir.actions.act_window">
<field name="name">Task: redirect to form in edit mode</field>
<field name="res_model">project.task</field>
<field name="view_mode">form</field>
<field name="view_id" ref="project.view_task_form2"/>
</record>
</odoo>