mirror of
https://github.com/bringout/oca-ocb-project.git
synced 2026-04-19 12:02:01 +02:00
19.0 vanilla
This commit is contained in:
parent
a2f74aefd8
commit
4a4d12c333
844 changed files with 212348 additions and 270090 deletions
|
|
@ -18,5 +18,6 @@
|
|||
],
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,9 +23,9 @@ class MailPluginController(mail_plugin.MailPluginController):
|
|||
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)
|
||||
contact_values = super()._get_contact_data(partner)
|
||||
|
||||
if not request.env['project.task'].check_access_rights('create', raise_exception=False):
|
||||
if not request.env['project.task'].has_access('create'):
|
||||
return contact_values
|
||||
|
||||
if not partner:
|
||||
|
|
@ -34,7 +34,7 @@ class MailPluginController(mail_plugin.MailPluginController):
|
|||
partner_tasks = request.env['project.task'].search(
|
||||
[('partner_id', '=', partner.id)], offset=0, limit=5)
|
||||
|
||||
accessible_projects = partner_tasks.project_id._filter_access_rules('read').mapped("id")
|
||||
accessible_projects = partner_tasks.project_id._filtered_access('read').ids
|
||||
|
||||
tasks_values = [
|
||||
{
|
||||
|
|
@ -44,19 +44,18 @@ class MailPluginController(mail_plugin.MailPluginController):
|
|||
} 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'].check_access_rights(
|
||||
'create', raise_exception=False)
|
||||
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'].check_access_rights('create', raise_exception=False):
|
||||
models_whitelist = super()._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'].check_access_rights('create', raise_exception=False):
|
||||
modules_whitelist = super()._translation_modules_whitelist()
|
||||
if not request.env['project.task'].has_access('create'):
|
||||
return modules_whitelist
|
||||
return modules_whitelist + ['project_mail_plugin']
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ from odoo.http import request
|
|||
|
||||
|
||||
class ProjectClient(http.Controller):
|
||||
@http.route('/mail_plugin/project/search', type='json', auth='outlook', cors="*")
|
||||
@http.route('/mail_plugin/project/search', type='jsonrpc', auth='outlook', cors="*")
|
||||
def projects_search(self, search_term, limit=5):
|
||||
"""
|
||||
Used in the plugin side when searching for projects.
|
||||
|
|
@ -22,7 +22,7 @@ class ProjectClient(http.Controller):
|
|||
for project in projects.sudo()
|
||||
]
|
||||
|
||||
@http.route('/mail_plugin/task/create', type='json', auth='outlook', cors="*")
|
||||
@http.route('/mail_plugin/task/create', type='jsonrpc', 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:
|
||||
|
|
@ -44,7 +44,7 @@ class ProjectClient(http.Controller):
|
|||
|
||||
return {'task_id': record.id, 'name': record.name}
|
||||
|
||||
@http.route('/mail_plugin/project/create', type='json', auth='outlook', cors="*")
|
||||
@http.route('/mail_plugin/project/create', type='jsonrpc', auth='outlook', cors="*")
|
||||
def project_create(self, name):
|
||||
record = request.env['project.project'].create({'name': name})
|
||||
return {"project_id": record.id, "name": record.name}
|
||||
|
|
|
|||
|
|
@ -1,229 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
|
|
@ -1,100 +1,88 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2022
|
||||
# Niyas Raphy, 2022
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2022\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 13:46+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/ar/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\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
|
||||
#, python-format
|
||||
msgid "Could not create the project"
|
||||
msgstr "تعذر إنشاء المشروع "
|
||||
msgstr "تعذر إنشاء المشروع"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the task"
|
||||
msgstr "تعذر إنشاء المهمة "
|
||||
msgstr "تعذر إنشاء المهمة"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "إنشاء"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr "إنشاء %(name)s "
|
||||
msgstr "إنشاء %(name)s"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "إنشاء مشروع ومهمة "
|
||||
msgstr "إنشاء مشروع ومهمة"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in a new Project"
|
||||
msgstr "إنشاء مهمة في مشروع جديد "
|
||||
msgstr "إنشاء مهمة في مشروع جديد"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in an existing Project"
|
||||
msgstr "إنشاء مهمة في مشروع موجود بالفعل "
|
||||
msgstr "إنشاء مهمة في مشروع موجود بالفعل"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the task"
|
||||
msgstr "البريد الإلكتروني مسجل في المهمة بالفعل "
|
||||
msgstr "البريد الإلكتروني مسجل في المهمة بالفعل"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Task"
|
||||
msgstr "تسجيل البريد الإلكتروني في المهمة "
|
||||
msgstr "تسجيل البريد الإلكتروني في المهمة"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the task"
|
||||
msgstr "تسجيل البريد الإلكتروني في المهمة "
|
||||
msgstr "تسجيل البريد الإلكتروني في المهمة"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "لم يتم العثور على مشروع"
|
||||
|
||||
|
|
@ -102,135 +90,116 @@ msgstr "لم يتم العثور على مشروع"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr "لا يوجد مشروع "
|
||||
msgstr "لا يوجد مشروع"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "لم يتم العثور على مشروع. "
|
||||
msgstr "لم يتم العثور على مشروع."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No tasks found for this contact."
|
||||
msgstr "لم يتم العثور على مهام لجهة الاتصال هذه. "
|
||||
msgstr "لم يتم العثور على مهام لجهة الاتصال هذه."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "أو "
|
||||
msgstr "أو"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Pick a Project to create a Task"
|
||||
msgstr "اختر مشروعاً لإنشاء مهمة "
|
||||
msgstr "اختر مشروعاً لإنشاء مهمة"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "اسم المشروع"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Tasks."
|
||||
msgstr "حفظ جهة الاتصال لإنشاء مهام جديدة. "
|
||||
msgstr "حفظ جهة الاتصال لإنشاء مهام جديدة."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Save the contact to create new tasks."
|
||||
msgstr "حفظ جهة الاتصال لإنشاء مهام جديدة. "
|
||||
msgstr "حفظ جهة الاتصال لإنشاء مهام جديدة."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "بحث"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "البحث في المشاريع... "
|
||||
msgstr "البحث في المشاريع..."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "البحث عن مشروع "
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "المهمة"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "مهمة لـ %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 "المهمة: إعادة التوجيه في وضع التحرير "
|
||||
msgstr "المهمة: إعادة التوجيه في وضع التحرير"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr "المهام (%(count)s) "
|
||||
msgstr "المهام (%(count)s)"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "المهام (%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
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Task."
|
||||
msgstr "يجب أن تكون جهة الاتصال موجودة حتى تتمكن من إنشاء مهمة. "
|
||||
msgstr "يجب أن تكون جهة الاتصال موجودة حتى تتمكن من إنشاء مهمة."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "The project name is required"
|
||||
msgstr "اسم المشروع مطلوب "
|
||||
msgstr "اسم المشروع مطلوب"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
"لا توجد مشاريع في قاعدة بياناتك. رجاءً اطلب من مدير مشروعك إنشاء واحد. "
|
||||
msgstr "لا توجد مشاريع في قاعدة بياناتك. رجاءً اطلب من مدير مشروعك إنشاء واحد."
|
||||
|
|
|
|||
|
|
@ -1,100 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
# Nurlan Farajov <coolinuxoid@gmail.com>, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Nurlan Farajov <coolinuxoid@gmail.com>, 2025\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Yaradın"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr "%(name)s yarat"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -102,77 +86,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "və yaxud"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Axtarın"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -180,14 +153,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Tapşırıq"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -199,14 +170,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -214,21 +183,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,233 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2025\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Стварыць"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
|
|
@ -1,100 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Albena Mincheva <albena_vicheva@abv.bg>, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Създай"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -102,77 +86,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Име на проект"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Потърсете"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -180,14 +153,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Задача"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -199,14 +170,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -214,21 +183,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,234 +1,203 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:37+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Could not create the project"
|
||||
msgstr "Ne mogu kreirati projekat"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Could not create the task"
|
||||
msgstr "Ne mogu kreirati zadatak"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Create"
|
||||
msgstr "Kreiraj"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "Create %(name)s"
|
||||
msgstr "Kreiraj %(name)s"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Create Project & Task"
|
||||
msgstr "Kreiraj Projekt i Zadatak"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Create a Task in a new Project"
|
||||
msgstr "Kreiraj zadatak u novom projektu"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Create a Task in an existing Project"
|
||||
msgstr "Kreiraj zadatak u postojećem projektu"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Email already logged on the task"
|
||||
msgstr "E-mail već evidentiran na zadatku"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "Log Email Into Task"
|
||||
msgstr "Evidentiraj e-mail u zadatak"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Log the email on the task"
|
||||
msgstr "Evidentiraj e-mail na zadatak"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "No Project Found"
|
||||
msgstr "Projekat nije pronađen"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: 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 "Bez projekta"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "No project found."
|
||||
msgstr "Projekat nije pronađen."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "No tasks found for this contact."
|
||||
msgstr "Nema zadataka za ovaj kontakt."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "OR"
|
||||
msgstr "ILI"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "Pick a Project to create a Task"
|
||||
msgstr "Odaberite projekat za kreiranje zadatka"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Project Name"
|
||||
msgstr "Naziv projekta"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "Save Contact to create new Tasks."
|
||||
msgstr "Sačuvajte kontakt da kreirate nove zadatke."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Save the contact to create new tasks."
|
||||
msgstr "Sačuvajte kontakt da kreirate nove zadatke."
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Search"
|
||||
msgstr "Traži"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "Search Projects..."
|
||||
msgstr "Pretragajte projekte..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Search a Project"
|
||||
msgstr "Pretragajte projekat"
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: 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"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
msgid "Task for %s"
|
||||
msgstr "Zadatak za %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 "Zadatak: preusmeri na formu u režimu uređivanja"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr "Zadaci (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Zadaci (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: 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 mora postojati da bi se kreirao zadatak."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "The project name is required"
|
||||
msgstr "Ime projekta je obavezno"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: 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 ""
|
||||
"Nema projekata u vašoj bazi podataka. Molimo pitajte vašeg menadžera "
|
||||
"projekta da kreira jedan."
|
||||
|
|
|
|||
|
|
@ -1,103 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# CristianCruzParra, 2022
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# marcescu, 2022
|
||||
# Ivan Espinola, 2022
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ivan Espinola, 2022\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:48+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/ca/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Crear"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "No s'ha trobat cap projecte"
|
||||
|
||||
|
|
@ -105,77 +89,66 @@ msgstr "No s'ha trobat cap projecte"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "OR"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Cercar"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Cerca un projecte"
|
||||
|
||||
|
|
@ -183,14 +156,12 @@ msgstr "Cerca un projecte"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Tasca"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Tasca per %s"
|
||||
|
||||
|
|
@ -202,14 +173,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Tasques (%s)"
|
||||
|
||||
|
|
@ -217,21 +186,18 @@ msgstr "Tasques (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,101 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# Jakub Smolka, 2024
|
||||
# Tereza Mokrá, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:19+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/cs/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Vytvořit"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Nebyl nalezen žádný projekt"
|
||||
|
||||
|
|
@ -103,77 +89,66 @@ msgstr "Nebyl nalezen žádný projekt"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "NEBO"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Hledání"
|
||||
msgstr "Vyhledávání"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -181,14 +156,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Úloha"
|
||||
msgstr "Úkol"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -200,14 +173,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -215,21 +186,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,101 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2023
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:11+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/da/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Opret"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -103,77 +89,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "ELLER"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Projektnavn"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Søg"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -181,14 +156,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Opgave"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -200,14 +173,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Opgaver (%s)"
|
||||
|
||||
|
|
@ -215,21 +186,18 @@ msgstr "Opgaver (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,99 +1,88 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Larissa Manderfeld, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Larissa Manderfeld (lman)" <lman@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-01-23 07:38+0000\n"
|
||||
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
|
||||
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/de/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Erstellen"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "Projekt und Aufgabe erstellen"
|
||||
msgstr "Projekt & Aufgabe erstellen"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Kein Projekt gefunden"
|
||||
|
||||
|
|
@ -101,77 +90,66 @@ msgstr "Kein Projekt gefunden"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "ODER"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Projektname"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Tasks."
|
||||
msgstr "Kontakt speichern, um neue Aufgabe zu erstellen. "
|
||||
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
|
||||
#, python-format
|
||||
msgid "Save the contact to create new tasks."
|
||||
msgstr "Kontakt speichern, um neue Aufgaben zu erstellen. "
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Suchen"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Nach einem Projekt suchen"
|
||||
|
||||
|
|
@ -179,14 +157,12 @@ msgstr "Nach einem Projekt suchen"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Aufgabe"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Aufgabe für %s"
|
||||
|
||||
|
|
@ -198,14 +174,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Aufgaben (%s)"
|
||||
|
||||
|
|
@ -213,21 +187,18 @@ msgstr "Aufgaben (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -0,0 +1,204 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-24 19:24+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/el/>\n"
|
||||
"Language: el\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 ""
|
||||
|
|
@ -1,101 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# sesn-odoo, 2022
|
||||
# Michael Epstein, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:30+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/es/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Crear"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "No se encontraron proyectos"
|
||||
|
||||
|
|
@ -103,77 +89,66 @@ msgstr "No se encontraron proyectos"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "O"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Buscar un proyecto"
|
||||
|
||||
|
|
@ -181,14 +156,12 @@ msgstr "Buscar un proyecto"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Tarea"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Tarea para %s"
|
||||
|
||||
|
|
@ -200,14 +173,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Tareas (%s)"
|
||||
|
||||
|
|
@ -215,24 +186,21 @@ msgstr "Tareas (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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."
|
||||
"No hay proyectos en su base de datos. Pida a su gerente de proyecto que cree "
|
||||
"uno."
|
||||
|
|
|
|||
|
|
@ -1,99 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2022
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Braulio D. López Vázquez <bdl@odoo.com>, 2022\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.transifex.com/odoo/teams/41243/es_MX/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 07:45+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/project_mail_plugin/es_419/>\n"
|
||||
"Language: es_419\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Crear"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "No se encontró ningún proyecto"
|
||||
|
||||
|
|
@ -101,77 +89,66 @@ msgstr "No se encontró ningún proyecto"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "OR"
|
||||
msgstr "O"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Búsqueda"
|
||||
msgstr "Buscar"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Buscar un proyecto"
|
||||
|
||||
|
|
@ -179,14 +156,12 @@ msgstr "Buscar un proyecto"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Tarea"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Tarea para %s"
|
||||
|
||||
|
|
@ -198,14 +173,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Tareas (%s)"
|
||||
|
||||
|
|
@ -213,24 +186,21 @@ msgstr "Tareas (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "The project name is required"
|
||||
msgstr "El nombre del proyecto es obligatorio"
|
||||
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
|
||||
#, python-format
|
||||
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."
|
||||
"No hay proyectos en su base de datos. Pida a su gerente de proyecto que cree "
|
||||
"uno."
|
||||
|
|
@ -1,101 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Anna, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Kristina Pešehodko <kristina@avalah.ee>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Leaanika Randmets, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-22 11:08+0000\n"
|
||||
"Last-Translator: Kristina Pešehodko <kristina@avalah.ee>\n"
|
||||
"Language-Team: Estonian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/et/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Could not create the task"
|
||||
msgstr "Ei saanud piletit luua"
|
||||
msgstr "Ei saanud ülesannet luua"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Loo"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Projekti ei leitud"
|
||||
|
||||
|
|
@ -103,77 +89,66 @@ msgstr "Projekti ei leitud"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "või"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Otsi"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Otsi projekti"
|
||||
|
||||
|
|
@ -181,14 +156,12 @@ msgstr "Otsi projekti"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Ülesanne"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Ülesanne %s jaoks"
|
||||
|
||||
|
|
@ -200,14 +173,12 @@ msgstr "Ülesanne: suuna edasi muutmiseks"
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Ülesanded (%s)"
|
||||
|
||||
|
|
@ -215,24 +186,21 @@ msgstr "Ülesanded (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Task."
|
||||
msgstr "Kontakt peab olema loodud, et saaks luua ülesannet. "
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
"Teie andmebaasis pole ühtegi projekti. Paluge enda projektijuhil luua uus "
|
||||
"projekt. "
|
||||
"Teie andmebaasis pole ühtegi projekti. Palu oma projektijuhil luua uus "
|
||||
"projekt."
|
||||
|
|
|
|||
|
|
@ -1,237 +1,201 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Maziar Niaki <maziarmn@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the project"
|
||||
msgstr "نمیتوان پروژه را ایجاد کرد"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the task"
|
||||
msgstr "نمیتوان وظیفه را ایجاد کرد"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "ایجاد"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr "ایجاد %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "ایجاد پروژه و وظیفه"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in a new Project"
|
||||
msgstr "ایجاد یک تسک در پروژه جدید"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in an existing Project"
|
||||
msgstr "ایجاد یک وظیفه در یک پروژه موجود"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the task"
|
||||
msgstr "ایمیل قبلاً در وظیفه ثبت شده است"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Task"
|
||||
msgstr "ورود ایمیل به وظیفه"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the task"
|
||||
msgstr "روی وظیفه ایمیل را ثبت کنید"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "هیچ پروژهای یافت نشد"
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr "بدون پروژه"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "هیچ پروژهای یافت نشد."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No tasks found for this contact."
|
||||
msgstr "هیچ وظیفهای برای این مخاطب یافت نشد."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "یا"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Pick a Project to create a Task"
|
||||
msgstr "انتخاب یک پروژه برای ایجاد یک وظیفه"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "نام پروژه"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Tasks."
|
||||
msgstr "ذخیرهی تماس برای ایجاد وظایف جدید."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Save the contact to create new tasks."
|
||||
msgstr "ذخیره کردن تماس برای ایجاد وظایف جدید."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "جستجو"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "جستجوی پروژهها..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "<p>جستجوی یک پروژه</p>"
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "وظیفه"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "وظیفه برای %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 "وظیفه: ارجاع به فرم در حالت ویرایش"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr "وظایف (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "وظایف (%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
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Task."
|
||||
msgstr "تماس باید وجود داشته باشد تا کار ایجاد شود."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "The project name is required"
|
||||
msgstr "نام پروژه الزامی است"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
"در پایگاه داده شما هیچ پروژهای وجود ندارد. لطفاً از مدیر پروژه خود بخواهید "
|
||||
"یک پروژه ایجاد کند."
|
||||
|
|
|
|||
|
|
@ -1,100 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:37+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/fi/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Luo"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Projektia ei löytynyt"
|
||||
|
||||
|
|
@ -102,77 +89,66 @@ msgstr "Projektia ei löytynyt"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "Projektia ei löytynyt"
|
||||
msgstr "Projektia ei löytynyt."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "TAI"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Hae"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Etsi projektia"
|
||||
|
||||
|
|
@ -180,14 +156,12 @@ msgstr "Etsi projektia"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Tehtävä"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Tehtävä %s"
|
||||
|
||||
|
|
@ -199,14 +173,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Tehtävät (%s)"
|
||||
|
||||
|
|
@ -214,21 +186,18 @@ msgstr "Tehtävät (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,102 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Cécile Collart <cco@odoo.com>, 2022
|
||||
# Alexandra Jubert, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
# Manon Rondou, 2024
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Manon Rondou, 2024\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:22+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/fr/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Créer"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Aucun projet trouvé"
|
||||
|
||||
|
|
@ -104,77 +89,66 @@ msgstr "Aucun projet trouvé"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "OU"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Rechercher"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Rechercher un projet"
|
||||
|
||||
|
|
@ -182,14 +156,12 @@ msgstr "Rechercher un projet"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Tâche"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Tâche pour %s"
|
||||
|
||||
|
|
@ -201,14 +173,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Tâches (%s)"
|
||||
|
||||
|
|
@ -216,24 +186,21 @@ msgstr "Tâches (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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. "
|
||||
"chef de projet d'en créer un."
|
||||
|
|
|
|||
|
|
@ -1,233 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Create"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
|
|
@ -1,237 +1,201 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# Yoram Lavi, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Yoram Lavi, 2025\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the project"
|
||||
msgstr "לא ניתן ליצור את הפרויקט"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the task"
|
||||
msgstr "לא ניתן ליצור את המשימה"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "צור"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr "צור %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "צור פרוייקט & משימה"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in a new Project"
|
||||
msgstr "צור משימה ופרוייקט חדש"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in an existing Project"
|
||||
msgstr "צור משימה בפרויקט קיים"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the task"
|
||||
msgstr "דוא\"ל כבר מחובר למשימה"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Task"
|
||||
msgstr "חבר אימייל למשימה"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the task"
|
||||
msgstr "רשום את המייל על המשימה"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "לא נמצא פרויקט"
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr "פרויקט לא קיים"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "לא נמצא פרוייקט"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No tasks found for this contact."
|
||||
msgstr "לא נמצאו משימות עבור איש קשר זה."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "או"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Pick a Project to create a Task"
|
||||
msgstr "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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "שם הפרויקט"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Tasks."
|
||||
msgstr "שמור איש קשר כדי ליצור משימות חדשות."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Save the contact to create new tasks."
|
||||
msgstr "שמור את איש הקשר כדי ליצור משימות חדשות."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "חיפוש"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "חפש פרויקטים..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "חפש פרויקט"
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "משימה"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "משימה עבור %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 "משימה: הבור לטופס במצב עריכה"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr "משימות (%(count)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "משימות (%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
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Task."
|
||||
msgstr "איש הקשר צריך להיות מגדר כדי ליצור הזדמנות."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "The project name is required"
|
||||
msgstr "נדרש להזין שם פרוייקט"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
"לא קיים פרויקט במסד הנתוונים. יש לפנות למנהל הפרויקט כדי ליצור פרויקט ."
|
||||
|
|
|
|||
|
|
@ -1,98 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Hindi (https://app.transifex.com/odoo/teams/41243/hi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "बनाएँ"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -100,77 +86,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -178,14 +153,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -197,14 +170,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -212,21 +183,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,102 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Vladimir Vrgoč, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Đurđica Žarković <durdica.zarkovic@storm.hr>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Karolina Tonković <karolina.tonkovic@storm.hr>, 2025\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Kreiraj"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr "Kreiraj %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "Kreiraj Projekt i Zadatak"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -104,77 +86,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Naziv projekta"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Traži"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -182,14 +153,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Zadatak"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -201,14 +170,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -216,21 +183,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,101 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Dombos, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# gezza <geza.nagy@oregional.hu>, 2024
|
||||
# krnkris, 2025
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: krnkris, 2025\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-29 19:48+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/hu/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -103,77 +89,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "VAGY"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Keresés"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -181,14 +156,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Feladat"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -200,14 +173,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -215,21 +186,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,99 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2025
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2025\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 02:35+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/id/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Buat"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Email already logged on the task"
|
||||
msgstr "Email sudah log on pada 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Tidak ada Project yang Ditemukan"
|
||||
|
||||
|
|
@ -101,77 +89,66 @@ msgstr "Tidak ada Project yang Ditemukan"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "ATAU"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Pencarian"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Cari Projec"
|
||||
|
||||
|
|
@ -179,14 +156,12 @@ msgstr "Cari Projec"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Kegiatan"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Task untuk %s"
|
||||
|
||||
|
|
@ -198,14 +173,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Task (%s)"
|
||||
|
||||
|
|
@ -213,21 +186,18 @@ msgstr "Task (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Task."
|
||||
msgstr "Harus ada Kontak utnuk membuat 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,233 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Búa til"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
|
|
@ -1,100 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2024
|
||||
# Marianna Ciofani, 2024
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Marianna Ciofani, 2024\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:21+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/it/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Crea"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create a Task in a new Project"
|
||||
msgstr "Crea un lavoro in un nuovo progetto"
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create a Task in an existing Project"
|
||||
msgstr "Crea un lavoro in un progetto esistente"
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Nessun progetto trovato"
|
||||
|
||||
|
|
@ -102,77 +89,66 @@ msgstr "Nessun progetto trovato"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "O"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Pick a Project to create a Task"
|
||||
msgstr "Scegli un progetto per creare un lavoro"
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Ricerca"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Cerca un progetto"
|
||||
|
||||
|
|
@ -180,14 +156,12 @@ msgstr "Cerca un progetto"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Lavoro"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Lavoro per %s"
|
||||
|
||||
|
|
@ -199,14 +173,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Lavori (%s)"
|
||||
|
||||
|
|
@ -214,21 +186,18 @@ msgstr "Lavori (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,100 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Andy Yiu, 2023
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:16+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/ja/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "作成"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr " %(name)sを作成"
|
||||
msgstr "%(name)sを作成"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "プロジェクト & タスク作成"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "プロジェクトが見つかりません"
|
||||
|
||||
|
|
@ -102,77 +89,66 @@ msgstr "プロジェクトが見つかりません"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr "プロジェクトなし"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "プロジェクトが見つかりません"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "又は"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Pick a Project to create a Task"
|
||||
msgstr "プロジェクトを選んでタスクを作成"
|
||||
msgstr "プロジェクトを選んでタスクを作成します"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "プロジェクト名"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Tasks."
|
||||
msgstr "連絡先を保存して新規案件を作成します"
|
||||
msgstr "連絡先を保存して新規タスクを作成します"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "検索"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "プロジェクトを検索"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "プロジェクトを検索"
|
||||
|
||||
|
|
@ -180,16 +156,14 @@ msgstr "プロジェクトを検索"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "タスク"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr " %s用のタスク"
|
||||
msgstr "%s用のタスク"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
|
||||
|
|
@ -199,14 +173,12 @@ msgstr "タスク: 編集モードのフォームからリダイレクト"
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "タスク (%s)"
|
||||
|
||||
|
|
@ -214,22 +186,21 @@ msgstr "タスク (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr "データベースにプロジェクトがありません。プロジェクト管理者にプロジェクトの作成を依頼して下さい。"
|
||||
msgstr ""
|
||||
"データベースにプロジェクトがありません。プロジェクト管理者にプロジェクトの作"
|
||||
"成を依頼して下さい。"
|
||||
|
|
|
|||
|
|
@ -1,94 +1,85 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:37+0000\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -96,77 +87,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -174,14 +154,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -193,14 +171,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -208,21 +184,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
@ -1,99 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:48+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/ko/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "작성"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "프로젝트 및 작업 생성"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "프로젝트를 찾을 수 없습니다"
|
||||
|
||||
|
|
@ -101,77 +89,66 @@ msgstr "프로젝트를 찾을 수 없습니다"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr "프로젝트 없음"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "프로젝트를 찾을 수 없습니다."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "또는"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "프로젝트 이름"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "검색"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "프로젝트 검색..."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "프로젝트 검색"
|
||||
|
||||
|
|
@ -179,14 +156,12 @@ msgstr "프로젝트 검색"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "작업"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "%s에 대한 작업"
|
||||
|
||||
|
|
@ -198,14 +173,12 @@ msgstr "작업: 편집 모드에서 양식으로 이동"
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "작업 (%s)"
|
||||
|
||||
|
|
@ -213,22 +186,21 @@ msgstr "작업 (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr "데이터베이스에 프로젝트가 존재하지 않습니다. 프로젝트 관리자에게 새 프로젝트를 생성하도록 요청하세요."
|
||||
msgstr ""
|
||||
"데이터베이스에 프로젝트가 존재하지 않습니다. 프로젝트 관리자에게 새 프로젝트"
|
||||
"를 생성하도록 요청하세요."
|
||||
|
|
|
|||
|
|
@ -1,94 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -96,77 +86,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -174,14 +153,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -193,14 +170,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -208,21 +183,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
@ -1,233 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "ສ້າງ"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "ໜ້າທີ່"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
|
|
@ -1,98 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Sukurti"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -100,77 +86,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Projekto pavadinimas"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Paieška"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -178,14 +153,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Užduotis"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -197,14 +170,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -212,21 +183,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,100 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: ievaputnina <ievai.putninai@gmail.com>, 2025\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Izveidot"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr "Izveidot %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -102,77 +86,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Projekta Nosaukums"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Meklēt"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -180,14 +153,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Uzdevums"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -199,14 +170,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -214,21 +183,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,233 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "ക്രീയേറ്റ്"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "സെർച്ച് "
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "ടാസ്ക്"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
|
|
@ -1,99 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Otgonbayar.A <gobi.mn@gmail.com>, 2025
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Otgonbayar.A <gobi.mn@gmail.com>, 2025\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Үүсгэх"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr "%(name)s үүсгэх"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -101,77 +86,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Төслийн нэр"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Хайх"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -179,14 +153,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Даалгавар"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -198,14 +170,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -213,21 +183,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,233 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2022\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Buat"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Cari"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Tugasan"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
|
|
@ -1,94 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -96,77 +86,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -174,14 +153,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -193,14 +170,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -208,21 +183,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
@ -1,100 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Rune Restad, 2024
|
||||
# Jorunn D. Newth, 2025
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jorunn D. Newth, 2025\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:48+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/nb_NO/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Opprett"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -102,77 +89,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "Eller"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Prosjektnavn"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Søk"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -180,14 +156,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Oppgave"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -199,14 +173,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -214,21 +186,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,100 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
|
||||
# Jolien De Paepe, 2022
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2022\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 08:07+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/nl/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Aanmaken"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr " %(name)s aanmaken"
|
||||
msgstr "%(name)s aanmaken"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Geen project gevonden"
|
||||
|
||||
|
|
@ -102,77 +89,66 @@ msgstr "Geen project gevonden"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "OF"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Projectnaam"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Zoek een project"
|
||||
|
||||
|
|
@ -180,14 +156,12 @@ msgstr "Zoek een project"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Taak"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Taak voor %s"
|
||||
|
||||
|
|
@ -199,14 +173,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Taken (%s)"
|
||||
|
||||
|
|
@ -214,24 +186,21 @@ msgstr "Taken (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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."
|
||||
"Er zijn geen projecten in je database. Vraag je projectmanager om er een aan "
|
||||
"te maken."
|
||||
|
|
|
|||
|
|
@ -1,229 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
|
|
@ -1,100 +1,88 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:18+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/pl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Utwórz"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Nie znaleziono żadnego projektu"
|
||||
|
||||
|
|
@ -102,77 +90,66 @@ msgstr "Nie znaleziono żadnego projektu"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "LUB"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Szukaj"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Szukaj projektu"
|
||||
|
||||
|
|
@ -180,14 +157,12 @@ msgstr "Szukaj projektu"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Zadanie"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Zadanie dla %s"
|
||||
|
||||
|
|
@ -199,14 +174,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Zadania (%s)"
|
||||
|
||||
|
|
@ -214,24 +187,21 @@ msgstr "Zadania (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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."
|
||||
"W bazie danych nie ma żadnego projektu. Poproś twojego kierownika projektu o "
|
||||
"jego utworzenie."
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2024-02-06 13:31+0000\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-01-25 18:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -18,77 +18,66 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -96,77 +85,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -174,14 +152,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -193,14 +169,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -208,21 +182,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,235 +1,206 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Nuno Silva <nuno.silva@arxi.pt>, 2022
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Manuela Silva <mmsrs@sky.com>, 2022\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:48+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"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"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\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
|
||||
#, python-format
|
||||
msgid "Could not create the project"
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "Could not create the task"
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Criar"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
msgstr "Criar %(name)s"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
msgstr "Criar projeto e tarefa"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in a new Project"
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create a Task in an existing Project"
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "Email already logged on the task"
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "Log Email Into Task"
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "Log the email on the task"
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
msgstr "Não há projetos"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
msgstr "Nenhum projeto encontrado."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No tasks found for this contact."
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
msgstr "OU"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Pick a Project to create a Task"
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Nome do Projeto"
|
||||
msgstr "Nome do projeto"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Tasks."
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "Save the contact to create new tasks."
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Procurar"
|
||||
msgstr "Pesquisar"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
msgstr "Pesquisar projetos…"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Tarefa"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
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 ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
msgstr "Tarefas (%(count)s)"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Task."
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
msgid "The project name is required"
|
||||
msgstr ""
|
||||
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
|
||||
#, python-format
|
||||
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."
|
||||
|
|
|
|||
|
|
@ -1,100 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Kevilyn Rosa, 2023
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:29+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/project_mail_plugin/pt_BR/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Criar"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Log the email on the task"
|
||||
msgstr "Registre o e-mail na tarefa"
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Nenhum projeto encontrado"
|
||||
|
||||
|
|
@ -102,77 +89,66 @@ msgstr "Nenhum projeto encontrado"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr "Não há projeto"
|
||||
msgstr "Não há projetos"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "Nenhum projeto encontrado"
|
||||
msgstr "Nenhum projeto encontrado."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "OU"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Nome do Projeto"
|
||||
msgstr "Nome do projeto"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Save the contact to create new tasks."
|
||||
msgstr "Salvar contato para criar novas tarefas."
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Pesquisar"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "Pesquisar projetos..."
|
||||
msgstr "Pesquisar projetos…"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Pesquisar um projeto"
|
||||
|
||||
|
|
@ -180,14 +156,12 @@ msgstr "Pesquisar um projeto"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Tarefa"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Tarefa para %s"
|
||||
|
||||
|
|
@ -199,14 +173,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Tarefas (%s)"
|
||||
|
||||
|
|
@ -214,24 +186,21 @@ msgstr "Tarefas (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
"Não há nenhum projeto em suas bases de dados. Solicite ao seu gerente de "
|
||||
"projeto que crie um."
|
||||
"Não há nenhum projeto em sua base de dados. Solicite ao gerente de projeto "
|
||||
"que crie um."
|
||||
|
|
|
|||
|
|
@ -1,212 +1,185 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2023
|
||||
# Larisa_nexterp, 2025
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Alin Ilie <alin.ilie@logit-solutions.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Larisa_nexterp, 2025\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-02 14:57+0000\n"
|
||||
"Last-Translator: Alin Ilie <alin.ilie@logit-solutions.com>\n"
|
||||
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/ro/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Creează"
|
||||
msgstr "Creați"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr "Creează %(name)s"
|
||||
msgstr "Creați %(name)s"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "Creează proiect și sarcină"
|
||||
msgstr "Creați proiect și sarcină"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in a new Project"
|
||||
msgstr "Creează o sarcină într-un proiect nou"
|
||||
msgstr "Creați 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
|
||||
#, python-format
|
||||
msgid "Create a Task in an existing Project"
|
||||
msgstr "Creează o sarcină într-un proiect existent"
|
||||
msgstr "Crearea unei sarcini într-un proiect existent"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the task"
|
||||
msgstr "Emailul a fost deja înregistrat în sarcină"
|
||||
msgstr "E-mail deja înregistrat în sarcină"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Task"
|
||||
msgstr "Loghează emailul în sarcină"
|
||||
msgstr "Înregistrați e-mailul în sarcină"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the task"
|
||||
msgstr "Loghează emailul în sarcină"
|
||||
msgstr "Înregistrează e-mailul în sarcină"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Niciun proiect găsit"
|
||||
msgstr "Nu s-a găsit niciun 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "Niciun proiect găsit."
|
||||
msgstr "Nu s-a găsit niciun proiect."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No tasks found for this contact."
|
||||
msgstr "Nici o sarcină găsită pentru acest contact."
|
||||
msgstr "Nu s-au găsit sarcini pentru acest contact."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "SAU"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Pick a Project to create a Task"
|
||||
msgstr "Alege un proiect pentru a crea o sarcină"
|
||||
msgstr "Alegeți 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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Nume proiect"
|
||||
msgstr "Numele proiectului"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Tasks."
|
||||
msgstr "Salvează contactul pentru a crea noi sarcini."
|
||||
msgstr "Salvați contactul pentru a crea sarcini noi."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Save the contact to create new tasks."
|
||||
msgstr "Salvează contactul pentru a crea noi sarcini."
|
||||
msgstr "Salvați contactul pentru a crea sarcini noi."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Caută"
|
||||
msgstr "Căutare"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "Caută proiecte..."
|
||||
msgstr "Căutați proiecte..."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Caută un proiect"
|
||||
msgstr "Căutare 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Sarcină"
|
||||
msgstr "Sarcina"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Sarcină pentru %s"
|
||||
msgstr "Sarcina 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"
|
||||
msgstr "Sarcina: redirecționare către formular în modul de editare"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Sarcini (%s)"
|
||||
|
||||
|
|
@ -214,24 +187,21 @@ msgstr "Sarcini (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "The project name is required"
|
||||
msgstr "Numele proiectului este obligatoriu"
|
||||
msgstr "Numele proiectului este obligatoriu."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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."
|
||||
"Nu există niciun proiect în baza dvs. de date. Vă rugăm să solicitați "
|
||||
"managerului de proiect să creeze unul."
|
||||
|
|
|
|||
|
|
@ -1,101 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2024-01-30 15:14+0400\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Создать"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "Создание проекта и задачи"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Проекты не найдены!"
|
||||
|
||||
|
|
@ -103,77 +89,66 @@ msgstr "Проекты не найдены!"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr "Нет проекта"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "Проект не найден."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "ИЛИ"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Название проекта"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Поиск"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "Поиск проектов..."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Поиск проекта"
|
||||
|
||||
|
|
@ -181,14 +156,12 @@ msgstr "Поиск проекта"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Задача"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Задание для %s"
|
||||
|
||||
|
|
@ -200,14 +173,12 @@ msgstr "Задача: перенаправить на форму в режиме
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Задачи (%s)"
|
||||
|
||||
|
|
@ -215,21 +186,18 @@ msgstr "Задачи (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,234 +1,206 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Damian Brencic <brencicdamian12313@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Tomáš Píšek <Tomas.Pisek@seznam.cz>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-16 05:04+0000\n"
|
||||
"Last-Translator: Tomáš Píšek <Tomas.Pisek@seznam.cz>\n"
|
||||
"Language-Team: Slovak <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/sk/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the project"
|
||||
msgstr ""
|
||||
msgstr "Projekt sa nepodarilo vytvoriť"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the task"
|
||||
msgstr ""
|
||||
msgstr "Úlohu sa nepodarilo vytvoriť"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Vytvoriť"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
msgstr "Vytvoriť %(name)s"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
msgstr "Vytvoriť projekt a úlohu"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in a new Project"
|
||||
msgstr ""
|
||||
msgstr "Vytvoriť úlohu v novom projekte"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in an existing Project"
|
||||
msgstr ""
|
||||
msgstr "Vytvoriť úlohu v existujúcim projekte"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the task"
|
||||
msgstr ""
|
||||
msgstr "E-mail už bol k úlohe zapísaný"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Task"
|
||||
msgstr ""
|
||||
msgstr "Zapísať e-mail k úlohe"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the task"
|
||||
msgstr ""
|
||||
msgstr "Zapísať e-mail k úlohe"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
msgstr "Nenájdený 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
msgstr "Žiadny projekt"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
msgstr "Nebol nájdený projekt."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No tasks found for this contact."
|
||||
msgstr ""
|
||||
msgstr "Pre tento kontakt neboli nájdené žiadne úlohy."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Pick a Project to create a Task"
|
||||
msgstr ""
|
||||
msgstr "Vyberte projekt, aby ste vytvorili úlohu"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Tasks."
|
||||
msgstr ""
|
||||
msgstr "Uložiť kontakt a vytvoriť nové úlohy."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Save the contact to create new tasks."
|
||||
msgstr ""
|
||||
msgstr "Uložiť kontakt a vytvoriť nové úlohy."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Vyhľadávanie"
|
||||
msgstr "Hľadať"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
msgstr "Hľadať projekty..."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
msgstr "Hľadať 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Požiadavka"
|
||||
msgstr "Úloha"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
msgstr "Úloha pre %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 ""
|
||||
msgstr "Úloha: presmerovať na formulár v režime úprav"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
msgstr "(%(count)s) úloh"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
msgstr "Úlohy (%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
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Task."
|
||||
msgstr ""
|
||||
msgstr "Aby bolo možné vytvoriť úlohu, musí existovať kontakt."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "The project name is required"
|
||||
msgstr ""
|
||||
msgstr "Názov projektu je povinný"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
"V databáze nie je žiadny projekt. Požiadajte svojho projektového manažéra, "
|
||||
"aby jeden vytvoril."
|
||||
|
|
|
|||
|
|
@ -1,102 +1,88 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# Wil Odoo, 2025
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:37+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/sl/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Ustvari"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Ni najdenega projekta"
|
||||
|
||||
|
|
@ -104,77 +90,66 @@ msgstr "Ni najdenega projekta"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "ALI"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Iskanje"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Iskanje projekta"
|
||||
|
||||
|
|
@ -182,14 +157,12 @@ msgstr "Iskanje projekta"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Opravilo"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Naloga za %s"
|
||||
|
||||
|
|
@ -201,14 +174,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Naloge (%s)"
|
||||
|
||||
|
|
@ -216,21 +187,18 @@ msgstr "Naloge (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,94 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Albanian (https://app.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-12-30 18:36+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -96,77 +86,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -174,14 +153,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -193,14 +170,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -208,21 +183,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,237 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the project"
|
||||
msgstr "Nije moguće kreirati projekat"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the task"
|
||||
msgstr "Nije moguće kreirati zadatak"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Kreirajte"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr "Kreirajte %(name)s"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "Kreiraj Projekat & Zadatak"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in a new Project"
|
||||
msgstr "Kreiraj zadatak u novom projektu"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in an existing Project"
|
||||
msgstr "Kreiraj zadatak u postojećem projektu"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the task"
|
||||
msgstr "Email je već zabeležen na zadatku"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Task"
|
||||
msgstr "Zabeležite email na zadatak"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the task"
|
||||
msgstr "Zabeležite email na zadatku"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Nije pronađen projekat"
|
||||
|
||||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr "Nema projekta"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "Nije pronađen projekat."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No tasks found for this contact."
|
||||
msgstr "Nije pronađen zadatak za ovaj kontakt."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "ILI"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Pick a Project to create a Task"
|
||||
msgstr "Izaberite projekat da biste kreirali zadatak"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Tasks."
|
||||
msgstr "Sačuvajte kontakt da biste kreirali nove zadatke."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Save the contact to create new tasks."
|
||||
msgstr "Sačuvajte kontakt da biste kreirali nove zadatke."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Pronađi"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "Pretraži projekte..."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Pretraži Projekat"
|
||||
|
||||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Zadatak"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Zadatak 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 "Zadatak: preusmeriti na obrazac u režimu za uređivanje"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr "Zadaci (%(count)s)"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Zadaci (%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
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Task."
|
||||
msgstr "Kontakt mora da postoji da bi se kreirao zadatak."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "The project name is required"
|
||||
msgstr "Naziv projekta je obavezan"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
"Nema projekta u vašoj bazi podataka. Molimo vas da zahtevate od svog "
|
||||
"projektnog menadžera da kreira jedan."
|
||||
|
|
@ -1,94 +1,84 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -96,77 +86,66 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -174,14 +153,12 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -193,14 +170,12 @@ msgstr ""
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -208,21 +183,18 @@ msgstr ""
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
@ -1,100 +1,88 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Lasse L, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Hanna Kharraziha <hakha@odoo.com>, 2026.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2024\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2026-02-25 14:53+0000\n"
|
||||
"Last-Translator: Hanna Kharraziha <hakha@odoo.com>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/sv/>\n"
|
||||
"Language: 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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Skapa"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Inget projekt hittat"
|
||||
|
||||
|
|
@ -102,77 +90,66 @@ msgstr "Inget projekt hittat"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "ELLER"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Projektnamn"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Sök ett projekt"
|
||||
|
||||
|
|
@ -180,14 +157,12 @@ msgstr "Sök ett projekt"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Aktivitet"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Uppgift för %s"
|
||||
|
||||
|
|
@ -199,14 +174,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Uppgifter (%s)"
|
||||
|
||||
|
|
@ -214,21 +187,18 @@ msgstr "Uppgifter (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,101 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:36+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/th/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "สร้าง"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "สร้างโปรเจ็กต์และงาน"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "ไม่พบโปรเจ็กต์"
|
||||
|
||||
|
|
@ -103,77 +89,66 @@ msgstr "ไม่พบโปรเจ็กต์"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr "ไม่มีโปรเจ็กต์"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "ไม่พบโปรเจ็กต์"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "หรือ"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "ชื่อโปรเจค"
|
||||
msgstr "ชื่อโปรเจ็กต์"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "ค้นหา"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "ค้นหาโปรเจ็กต์..."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "ค้นหาโปรเจ็กต์"
|
||||
|
||||
|
|
@ -181,14 +156,12 @@ msgstr "ค้นหาโปรเจ็กต์"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "งาน"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "งานสำหรับ %s"
|
||||
|
||||
|
|
@ -200,14 +173,12 @@ msgstr "งาน: เปลี่ยนเส้นทางไปยังแ
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "งาน (%s)"
|
||||
|
||||
|
|
@ -215,24 +186,19 @@ msgstr "งาน (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
"ไม่มีโปรเจ็กต์ในฐานข้อมูลของคุณ "
|
||||
"โปรดขอให้ผู้จัดการโปรเจ็กต์ของคุณสร้างบัญชีขึ้นมา"
|
||||
msgstr "ไม่มีโปรเจ็กต์ในฐานข้อมูลของคุณ โปรดขอให้ผู้จัดการโปรเจ็กต์ของคุณสร้างบัญชีขึ้นมา"
|
||||
|
|
|
|||
|
|
@ -1,101 +1,88 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 2023
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Weblate Translation Memory <noreply-mt-weblate-translation-memory@weblate.org>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tugay Hatıl <tugayh@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-07 13:51+0000\n"
|
||||
"Last-Translator: Weblate Translation Memory <noreply-mt-weblate-translation-"
|
||||
"memory@weblate.org>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/tr/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Oluştur"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Proje Bulunamadı"
|
||||
|
||||
|
|
@ -103,77 +90,66 @@ msgstr "Proje Bulunamadı"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "VEYA"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Arama"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Proje Ara"
|
||||
|
||||
|
|
@ -181,14 +157,12 @@ msgstr "Proje Ara"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Görev"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "%s için görev"
|
||||
|
||||
|
|
@ -200,14 +174,12 @@ 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Görevler (%s)"
|
||||
|
||||
|
|
@ -215,21 +187,18 @@ msgstr "Görevler (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,236 +1,201 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-02-20 10:02+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: \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"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the project"
|
||||
msgstr "Неможливо створити проект"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the task"
|
||||
msgstr "Неможливо створити завдання"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Створити"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Create %(name)s"
|
||||
msgstr "Створити %(name)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "Створіть проект та завдання"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in a new Project"
|
||||
msgstr "Створити завдання у новому проекті"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Create a Task in an existing Project"
|
||||
msgstr "Створити завдання в існуючому проекті"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the task"
|
||||
msgstr "Електронна пошта вже зареєстрована на завданні"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Task"
|
||||
msgstr "Додайте Email на завдання"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the task"
|
||||
msgstr "Додайте email на завдання"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Проекту не знайдено"
|
||||
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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr "Немає проекту"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "Не знайдено проекту."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No tasks found for this contact."
|
||||
msgstr "Не знайдено завдань для цього контакту."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "OR"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Pick a Project to create a Task"
|
||||
msgstr "Виберіть проект, щоб створити завдання"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "Назва проекту"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Tasks."
|
||||
msgstr "Збережіть контакт, щоб створити нові завдання."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Save the contact to create new tasks."
|
||||
msgstr "Збережіть контакт, щоб створити нові завдання."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "Пошук"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "Пошук проектів..."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Пошук проекту"
|
||||
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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Завдання"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Завдання для %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 "Завдання: перенаправити на форму в режимі редагування"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr "Завдання (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Завдання (%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
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Task."
|
||||
msgstr "Контакт повинен існувати для створення завдання."
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "The project name is required"
|
||||
msgstr "Необхідне ім'я проекту"
|
||||
msgstr ""
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
"У вашій базі даних немає жодного проекту. Попросіть менеджера проекту "
|
||||
"створити його."
|
||||
|
|
|
|||
|
|
@ -1,234 +1,241 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
#
|
||||
#
|
||||
#
|
||||
# Translated by:
|
||||
# Deepvision - info@deepvision.uz | +998 77-093-0007
|
||||
# Amon Olimov - amon.bars@gmail.com
|
||||
# Jonibek Yorqulov - j.yorqulov@deepvision.uz
|
||||
# Mirzohidkhon Ulugkhujaev ulugkhujayevmirzohidxon@gmail.com
|
||||
#
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Sengtha Chay <sengtha@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-08 18:37+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: uz\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Content-Transfer-Encoding: 8bit\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
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Could not create the project"
|
||||
msgstr ""
|
||||
msgstr "Loyiha yaratilmadi"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Could not create the task"
|
||||
msgstr ""
|
||||
msgstr "Vazifa yaratilmadi"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Create"
|
||||
msgstr "ការបង្កើត"
|
||||
msgstr "Yaratish"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Create %(name)s"
|
||||
msgstr ""
|
||||
msgstr "%(name)s yaratish"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Create Project & Task"
|
||||
msgstr ""
|
||||
msgstr "Loyiha va vazifa yaratish"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Create a Task in a new Project"
|
||||
msgstr ""
|
||||
msgstr "Yangi loyihada vazifa yaratish"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Create a Task in an existing Project"
|
||||
msgstr ""
|
||||
msgstr "Mavjud loyihada vazifa yaratish"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Email already logged on the task"
|
||||
msgstr ""
|
||||
msgstr "Elektron pochta allaqachon vazifaga kiritilgan"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Log Email Into Task"
|
||||
msgstr ""
|
||||
msgstr "Vazifaga elektron pochta orqali kirish"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Log the email on the task"
|
||||
msgstr ""
|
||||
msgstr "Vazifa bo‘yicha elektron pochtani qayd etish"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "No Project Found"
|
||||
msgstr ""
|
||||
msgstr "Hech qanday loyiha topilmadi"
|
||||
|
||||
#. 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
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "No project"
|
||||
msgstr ""
|
||||
msgstr "Loyiha yo‘q"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "No project found."
|
||||
msgstr ""
|
||||
msgstr "Hech qanday loyiha topilmadi."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "No tasks found for this contact."
|
||||
msgstr ""
|
||||
msgstr "Bu aloqa uchun vazifalar topilmadi."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "OR"
|
||||
msgstr ""
|
||||
msgstr "YOKI"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Pick a Project to create a Task"
|
||||
msgstr ""
|
||||
msgstr "Vazifa yaratish uchun loyihani tanlang"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Project Name"
|
||||
msgstr ""
|
||||
msgstr "Loyiha nomi"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Save Contact to create new Tasks."
|
||||
msgstr ""
|
||||
msgstr "Yangi vazifalar yaratish uchun aloqani saqlang."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Save the contact to create new tasks."
|
||||
msgstr ""
|
||||
msgstr "Yangi vazifalar yaratish uchun aloqani saqlang."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Search"
|
||||
msgstr "ការស្រាវជ្រាវ"
|
||||
msgstr "Qidirish"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Search Projects..."
|
||||
msgstr ""
|
||||
msgstr "Loyihalarni qidirish..."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Search a Project"
|
||||
msgstr ""
|
||||
msgstr "Loyiha qidirish"
|
||||
|
||||
#. 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
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Task"
|
||||
msgstr "កិច្ចការ"
|
||||
msgstr "Vazifa"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Task for %s"
|
||||
msgstr ""
|
||||
msgstr "%s uchun vazifa"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#: model:ir.actions.act_window,name:project_mail_plugin.project_task_action_form_edit
|
||||
#, fuzzy
|
||||
msgid "Task: redirect to form in edit mode"
|
||||
msgstr ""
|
||||
msgstr "Vazifa: tahrirlash rejimida shaklga yo‘naltirish"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Tasks (%(count)s)"
|
||||
msgstr ""
|
||||
msgstr "Vazifalar (%(count)s)"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Tasks (%s)"
|
||||
msgstr ""
|
||||
msgstr "Vazifalar (%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
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "The Contact needs to exist to create Task."
|
||||
msgstr ""
|
||||
msgstr "Vazifa yaratish uchun aloqa mavjud bo‘lishi kerak."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "The project name is required"
|
||||
msgstr ""
|
||||
msgstr "Loyiha nomi kiritilishi shart"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
msgstr ""
|
||||
"Ma'lumotlar bazangizda hech qanday loyiha yo‘q. Iltimos, loyiha "
|
||||
"boshqaruvchingizdan uni yaratishni so‘rang."
|
||||
|
|
@ -1,99 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2024
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2024\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 02:34+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"project_mail_plugin/vi/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "Tạo"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "Không tìm thấy dự án nào"
|
||||
|
||||
|
|
@ -101,77 +89,66 @@ msgstr "Không tìm thấy dự án nào"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "HOẶC"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "Tìm kiếm dự án"
|
||||
|
||||
|
|
@ -179,14 +156,12 @@ msgstr "Tìm kiếm dự án"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "Công việc"
|
||||
msgstr "Nhiệm vụ"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "Nhiệm vụ cho %s"
|
||||
|
||||
|
|
@ -198,14 +173,12 @@ msgstr "Nhiệm vụ: chuyển hướng tới biểu mẫu trong chế độ ch
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "Nhiệm vụ (%s)"
|
||||
|
||||
|
|
@ -213,21 +186,18 @@ msgstr "Nhiệm vụ (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,101 +1,87 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2022
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
#
|
||||
# * project_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Raymond Yu <cl_yu@hotmail.com>, 2022\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:37+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/project_mail_plugin/zh_Hans/>\n"
|
||||
"Language: 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"
|
||||
"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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "创建"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "创建项目"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "未找到项目"
|
||||
|
||||
|
|
@ -103,77 +89,66 @@ msgstr "未找到项目"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr "没有项目"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "沒有找到项目。"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "或"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "项目名称"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "搜索"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "搜索项目..."
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "搜索一个项目"
|
||||
|
||||
|
|
@ -181,14 +156,12 @@ msgstr "搜索一个项目"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "任务"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "针对%s的任务"
|
||||
|
||||
|
|
@ -200,14 +173,12 @@ msgstr "任务:重定向到编辑模式下的表单"
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "任务 (%s)"
|
||||
|
||||
|
|
@ -215,21 +186,18 @@ msgstr "任务 (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -1,99 +1,88 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * project_mail_plugin
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Tony Ng, 2023
|
||||
#
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Project-Id-Version: Odoo Server saas~18.2\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-02-06 13:31+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:54+0000\n"
|
||||
"Last-Translator: Tony Ng, 2023\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-05-06 12:04+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/"
|
||||
"zh_TW/)\n"
|
||||
"Language: 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create"
|
||||
msgstr "建立"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Create Project & Task"
|
||||
msgstr "建立專案及任務"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "No Project Found"
|
||||
msgstr "找不到專案"
|
||||
|
||||
|
|
@ -101,77 +90,66 @@ msgstr "找不到專案"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "No project"
|
||||
msgstr "沒有專案"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "No project found."
|
||||
msgstr "找不到專案。"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "OR"
|
||||
msgstr "OR"
|
||||
msgstr "或"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Project Name"
|
||||
msgstr "專案名稱"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Search"
|
||||
msgstr "搜尋"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Search Projects..."
|
||||
msgstr "搜尋專案⋯"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Search a Project"
|
||||
msgstr "搜尋一個專案"
|
||||
|
||||
|
|
@ -179,14 +157,12 @@ msgstr "搜尋一個專案"
|
|||
#. 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
|
||||
#, python-format
|
||||
msgid "Task"
|
||||
msgstr "任務"
|
||||
|
||||
#. module: project_mail_plugin
|
||||
#. odoo-python
|
||||
#: code:addons/project_mail_plugin/controllers/project_client.py:0
|
||||
#, python-format
|
||||
msgid "Task for %s"
|
||||
msgstr "%s 相關任務"
|
||||
|
||||
|
|
@ -198,14 +174,12 @@ msgstr "任務:編輯模式下重新導向至表單"
|
|||
#. module: project_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/project_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid "Tasks (%s)"
|
||||
msgstr "任務 (%s)"
|
||||
|
||||
|
|
@ -213,21 +187,18 @@ msgstr "任務 (%s)"
|
|||
#. 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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
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
|
||||
#, python-format
|
||||
msgid ""
|
||||
"There are no project in your database. Please ask your project manager to "
|
||||
"create one."
|
||||
|
|
|
|||
|
|
@ -3,10 +3,8 @@
|
|||
<!-- 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="type">ir.actions.act_window</field>
|
||||
<field name="res_model">project.task</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="view_id" ref="project.view_task_form2"/>
|
||||
<field name="context">{'form_view_initial_mode': 'edit'}</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue