mirror of
https://github.com/bringout/oca-ocb-crm.git
synced 2026-04-18 21:52:00 +02:00
19.0 vanilla
This commit is contained in:
parent
dc68f80d3f
commit
7221b9ac46
610 changed files with 135477 additions and 161677 deletions
|
|
@ -19,5 +19,6 @@
|
|||
],
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ from .mail_plugin import MailPluginController
|
|||
class CrmClient(MailPluginController):
|
||||
|
||||
@http.route(route='/mail_client_extension/log_single_mail_content',
|
||||
type="json", auth="outlook", cors="*")
|
||||
type="jsonrpc", auth="outlook", cors="*")
|
||||
def log_single_mail_content(self, lead, message, **kw):
|
||||
"""
|
||||
deprecated as of saas-14.3, not needed for newer versions of the mail plugin but necessary
|
||||
|
|
@ -20,7 +20,7 @@ class CrmClient(MailPluginController):
|
|||
crm_lead = request.env['crm.lead'].browse(lead)
|
||||
crm_lead.message_post(body=message)
|
||||
|
||||
@http.route('/mail_client_extension/lead/get_by_partner_id', type="json", auth="outlook", cors="*")
|
||||
@http.route('/mail_client_extension/lead/get_by_partner_id', type="jsonrpc", auth="outlook", cors="*")
|
||||
def crm_lead_get_by_partner_id(self, partner, limit=5, offset=0, **kwargs):
|
||||
"""
|
||||
deprecated as of saas-14.3, not needed for newer versions of the mail plugin but necessary
|
||||
|
|
@ -37,9 +37,9 @@ class CrmClient(MailPluginController):
|
|||
"""
|
||||
server_action = http.request.env.ref("crm_mail_plugin.lead_creation_prefilled_action")
|
||||
return request.redirect(
|
||||
'/web#action=%s&model=crm.lead&partner_id=%s' % (server_action.id, int(partner_id)))
|
||||
'/odoo/action-%s?partner_id=%s' % (server_action.id, int(partner_id)))
|
||||
|
||||
@http.route('/mail_plugin/lead/create', type='json', auth='outlook', cors="*")
|
||||
@http.route('/mail_plugin/lead/create', type='jsonrpc', auth='outlook', cors="*")
|
||||
def crm_lead_create(self, partner_id, email_body, email_subject):
|
||||
partner = request.env['res.partner'].browse(partner_id).exists()
|
||||
if not partner:
|
||||
|
|
@ -60,5 +60,5 @@ class CrmClient(MailPluginController):
|
|||
for supporting older versions
|
||||
"""
|
||||
action = http.request.env.ref("crm.crm_lead_view_form")
|
||||
url = '/web#id=%s&action=%s&model=crm.lead&edit=1&model=crm.lead' % (lead_id, action.id)
|
||||
url = '/odoo/action-%s/%s?edit=1' % (action.id, lead_id)
|
||||
return request.redirect(url)
|
||||
|
|
|
|||
|
|
@ -35,14 +35,14 @@ class MailPluginController(mail_plugin.MailPluginController):
|
|||
lead_values = {
|
||||
'lead_id': lead.id,
|
||||
'name': lead.name,
|
||||
'expected_revenue': formatLang(request.env, lead.expected_revenue, monetary=True,
|
||||
'expected_revenue': formatLang(request.env, lead.expected_revenue,
|
||||
currency_obj=lead.company_currency),
|
||||
'probability': lead.probability,
|
||||
}
|
||||
|
||||
if recurring_revenues:
|
||||
lead_values.update({
|
||||
'recurring_revenue': formatLang(request.env, lead.recurring_revenue, monetary=True,
|
||||
'recurring_revenue': formatLang(request.env, lead.recurring_revenue,
|
||||
currency_obj=lead.company_currency),
|
||||
'recurring_plan': lead.recurring_plan.name,
|
||||
})
|
||||
|
|
@ -59,7 +59,7 @@ class MailPluginController(mail_plugin.MailPluginController):
|
|||
"""
|
||||
contact_values = super(MailPluginController, self)._get_contact_data(partner)
|
||||
|
||||
if not request.env['crm.lead'].check_access_rights('create', raise_exception=False):
|
||||
if not request.env['crm.lead'].has_access('create'):
|
||||
return contact_values
|
||||
|
||||
if not partner:
|
||||
|
|
@ -70,12 +70,12 @@ class MailPluginController(mail_plugin.MailPluginController):
|
|||
|
||||
def _mail_content_logging_models_whitelist(self):
|
||||
models_whitelist = super(MailPluginController, self)._mail_content_logging_models_whitelist()
|
||||
if not request.env['crm.lead'].check_access_rights('create', raise_exception=False):
|
||||
if not request.env['crm.lead'].has_access('create'):
|
||||
return models_whitelist
|
||||
return models_whitelist + ['crm.lead']
|
||||
|
||||
def _translation_modules_whitelist(self):
|
||||
modules_whitelist = super(MailPluginController, self)._translation_modules_whitelist()
|
||||
if not request.env['crm.lead'].check_access_rights('create', raise_exception=False):
|
||||
if not request.env['crm.lead'].has_access('create'):
|
||||
return modules_whitelist
|
||||
return modules_whitelist + ['crm_mail_plugin']
|
||||
|
|
|
|||
|
|
@ -1,135 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2022
|
||||
#
|
||||
# * crm_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:45+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 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/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s في "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s في %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s في %(probability)s% "
|
||||
msgstr "%(expected_revenue)s في %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "تعذر إنشاء العميل المهتم "
|
||||
msgstr "تعذر إنشاء العميل المهتم"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "إنشاء فرصة"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "تم تسجيل البريد الإلكتروني للعميل المهتم بالفعل "
|
||||
msgstr "تم تسجيل البريد الإلكتروني للعميل المهتم بالفعل"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "عميل مهتم/فرصة "
|
||||
msgid "Lead"
|
||||
msgstr "عميل مهتم"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr "العميل المهتم: إعادة توجيه الاستمارة في وضع التحرير "
|
||||
msgstr "العميل المهتم: إعادة توجيه الاستمارة في وضع التحرير"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "قم بتسجيل البريد الإلكتروني في بيانات العميل المهتم "
|
||||
msgstr "قم بتسجيل البريد الإلكتروني في بيانات العميل المهتم"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "قم بتسجيل البريد الإلكتروني في بيانات العميل المهتم "
|
||||
msgstr "قم بتسجيل البريد الإلكتروني في بيانات العميل المهتم"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "لم يتم العثور على أي فرص لجهة الاتصال هذه. "
|
||||
msgstr "لم يتم العثور على أي فرص لجهة الاتصال هذه."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "الفرص"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "الفرص (%(count)s) "
|
||||
msgstr "الفرص (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "الفرص (%s) "
|
||||
msgstr "الفرص (%s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
"إعادة التوجيه إلى استمارة إنشاء العملاء المهتمين مع معلومات معبأة بالفعل "
|
||||
"إعادة التوجيه إلى استمارة إنشاء العملاء المهتمين مع معلومات معبأة بالفعل"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "حفظ جهة الاتصال لإنشاء فرص جديدة. "
|
||||
msgstr "حفظ جهة الاتصال لإنشاء فرص جديدة."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "يجب أن تكون جهة الاتصال موجودة لإنشاء فرصة. "
|
||||
msgstr "يجب أن تكون جهة الاتصال موجودة لإنشاء فرصة."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "يمكنك إنشاء فرص فقط للعملاء الموجودين بالفعل. "
|
||||
msgstr "يمكنك إنشاء فرص فقط للعملاء الموجودين بالفعل."
|
||||
|
|
|
|||
|
|
@ -1,60 +1,71 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2022\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-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Azerbaijani <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/az/>\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Fürsət yaradın"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Göstəriləcək Ad"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Hədəf Müştəri/Fürsət"
|
||||
msgid "Lead"
|
||||
msgstr "Hədəf Müştəri"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -64,42 +75,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Fürsətlər"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -112,20 +117,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,60 +1,71 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\n"
|
||||
"Last-Translator: Rosen Vladimirov <vladimirov.rosen@gmail.com>, 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-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Bulgarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/bg/>\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Създайте потенциална възможност"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Лийд / Възможност"
|
||||
msgid "Lead"
|
||||
msgstr "Нов контакт"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -64,42 +75,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Възможност"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -112,20 +117,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,130 +1,135 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 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-11-16 15:33+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Bosnian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/bs/>\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s na "
|
||||
"%(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s na %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Nije moguće kreirati potencijalnog klijenta"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Kreirajte priliku"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "E-mail već evidentiran na potencijalnom klijentu"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
# taken from hr.po
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Potencijal/prilika"
|
||||
msgid "Lead"
|
||||
msgstr "Potencijal"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr "Potencijalni klijent: preusmjeri formu u način uređivanja"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Evidentiraj e-mail u potencijalnog klijenta"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Evidentiraj e-mail na potencijalnom klijentu"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Nema pronađenih prilika za ovaj kontakt."
|
||||
msgstr ""
|
||||
|
||||
# taken from hr.po
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "Opportunities"
|
||||
msgstr "Prilike"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Prilike (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Prilike (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
"Preusmjeravanje na formu za kreiranje potencijalnog klijenta sa popunjenim "
|
||||
"informacijama"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Spremite kontakt da kreirate nove prilike."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Kontakt mora postojati da se kreira prilika."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml
|
||||
#, python-format
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Možete kreirati prilike samo za postojeće kupce."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,65 +1,74 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# Quim - eccit <quim@eccit.com>, 2022
|
||||
# marcescu, 2022
|
||||
# Ivan Espinola, 2022
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@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:45+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-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s en "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s en %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s en %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "No es va poder crear la pista"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Crear una oportunitat"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom mostrat"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "Correu electrònic ja registrat en el plom"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Iniciativa/Oportunitat"
|
||||
msgid "Lead"
|
||||
msgstr "Iniciativa"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -69,42 +78,36 @@ msgstr "Plom: redirigir el formulari en la manera de modificar"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Registrar el correu electrònic en el plom"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Registrar el correo electrónico en el plom"
|
||||
msgstr "Registrar el correu al lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "No s'han trobat oportunitats per a aquest contacte."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Oportunitats"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Oportunitats (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Oportunitats (%s)"
|
||||
|
||||
|
|
@ -118,20 +121,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Desa el contacte per crear noves oportunitats."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "El contacte ha d'existir per crear l'oportunitat."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Només pots crear oportunitats per als clients existents."
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
@ -19,7 +19,6 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
|
|
@ -29,27 +28,39 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgid "Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
|
|
@ -60,42 +71,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -108,20 +113,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,61 +1,71 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * crm_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:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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:23+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Vytvořit příležitost"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Potenciální zákazník / příležitost"
|
||||
msgid "Lead"
|
||||
msgstr "Potenciální zákazník"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -65,42 +75,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Příležitosti"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -113,20 +117,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,136 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Mads Søndergaard, 2022
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
# Kira Petersen, 2025
|
||||
#
|
||||
# * crm_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:45+0000\n"
|
||||
"Last-Translator: Kira Petersen, 2025\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:14+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s på %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s på %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Kunne ikke oprettet kundeemnet"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Opret en salgsmulighed"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "E-mail er allerede registreret i forbindelse med kundeemnet"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Kundeemne/Salgsmulighed"
|
||||
msgid "Lead"
|
||||
msgstr "Kundeemne"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr "Kundeemne: videresendelsesformular i redigeringstilstand"
|
||||
msgstr "Kundeemne: omdirigeringsformular i redigeringstilstand"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Knyt e-mailadresse til kundeemne"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Knyt e-mailadressen til kundeemnet"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Denne kontakt har ingen tilknyttede salgsmuligheder."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Salgsmuligheder"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Salgsmuligheder (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Salgsmuligheder (%s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr "Omdirigering til kundeemne oprettelsesformular med forudfyldt info"
|
||||
msgstr ""
|
||||
"Omdirigerer til formularen til oprettelse af kundeemne med forudfyldte "
|
||||
"oplysninger"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Gem kontakt for at oprette nye salgsmuligheder."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "En salgsmulighed kan kun oprettes for en eksisterende kontakt."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Du kan kun oprette salgsmuligheder for eksisterende kunder."
|
||||
|
|
|
|||
|
|
@ -1,63 +1,74 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Larissa Manderfeld (lman)" <lman@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:45+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 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: 2025-10-31 12:44+0000\n"
|
||||
"Last-Translator: \"Larissa Manderfeld (lman)\" <lman@odoo.com>\n"
|
||||
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s zu "
|
||||
"%(probability)s %"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s zu %"
|
||||
"(probability)s %"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s zu %(probability)s %"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Lead konnte nicht erstellt werden"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Verkaufschance erstellen"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "E-Mail bereits auf Lead erfasst"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Lead/Verkaufschance"
|
||||
msgid "Lead"
|
||||
msgstr "Lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,42 +78,36 @@ msgstr "Lead: Weiterleitungsformular im Bearbeitungsmodus"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "E-Mail auf Lead erfassen"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "E-Mail auf Lead erfassen"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Für diesen Kontakt wurden keine Verkaufschancen gefunden."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Verkaufschancen"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Verkaufschancen (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Verkaufschancen (%s)"
|
||||
|
||||
|
|
@ -116,20 +121,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Kontakt speichern, um neue Verkaufschance zu erstellen."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Der Kontakt muss bestehen, um die Verkaufschance zu erstellen."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Sie können Verkaufschancen nur für bestehende Kunden erstellen."
|
||||
|
|
|
|||
|
|
@ -1,56 +1,72 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/el/>\n"
|
||||
"Language: el\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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Δημιουργήστε μια ευκαιρία"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr ""
|
||||
msgid "Lead"
|
||||
msgstr "Σύσταση"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -60,42 +76,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
msgstr "Ευκαιρίες"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -108,20 +118,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
@ -1,64 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# oscaryuu, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
# * crm_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:45+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:20+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s al "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s al %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s al %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "No se pudo crear el lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Crear una oportunidad"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "El correo ya se cargó en el lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Lead/Oportunidad"
|
||||
msgid "Lead"
|
||||
msgstr "Lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -68,42 +77,36 @@ msgstr "Lead: formulario de redirección en el modo de edición"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Registrar el correo en el lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Registrar el correo en el lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "No se encontraron oportunidades para este contacto."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Oportunidades"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Oportunidades (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Oportunidades (%s)"
|
||||
|
||||
|
|
@ -111,27 +114,23 @@ msgstr "Oportunidades (%s)"
|
|||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
"Redirección al formulario de creación de leads con información "
|
||||
"precompletada."
|
||||
"Redirección al formulario de creación de leads con información precompletada."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Guarde el contacto para crear nuevas oportunidades."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "El contacto tiene que existir para crear la oportunidad."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Usted solo puede crear oportunidades para clientes existentes."
|
||||
|
|
|
|||
|
|
@ -1,63 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
# * crm_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:45+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2025\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 06:32+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s al "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s al %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s al %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "No se pudo crear el lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Crear una oportunidad"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "El correo ya se registró en el lead"
|
||||
msgstr "El correo ya está registrado en el lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Lead / oportunidad"
|
||||
msgid "Lead"
|
||||
msgstr "Lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,42 +77,36 @@ msgstr "Lead: formulario de redirección en el modo de edición"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Registrar el correo en el lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Registrar el correo en el lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "No se encontraron oportunidades para este contacto."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Oportunidades"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Oportunidades (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Oportunidades (%s)"
|
||||
|
||||
|
|
@ -110,27 +114,23 @@ msgstr "Oportunidades (%s)"
|
|||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
"Redirección al formulario de creación de leads con información "
|
||||
"precompletada."
|
||||
"Redirección al formulario de creación de leads con información precompletada."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Guarda el contacto para crear nuevas oportunidades."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "El contacto debe existir para crear una oportunidad."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Solo puedes crear oportunidades para clientes existentes."
|
||||
|
|
@ -1,64 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Leaanika Randmets, 2022
|
||||
#
|
||||
# * crm_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:45+0000\n"
|
||||
"Last-Translator: Leaanika Randmets, 2022\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-29 11:40+0000\n"
|
||||
"Last-Translator: Kristina Pešehodko <kristina@avalah.ee>\n"
|
||||
"Language-Team: Estonian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s %(probability)s%"
|
||||
msgstr "%(expected_revenue)s %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Müügivihjet ei saanud luua"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Loo müügivõimalus"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Kuva nimi"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "E-kiri on juba lisatud müügivihjele"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Müügivihje/võimalus"
|
||||
msgid "Lead"
|
||||
msgstr "Müügivihje"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -68,42 +77,36 @@ msgstr "Müügivihje: suuna edasi muutmiseks"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Lisage e-kiri müügivihjele"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Lisage e-kiri müügivihjele"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Ei leitud müügivõimalusi otsitud kontaktile."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Võimalused"
|
||||
msgstr "Müügivõimalused"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Võimalused (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Võimalused (%s)"
|
||||
|
||||
|
|
@ -116,20 +119,17 @@ msgstr "Ümbersuunamine eeltäidetud andmetega müügivihje loomise vormile"
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Salvesta kontakt, et luua uusi müügivõimalusi."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Kontakt peab olema loodud, et luua uusi müügivõimalusi."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Müügivõimalusi saab luua ainult olemasolevale kliendile."
|
||||
|
|
|
|||
|
|
@ -1,64 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Hamid Darabi, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@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:45+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-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Persian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/fa/>\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s در "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s در %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s در %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "نمی توان سرنخ را ایجاد کرد"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "ایجاد یک فرصت"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "ایمیل از قبل در سرنخ ثبت شده است"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "سرنخ / فرصت"
|
||||
msgid "Lead"
|
||||
msgstr "سرنخ"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -68,42 +77,36 @@ msgstr "سرب: هدایت کردن فرم به حالت ویرایش"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "ثبت ایمیل به سرنخ"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "ثبت ایمیل در سرنخ"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "برای این مخاطب هیچ فرصتی یافت نشد."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "فرصتها"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "فرصتها (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "فرصتها (%s)"
|
||||
|
||||
|
|
@ -116,20 +119,17 @@ msgstr "فرم هدایت به فرم ایجاد سرنخ با اطلاعات پ
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "ذخیره کردن مخاطب برای ایجاد فرصتهای جدید."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "وجود مخاطب برای ایجاد فرصت ضروری است."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "شما فقط میتوانید فرصتهایی برای مشتریان موجود ایجاد کنید."
|
||||
|
|
|
|||
|
|
@ -1,34 +1,31 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
# * crm_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:45+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:38+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s "
|
||||
"todennäköisyydellä %(probability)s%"
|
||||
|
|
@ -37,73 +34,79 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s todennäköisyydellä %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Liidiä ei voitu luoda"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Luo myyntimahdollisuus"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "Sähköposti on jo kirjattu liidiin"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "Tunnus"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Liidi/mahdollisuus"
|
||||
msgid "Lead"
|
||||
msgstr "Liidi"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr "Liidi: ohjaa lomake muokkaustilassa"
|
||||
msgstr "Liidi: uudelleenohjaa lomake muokkaustilassa"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Kirjaa sähköposti liidiin"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Kirjaa sähköposti liidiin"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Tälle kontaktille ei löytynyt myyntimahdollisuuksia."
|
||||
msgstr "Tälle yhteystiedolle ei löytynyt myyntimahdollisuuksia."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Mahdollisuudet"
|
||||
msgstr "Myyntimahdollisuudet"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Myyntimahdollisuudet (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Myyntimahdollisuudet (%s)"
|
||||
|
||||
|
|
@ -116,21 +119,18 @@ msgstr "Uudelleenohjaus liidien luomislomakkeelle esitäytetyillä tiedoilla"
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Tallenna yhteyshenkilö luodaksesi uusia myyntimahdollisuuksia."
|
||||
msgstr "Tallenna yhteystieto luodaksesi uusia myyntimahdollisuuksia."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
"Yhteyshenkilön on oltava olemassa, jotta myyntimahdollisuus voidaan luoda."
|
||||
"Yhteystiedon on oltava olemassa, jotta myyntimahdollisuus voidaan luoda."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Voit luoda myyntimahdollisuuksia vain olemassa oleville asiakkaille."
|
||||
|
|
|
|||
|
|
@ -1,65 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Cécile Collart <cco@odoo.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
# Manon Rondou, 2024
|
||||
#
|
||||
# * crm_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:45+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:19+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s à "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s à %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s à %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Impossible de créer la piste"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Créer une opportunité"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "E-mail déjà connecté à la piste"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Piste/Opportunité"
|
||||
msgid "Lead"
|
||||
msgstr "Piste"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -69,42 +77,36 @@ msgstr "Piste : rediriger vers le formulaire en mode édition"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Enregistrer l'e-mail dans la piste"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Enregistrer l'e-mail sur la piste"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Aucune opportunité trouvée pour ce contact."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Opportunités"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Opportunités (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Opportunités (%s)"
|
||||
|
||||
|
|
@ -119,20 +121,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Enregistrez le contact pour créer de nouvelles opportunités."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Le contact doit exister pour créer une opportunité."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Vous ne pouvez créer des opportunités que pour les clients existants."
|
||||
|
|
|
|||
|
|
@ -1,127 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_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:45+0000\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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
@ -1,63 +1,74 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# noa eldar <noaeldar@laylinetech.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:45+0000\n"
|
||||
"Last-Translator: Lilach Gilliam <lilach.gilliam@gmail.com>, 2022\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-10-01 11:09+0000\n"
|
||||
"Last-Translator: noa eldar <noaeldar@laylinetech.com>\n"
|
||||
"Language-Team: Hebrew <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/he/>\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
|
||||
"n % 10 == 0) ? 2 : 3));\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s+ %(recurring_revenue)s%(recurring_plan)s ב- "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)sב %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "לא ניתן היה ליצור את הליד"
|
||||
msgstr "לא ניתן ליצור את הליד"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "צור הזדמנות"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "אימייל כבר מחובר לליד"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "ליד/הזדמנות"
|
||||
msgid "Lead"
|
||||
msgstr "ליד"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,42 +78,36 @@ msgstr "ליד: טופס הפניה מחדש במצב עריכה"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "התחבר אימייל לליד"
|
||||
msgstr "תעד אימייל בליד"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "התחבר אימייל לליד"
|
||||
msgstr "תעד את האימייל בליד"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "לא נמצאו הזדמנויות עבור איש קשר זה."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "הזדמנויות"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "הזדמנויות (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "הזדמנויות (%s)"
|
||||
|
||||
|
|
@ -115,20 +120,17 @@ msgstr "הפנייה מחדש לטופס יצירת לידים עם מידע מ
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "שמור איש קשר כדי ליצור הזדמנויות חדשות."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "איש הקשר צריך להתקיים כדי ליצור הזדמנות."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "אתה יכול ליצור הזדמנויות רק ללקוחות קיימים."
|
||||
msgstr "ניתן ליצור הזדמנויות רק ללקוחות קיימים."
|
||||
|
|
|
|||
|
|
@ -1,56 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\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-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hindi <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/hi/>\n"
|
||||
"Language: hi\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: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s %"
|
||||
"(probability)s% की संभावना पर"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "अवसर बनाएं"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "डिस्प्ले का नाम"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr ""
|
||||
msgid "Lead"
|
||||
msgstr "लीड"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -60,42 +77,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
msgstr "अवसर"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -108,20 +119,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,61 +1,72 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Stjepan Lovasić <stjepan.lovasic@gmail.com>, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2022\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-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Croatian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/hr/>\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Kreiraj priliku"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Potencijal/prilika"
|
||||
msgid "Lead"
|
||||
msgstr "Potencijal"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -65,42 +76,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Prilike"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -113,20 +118,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,61 +1,72 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2022
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\n"
|
||||
"Last-Translator: gezza <geza.nagy@oregional.hu>, 2022\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-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Lehetőség létrehozása"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Érdeklődés/Lehetőség"
|
||||
msgid "Lead"
|
||||
msgstr "Érdeklődés"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -65,42 +76,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Lehetőségek"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -113,20 +118,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,127 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_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:45+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\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"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
@ -1,108 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Abe Manyo (abem)" <abem@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:45+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\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-10-16 01:45+0000\n"
|
||||
"Last-Translator: \"Abe Manyo (abem)\" <abem@odoo.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s at %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Tidak dapat membuat lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Buat Peluang"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "Email sudah dimasukkan pada lead"
|
||||
msgstr "Email sudah di-log pada lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Prospek/Peluang"
|
||||
msgid "Lead"
|
||||
msgstr "Prospek"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr "Lead: Alihkan formulir di mode edit"
|
||||
msgstr "Lead: redirect formulir di mode edit"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Log Email Menjadi Lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Log email pada lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Tidak ada opportunities yang ditemukan untuk kontak ini."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Peluang"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Opportunities (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Opportunities (%s)"
|
||||
|
||||
|
|
@ -116,20 +121,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Simpan Kontak untuk membuat Opportunities baru."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Harus ada Kontak untuk membuat Opportunity."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Anda hanya dapat membuat opportunities untuk pelanggan yang ada."
|
||||
|
|
|
|||
|
|
@ -1,127 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_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:45+0000\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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
@ -1,63 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Marianna Ciofani, 2024
|
||||
#
|
||||
# * crm_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:45+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:23+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s a "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s a %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s a %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Impossibile creare il lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Crea un'opportunità"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "E-mail già registrata sul lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Lead/Opportunità"
|
||||
msgid "Lead"
|
||||
msgstr "Contatto"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,42 +77,36 @@ msgstr "Guida: reindirizza al modulo in modalità modifica"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Registra e-mail nel lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Registra e-mail sul lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Nessuna opportunità trovata per questo contatto."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Opportunità"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Opportunità (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Opportunità (%s)"
|
||||
|
||||
|
|
@ -115,20 +119,17 @@ msgstr "Reindirizzamento alla scheda precompilata di creazione lead"
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Salva contatto per creare nuove opportunità."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Per creare un'opportunità il contatto deve esistere."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "È possibile creare opportunità solo per clienti esistenti."
|
||||
|
|
|
|||
|
|
@ -1,63 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
# * crm_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:45+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:17+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s "
|
||||
"以下において:%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s 以下におい"
|
||||
"て:%(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr " %(probability)s%における%(expected_revenue)s"
|
||||
msgstr "%(expected_revenue)s (%(probability)s%での)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "リードを作成できませんでした"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "案件作成"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "リードにすでに記録されているEメール"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "リード / 案件"
|
||||
msgid "Lead"
|
||||
msgstr "リード"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,42 +77,36 @@ msgstr "リード:編集モードのフォームからリダイレクト"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "リードにEメールをログ"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "リードでEメールをログ"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "この連絡先用の案件が見つかりません"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "案件"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "案件(%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "案件(%s)"
|
||||
|
||||
|
|
@ -115,20 +119,17 @@ msgstr "事前記入された情報をもつリード作成フォームへのリ
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "連絡先を保存して新規案件を作成する"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "案件を作成するには連絡先が存在する必要があります。"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "存在する顧客用にしか案件を作成できません。"
|
||||
|
|
|
|||
|
|
@ -1,55 +1,71 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 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:45+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-11-16 15:33+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Kabyle <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/kab/>\n"
|
||||
"Language: kab\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: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "Asulay"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgid "Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
|
|
@ -60,42 +76,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -108,20 +118,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
@ -1,132 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@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:45+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Leads/ឱកាស"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "ឪកាស"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
@ -1,63 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Sarah Park, 2023
|
||||
#
|
||||
# * crm_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:45+0000\n"
|
||||
"Last-Translator: Sarah Park, 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:49+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(probability)s% 로 %(expected_revenue)s + "
|
||||
"%(recurring_revenue)s%(recurring_plan)s"
|
||||
"%(probability)s% 로 %(expected_revenue)s + %(recurring_revenue)s%"
|
||||
"(recurring_plan)s"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(probability)s% 로 %(expected_revenue)s"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "영업제안을 생성할 수 없습니다"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "영업기회 생성"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "영업제안에 이미 사용된 이메일입니다."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "영업제안/영업기회"
|
||||
msgid "Lead"
|
||||
msgstr "영업제안"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,42 +77,36 @@ msgstr "영업제안: 편집 모드에서 양식 이동"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "영업제안에 이메일 기록"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "영업제안에 이메일 기록"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "이 연락처에서 영업기회를 찾지 못했습니다."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "영업 기회"
|
||||
msgstr "영업기회"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "영업기회 (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "영업기회 (%s)"
|
||||
|
||||
|
|
@ -115,20 +119,17 @@ msgstr "정보가 사전 입력되어 있는 영업제안 생성 양식으로
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "새로운 영업기회를 생성하려면 연락처를 저장하십시오."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "영업기회를 생성하려면 연락처가 있어야 합니다."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "기존 고객에서만 영업기회를 생성할 수 있습니다."
|
||||
|
|
|
|||
|
|
@ -1,55 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\n"
|
||||
"Language-Team: Afrikaans (https://app.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Kurdish (Central) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/crm_mail_plugin/ckb/>\n"
|
||||
"Language: ku\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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgid "Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
|
|
@ -60,42 +75,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -108,20 +117,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
@ -1,61 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Andrius Laukavičius <andrius@focusate.eu>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@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:45+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-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Lithuanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/lt/>\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
|
||||
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
|
||||
"1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Iniciatyva/Galimybė"
|
||||
msgid "Lead"
|
||||
msgstr "Iniciatyva"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -65,42 +77,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Pardavimo galimybės"
|
||||
msgstr "Galimybės"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -113,20 +119,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,63 +1,76 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 2025.
|
||||
# Armīns Jeltajevs <armins.jeltajevs@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:45+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024\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-12-21 18:11+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>\n"
|
||||
"Language-Team: Latvian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/lv/>\n"
|
||||
"Language: lv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100 <= "
|
||||
"19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s "
|
||||
"ar%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s%(recurring_plan)s ar %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s ar %(probability)s% iespēju"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Parādīt vārdu"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Lead/Opportunity"
|
||||
msgid "Lead"
|
||||
msgstr "Pavediens"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,42 +80,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Iespējas"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -115,20 +122,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,131 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_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:45+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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "ലീഡ്/അവസരം"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
@ -1,60 +1,71 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Mongolian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/mn/>\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Боломж үүсгэх"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Сэжим/Боломж"
|
||||
msgid "Lead"
|
||||
msgstr "Сэжим"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -64,42 +75,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Боломжууд"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -112,20 +117,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,59 +1,70 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2022
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\n"
|
||||
"Last-Translator: Mehjabin Farsana, 2022\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Burmese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/my/>\n"
|
||||
"Language: my\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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ပြသသော အမည်"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "နံပါတ်"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgid "Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
|
|
@ -64,42 +75,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Peluang"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -112,20 +117,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
@ -1,61 +1,71 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * crm_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:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\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:49+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Opprett salgsmulighet"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Lead/mulighet"
|
||||
msgid "Lead"
|
||||
msgstr "Lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -65,42 +75,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Salgsmuligheter"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -113,20 +117,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,63 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * crm_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:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 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/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s met "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s met %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s bij %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Kan de lead niet maken"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Maak een verkoopkans aan"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "E-mail al gelogd op de lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Lead/Verkoopkans"
|
||||
msgid "Lead"
|
||||
msgstr "Lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,42 +77,36 @@ msgstr "Lead: formulier omleiden in bewerkingsmodus"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Log e-mail bij lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Log de e-mail op de lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Geen mogelijkheden gevonden voor dit contact."
|
||||
msgstr "Geen verkoopkansen gevonden voor dit contact."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Verkoopkansen"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Verkoopkansen (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Verkoopkansen (%s)"
|
||||
|
||||
|
|
@ -117,20 +121,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Contactpersoon opslaan om nieuwe verkoopkansen te maken."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "De contactpersoon moet bestaan om verkoopkans te creëren."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Je kunt alleen verkoopkansen aanmaken voor bestaande klanten."
|
||||
|
|
|
|||
|
|
@ -1,127 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_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:45+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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
@ -1,64 +1,74 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
# Marta Wacławek, 2024
|
||||
#
|
||||
# * crm_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:45+0000\n"
|
||||
"Last-Translator: Marta Wacławek, 2024\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/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s na "
|
||||
"%(probability)s %"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s na %"
|
||||
"(probability)s %"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s na %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Nie udało się stworzyć leadu"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Utwórz okazję"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "Email jest już zapisany w leadzie"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Lead/Okazja"
|
||||
msgid "Lead"
|
||||
msgstr "Leadów"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -68,42 +78,36 @@ msgstr "Lead: przekieruj formularz w trybie edycji"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Zapisz email w leadzie"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Zapisz email na leadzie"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Nie znaleziono szans dla tego kontaktu."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Szanse"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Szanse (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Szanse (%s)"
|
||||
|
||||
|
|
@ -118,20 +122,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Zapisz kontakt aby utworzyć nowe szanse."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Kontakt musi istnieć aby utworzyć szanse."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Możesz utworzyć szanse tylko dla istniejących klientów."
|
||||
|
|
|
|||
|
|
@ -1,132 +1,137 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
#
|
||||
# * crm_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:45+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:49+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s em %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
msgstr "%(expected_revenue)s em %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
msgstr "Não foi possível criar o lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Criar uma oportunidade"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
msgstr "O e-mail já está registrado no lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Prospecto / Oportunidade"
|
||||
msgid "Lead"
|
||||
msgstr "Lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr ""
|
||||
msgstr "Lead: redirecionar o formulário no modo de edição"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
msgstr "Registrar o e-mail no lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
msgstr "Registre o e-mail do lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
msgstr "Não foram encontradas oportunidades para esse contato."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Oportunidades"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
msgstr "Oportunidades (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
msgstr "Oportunidades (%s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
"Redirecionamento para o formulário de criação de lead com informações pré-"
|
||||
"preenchidas"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
msgstr "Salvar contato para criar novas oportunidades."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
msgstr "O contato precisa existir para criar a oportunidade."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
msgstr "Você só pode criar oportunidades para os clientes existentes."
|
||||
|
|
|
|||
|
|
@ -1,64 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Éder Brito <britoederr@gmail.com>, 2022
|
||||
# Kevilyn Rosa, 2023
|
||||
#
|
||||
# * crm_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:45+0000\n"
|
||||
"Last-Translator: Kevilyn Rosa, 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:22+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s em "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s em %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s em %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Não foi possível criar o lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Criar uma oportunidade"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "O e-mail já está registrado no lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Lead/Oportunidade"
|
||||
msgid "Lead"
|
||||
msgstr "Lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -68,42 +77,36 @@ msgstr "Lead: redirecionar o formulário no modo de edição"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Registrar o e-mail no lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Registre o e-mail do lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Não foram encontradas oportunidades para esse contato."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Oportunidades"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Oportunidades (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Oportunidades (%s)"
|
||||
|
||||
|
|
@ -118,20 +121,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Salvar contato para criar novas oportunidades."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "O Contato precisa existir para criar a oportunidade."
|
||||
msgstr "O contato precisa existir para criar a oportunidade."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Você só pode criar oportunidades para os clientes existentes."
|
||||
|
|
|
|||
|
|
@ -1,64 +1,74 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2023
|
||||
# Claudia Baisan, 2023
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\n"
|
||||
"Last-Translator: Claudia Baisan, 2023\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-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Romanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s la "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s la %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s la %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Nu s-a putut crea oportunitatea"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Creează o oportunitate"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "Emailul este deja înregistrat în oportunitate"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Pista/Oportunitate"
|
||||
msgid "Lead"
|
||||
msgstr "Pistă"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -68,42 +78,36 @@ msgstr "Pista: redirecționează formularul în modul de editare"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Înregistrează emailul în pistă"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Înregistrează emailul în pistă"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Nu s-au găsit oportunități pentru acest contact."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Oportunități"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Oportunități (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Oportunități (%s)"
|
||||
|
||||
|
|
@ -111,27 +115,23 @@ msgstr "Oportunități (%s)"
|
|||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
"Redirecționare către formularul de creare a pistei cu informații "
|
||||
"preîncărcate"
|
||||
"Redirecționare către formularul de creare a pistei cu informații preîncărcate"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Salvează contactul pentru a crea noi oportunități."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Contactul trebuie să existe pentru a crea oportunitatea."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Poți crea oportunități doar pentru clienții existenți."
|
||||
|
|
|
|||
|
|
@ -1,110 +1,118 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Collex100, 2024
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
# "Anastasiia Koroleva (koan)" <koan@odoo.com>, 2025.
|
||||
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:45+0000\n"
|
||||
"Last-Translator: Collex100, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-10-29 06:31+0000\n"
|
||||
"Last-Translator: \"Anastasiia Koroleva (koan)\" <koan@odoo.com>\n"
|
||||
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s+%(recurring_revenue)s%(recurring_plan)sв%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s на %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)sв%(probability)s%"
|
||||
msgstr "%(expected_revenue)s на %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Не удалось создать лид"
|
||||
msgstr "Не удалось создать Лид"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Создание возможностей"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Отображаемое имя"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "Электронная почта уже подключена к лиду"
|
||||
msgstr "Электронная почта уже зарегистрирована на лиде"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Лид / Сделка"
|
||||
msgid "Lead"
|
||||
msgstr "Лид"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr "Лид: форма перенаправления в режиме редактирования "
|
||||
msgstr "Лид: форма перенаправления в режиме редактирования"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Подключить эл. почту к лиду"
|
||||
msgstr "Ввести электронную почту в лид"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Записать эл.почту в лид"
|
||||
msgstr "Зафиксируйте электронное письмо на лиде"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Для данного контакта не найдено ни одной возможности"
|
||||
msgstr "Для данного контакта не найдено ни одной возможности."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Сделки"
|
||||
msgstr "Возможности"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Возможности(%(count)s)"
|
||||
msgstr "Возможности (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Возможности(%s)"
|
||||
msgstr "Возможности (%s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
|
|
@ -117,20 +125,20 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Сохраните контакт, чтобы создать новые Возможности. "
|
||||
msgstr "Сохраните контакт, чтобы создать новые Возможности."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Контакт должен существовать, чтобы создать возможность."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Вы можете создавать возможности только для существующих клиентов."
|
||||
|
||||
#~ msgid "Lead/Opportunity"
|
||||
#~ msgstr "Лид/Возможность"
|
||||
|
|
|
|||
|
|
@ -1,60 +1,72 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Odoo Translation Bot <c3p@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@weblate.org>, 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:45+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: 2025-11-16 15:33+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Slovak <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný názov"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Potenciálna príležitosť / obchodný prípad"
|
||||
msgid "Lead"
|
||||
msgstr "Potenciálna príležitosť"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -64,42 +76,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Obchodné príležitosti"
|
||||
msgstr "Príležitosti"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -112,20 +118,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,63 +1,74 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
# * crm_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:45+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:29+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s "
|
||||
"pri%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s pri%"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s pri%(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Potencialne stranke ni bilo mogoče ustvariti"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Create an Opportunity"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "E-pošta je že prijavljena pri potencialni stranki"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Indic/Priložnost"
|
||||
msgid "Lead"
|
||||
msgstr "Indic"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,42 +78,36 @@ msgstr "Potencialna stranka: obrazec za preusmeritev v načinu urejanja"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Prijava e-pošte v seznam potencialnih strank"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Zabeležite e-pošto potencialne stranke"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Za ta stik ni bilo najdenih priložnosti."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Priložnosti"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Priložnosti(%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Priložnosti(%s)"
|
||||
|
||||
|
|
@ -117,20 +122,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Shrani stik za ustvarjanje novih priložnosti."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Stik mora obstajati za ustvarjanje priložnosti."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Priložnosti lahko ustvarite samo za obstoječe stranke."
|
||||
|
|
|
|||
|
|
@ -1,55 +1,67 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_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:45+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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgid "Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
|
|
@ -60,42 +72,36 @@ msgstr ""
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -108,20 +114,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1,109 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"POT-Creation-Date: 2026-01-25 18:36+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Serbian (Latin script) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/crm_mail_plugin/sr_Latn/>\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"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"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s na %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s na %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Nije bilo moguće kreirati potencijalnog kupca"
|
||||
msgstr "Nije moguće kreirati lida"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Kreiraj prodajnu priliku"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "Email već prijavljen na vodećem mestu"
|
||||
msgstr "Email je već registrovan kod lida"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Lid/Prodajna prilika"
|
||||
msgid "Lead"
|
||||
msgstr "Lid"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr "Voditi: preusmeri obrazac u režimu uređivanja"
|
||||
msgstr "Lid: preusmeri formu u režimu uređivanja"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Prijavi e-poštu u potencijalni klijent"
|
||||
msgstr "Registruj email u lid"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Zabeleži e-poštu na potencijalnom klijentu"
|
||||
msgstr "Registruj email na lidu"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Nisu pronađene prilike za ovaj kontakt."
|
||||
msgstr "Nije pronađena nijedna prilika za ovaj kontakt."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Prilike"
|
||||
msgstr "Prodajne prilike"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Prilike (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Prilike (%s)"
|
||||
|
||||
|
|
@ -111,27 +115,23 @@ msgstr "Prilike (%s)"
|
|||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
"Preusmeravanje na formular za kreiranje potencijalnog kupca sa unapred "
|
||||
"popunjenim informacijama"
|
||||
"Preusmeravanje na formu kreiranja lida sa unapred popunjenim informacijama"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Sačuvajte kontakt da biste stvorili nove prilike."
|
||||
msgstr "Sačuvajte kontakt da biste kreirali nove Prilike."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Kontakt mora postojati da bi se stvorila prilika."
|
||||
msgstr "Kontakt mora da postoji da biste kreirali Priliku."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Možete samo kreirati prilike za postojeće kupce."
|
||||
msgstr "Možete kreirati prilike samo za postojeće kupce."
|
||||
|
|
@ -1,110 +1,114 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Lasse L, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 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:45+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-20 09:21+0000\n"
|
||||
"Last-Translator: Hanna Kharraziha <hakha@odoo.com>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s med "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s med %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s med %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Kunde inte skapa kundämne"
|
||||
msgstr "Kunde inte skapa lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Skapa en möjlighet"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "E-post redan loggad på kundämnet"
|
||||
msgstr "E-post redan loggad på lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Kundämne/Möjlighet"
|
||||
msgid "Lead"
|
||||
msgstr "Lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr "Kundämne: omdirigera formulär i redigeringsläge"
|
||||
msgstr "Kundämne: formulär för omdirigering i redigeringsläge"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Logga e-post till ett kundämne"
|
||||
msgstr "Logga e-post på ett kundämne"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Logga e-postmeddelandet på kundämnet"
|
||||
msgstr "Logga e-postmeddelande på kundämne"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Inga möjligheter hittades för den här kontakten."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Möjligheter"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Möjligheter (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Möjligheter (%s)"
|
||||
|
||||
|
|
@ -112,27 +116,24 @@ msgstr "Möjligheter (%s)"
|
|||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
"Omdirigering till kundämneformuläret för att skapa potentiella kunder med "
|
||||
"förifylld information"
|
||||
"Omdirigering till formulär för att skapa potentiella kundämnen med förifylld "
|
||||
"information"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Spara Kontakt och skapa ny Möjlighet."
|
||||
msgstr "Spara kontakt och skapa ny möjlighet."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Kontakten måste existera för att skapa Möjlighet."
|
||||
msgstr "Kontakten måste existera för att skapa möjlighet."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Du kan bara skapa möjligheter för existerande kunder."
|
||||
|
|
|
|||
|
|
@ -1,127 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_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:45+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\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"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
@ -1,127 +0,0 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_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:45+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\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"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
|
|
@ -1,63 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
# * crm_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:45+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:19+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s ที่ "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s ที่ %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s ที่ %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "ไม่สามารถสร้างลูกค้าเป้าหมายได้"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "สร้างโอกาส"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "อีเมลถูกบันทึกในลูกค้าเป้าหมายแล้ว"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "ลูกค้าเป้าหมาย / โอกาส"
|
||||
msgid "Lead"
|
||||
msgstr "ลูกค้าเป้าหมาย"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,69 +77,59 @@ msgstr "ลูกค้าเป้าหมาย: เปลี่ยนเส
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "บันทึกอีเมลไปยังลูกค้าเป้าหมาย"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "บันทึกอีเมลในลูกค้าเป้าหมาย"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "ไม่พบโอกาสสำหรับการติดต่อนี้"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "โอกาสในการขาย"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "โอกาส (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "โอกาส (%s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
"การเปลี่ยนเส้นทางไปยังแบบฟอร์มการสร้างลูกค้าเป้าหมายพร้อมข้อมูลที่กรอกไว้ล่วงหน้า"
|
||||
msgstr "การเปลี่ยนเส้นทางไปยังแบบฟอร์มการสร้างลูกค้าเป้าหมายพร้อมข้อมูลที่กรอกไว้ล่วงหน้า"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "บันทึกผู้ติดต่อเพื่อสร้างโอกาสใหม่"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "จำเป็นต้องมีรายชื่อผู้ติดต่อเพื่อสร้างโอกาส"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "คุณสามารถสร้างโอกาสให้กับลูกค้าที่มีอยู่เท่านั้น"
|
||||
|
|
|
|||
|
|
@ -1,63 +1,74 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Halil, 2023
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\n"
|
||||
"Last-Translator: Halil, 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 21:08+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s at %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Aday oluşturulamadı"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Fırsat Oluştur"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "İsim Göster"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "Aday zaten var olan e-posta ile oturum açmış"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Aday/Fırsat"
|
||||
msgid "Lead"
|
||||
msgstr "Aday"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,42 +78,36 @@ msgstr "Aday: formu düzenleme modunda yeniden yönlendirme"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "E-postayı Adaya Kaydet"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "E-postayı adaya kaydedin"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Bu kontak için fırsat bulunamadı."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Fırsatlar"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Fırsatlar (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Fırsatlar (%s)"
|
||||
|
||||
|
|
@ -115,20 +120,17 @@ msgstr "Önceden doldurulmuş bilgilerle aday oluşturma formuna yönlendirme"
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Yeni Fırsatlar oluşturmak için Kişiyi Kaydet."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Fırsat oluşturmak için İlgili Kişinin var olması gerekir."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Yalnızca mevcut müşteriler için fırsatlar yaratabilirsiniz."
|
||||
|
|
|
|||
|
|
@ -1,63 +1,74 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022
|
||||
#
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Weblate <noreply-mt-weblate@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:45+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2022\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-11-16 15:29+0000\n"
|
||||
"Last-Translator: Weblate <noreply-mt-weblate@weblate.org>\n"
|
||||
"Language-Team: Ukrainian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_mail_plugin/uk/>\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s в "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s в %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s в %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Не можливо створити лід"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Створіть нагоду"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "Лід вже відкрив електронну пошту"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Лід/Нагода"
|
||||
msgid "Lead"
|
||||
msgstr "Лід"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,42 +78,36 @@ msgstr "Лід: форма перенаправлення в режимі ред
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Вхід лід через електронну пошту"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Вхід ліда через електронну пошту"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Не знайдено нагод для цього контакту."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Нагоди"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Нагоди (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Нагоди (%s)"
|
||||
|
||||
|
|
@ -116,20 +121,17 @@ msgstr ""
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Збережіть контакт, щоб створити нові Нагоди."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Контакт повинен існувати, щоб створити Нагоду."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Ви можете створювати можливості лише для наявних клієнтів."
|
||||
msgstr "Ви можете створювати нагоди лише для наявних клієнтів."
|
||||
|
|
|
|||
|
|
@ -1,131 +1,161 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@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:45+0000\n"
|
||||
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
|
||||
"Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\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: lo\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s %"
|
||||
"(probability)s% da"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr ""
|
||||
msgstr "%(expected_revenue)s %(probability)s% da"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Could not create the lead"
|
||||
msgstr ""
|
||||
msgstr "Potensial mijoz yaratilmadi"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
#, fuzzy
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Imkoniyat yarating"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
#, fuzzy
|
||||
msgid "Display Name"
|
||||
msgstr "Ko‘rsatiladigan nom"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr ""
|
||||
msgstr "Elektron pochta allaqachon potensial mijozga kiritilgan"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
#, fuzzy
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "ຍອດຂາຍ/ໂອກາດ"
|
||||
#, fuzzy
|
||||
msgid "Lead"
|
||||
msgstr "Potensial mijoz"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
#, fuzzy
|
||||
msgid "Lead: redirect form in edit mode"
|
||||
msgstr ""
|
||||
msgstr "Potensial mijoz: tahrirlash rejimida shaklni yo‘naltirish"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr ""
|
||||
msgstr "Elektron pochtani potensial mijozga kiriting"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Log the email on the lead"
|
||||
msgstr ""
|
||||
msgstr "Elektron pochtani potensial mijozga qayd eting"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr ""
|
||||
msgstr "Bu kontakt uchun hech qanday imkoniyat topilmadi."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Opportunities"
|
||||
msgstr "ໂອກາດ"
|
||||
msgstr "Imkoniyatlar"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr ""
|
||||
msgstr "Imkoniyatlar (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr ""
|
||||
msgstr "Imkoniyatlar (%s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.server,name:crm_mail_plugin.lead_creation_prefilled_action
|
||||
#, fuzzy
|
||||
msgid "Redirection to the lead creation form with prefilled info"
|
||||
msgstr ""
|
||||
"Oldindan to‘ldirilgan ma'lumotlar bilan potensial mijozni yaratish shakliga "
|
||||
"yo‘naltirish"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr ""
|
||||
msgstr "Yangi imkoniyatlar yaratish uchun kontaktni saqlang."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr ""
|
||||
msgstr "Imkoniyat yaratish uchun kontakt mavjud bo‘lishi kerak."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
#, fuzzy
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr ""
|
||||
msgstr "Siz faqat mavjud mijozlar uchun imkoniyatlar yarata olasiz."
|
||||
|
|
@ -1,63 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
# * crm_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:45+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2023\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:32+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s với "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s với %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s với %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "Không thể tạo lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "Tạo cơ hội"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "Email đã được đăng nhập cho lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "Lead/Cơ hội"
|
||||
msgid "Lead"
|
||||
msgstr "Lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -67,42 +77,36 @@ msgstr "Lead: chuyển hướng biểu mẫu trong chế độ chỉnh sửa"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "Lưu email vào lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "Lưu email vào lead"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "Không tìm thấy cơ hội cho liên hệ này. "
|
||||
msgstr "Không tìm thấy cơ hội cho liên hệ này."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "Cơ hội"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "Cơ hội (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "Cơ hội (%s)"
|
||||
|
||||
|
|
@ -115,20 +119,17 @@ msgstr "Chuyển hướng tới biểu mẫu tạo lead với thông tin đượ
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "Lưu Liên hệ để tạo Cơ hội mới. "
|
||||
msgstr "Lưu Liên hệ để tạo Cơ hội mới."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "Liên hệ cần tồn tại để tạo Cơ hội."
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "Bạn chỉ có thể tạo cơ hội cho những khách hàng hiện có."
|
||||
|
|
|
|||
|
|
@ -1,64 +1,73 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
# Translators:
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
# 稀饭~~ <wangwhai@qq.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
# * crm_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:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 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:38+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/crm_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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + "
|
||||
"%(recurring_revenue)s%(recurring_plan)s在%(probability)s%时"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s%(recurring_plan)s在%"
|
||||
"(probability)s%时"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "在%(probability)s%的%(expected_revenue)s处"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "无法创造线索"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "创建商机"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "已经登录在线索上的电子邮件"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "线索/商机"
|
||||
msgid "Lead"
|
||||
msgstr "线索"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -68,42 +77,36 @@ msgstr "领导:在编辑模式下重定向表格"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "将电子邮件记录到线索中"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "记录线索上的电子邮件"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "没有发现该联系人的机会。"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "商机"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "机会 (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "机会 (%s)"
|
||||
|
||||
|
|
@ -116,20 +119,17 @@ msgstr "使用预填充信息重定向到Lead Creation表单"
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "保存联系人以创建新的机会。"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "联系人需要存在才能创建商机。"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "您只能为现有客户创造机会。"
|
||||
|
|
|
|||
|
|
@ -1,62 +1,74 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * crm_mail_plugin
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# 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:45+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:03+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: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s at %"
|
||||
"(probability)s%"
|
||||
msgstr ""
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s ,成功率 "
|
||||
"%(probability)s%"
|
||||
"%(expected_revenue)s + %(recurring_revenue)s %(recurring_plan)s ,成功率 %"
|
||||
"(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "%(expected_revenue)s at %(probability)s%"
|
||||
msgstr "%(expected_revenue)s ,成功率 %(probability)s%"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Could not create the lead"
|
||||
msgstr "未能建立潛在客戶"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,website_form_label:crm_mail_plugin.model_crm_lead
|
||||
msgid "Create an Opportunity"
|
||||
msgstr "建立銷售機會"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Email already logged on the lead"
|
||||
msgstr "電郵已在潛在客戶中記錄"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model.fields,field_description:crm_mail_plugin.field_crm_lead__id
|
||||
msgid "ID"
|
||||
msgstr "識別號"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.model,name:crm_mail_plugin.model_crm_lead
|
||||
msgid "Lead/Opportunity"
|
||||
msgstr "潛在客戶 / 銷售機會"
|
||||
msgid "Lead"
|
||||
msgstr "潛在商機"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#: model:ir.actions.act_window,name:crm_mail_plugin.crm_lead_action_form_edit
|
||||
|
|
@ -66,42 +78,36 @@ msgstr "潛在客戶:編輯模式下的重新導向表單"
|
|||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Log Email Into Lead"
|
||||
msgstr "將電郵記錄至潛在客戶中"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Log the email on the lead"
|
||||
msgstr "將電子郵件記錄在潛在客戶上"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "No opportunities found for this contact."
|
||||
msgstr "找不到此聯絡人的銷售機會。"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities"
|
||||
msgstr "銷售機會"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%(count)s)"
|
||||
msgstr "銷售機會 (%(count)s)"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "Opportunities (%s)"
|
||||
msgstr "銷售機會 (%s)"
|
||||
|
||||
|
|
@ -114,20 +120,17 @@ msgstr "重新導向至已有預填資料的潛在客戶建立表單"
|
|||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "Save Contact to create new Opportunities."
|
||||
msgstr "儲存聯絡人,以建立新的銷售機會。"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_outlook.xml:0
|
||||
#, python-format
|
||||
msgid "The Contact needs to exist to create Opportunity."
|
||||
msgstr "須有聯絡人存在,才可建立銷售機會。"
|
||||
|
||||
#. module: crm_mail_plugin
|
||||
#. odoo-javascript
|
||||
#: code:addons/crm_mail_plugin/static/src/to_translate/translations_gmail.xml:0
|
||||
#, python-format
|
||||
msgid "You can only create opportunities for existing customers."
|
||||
msgstr "只可為現有客戶建立銷售機會。"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
from odoo import api, models
|
||||
|
||||
|
||||
class Lead(models.Model):
|
||||
class CrmLead(models.Model):
|
||||
_inherit = 'crm.lead'
|
||||
|
||||
@api.model
|
||||
|
|
|
|||
|
|
@ -15,19 +15,19 @@ class TestCrmMailPlugin(TestMailPluginControllerCommon):
|
|||
{"name": "Partner 2"},
|
||||
])
|
||||
|
||||
result = self._make_rpc_call("/mail_plugin/partner/get", {"partner_id": partner.id})
|
||||
result = self.make_jsonrpc_request("/mail_plugin/partner/get", {"partner_id": partner.id})
|
||||
|
||||
self.assertNotIn("leads", result,
|
||||
msg="The user has no access to crm.lead, the leads section should not be visible")
|
||||
|
||||
self.user_test.groups_id |= self.env.ref("sales_team.group_sale_salesman_all_leads")
|
||||
self.user_test.group_ids |= self.env.ref("sales_team.group_sale_salesman_all_leads")
|
||||
|
||||
lead_1, lead_2 = self.env["crm.lead"].create([
|
||||
{"name": "Lead Partner 1", "partner_id": partner.id},
|
||||
{"name": "Lead Partner 2", "partner_id": partner_2.id},
|
||||
])
|
||||
|
||||
result = self._make_rpc_call("/mail_plugin/partner/get", {"partner_id": partner.id})
|
||||
result = self.make_jsonrpc_request("/mail_plugin/partner/get", {"partner_id": partner.id})
|
||||
|
||||
self.assertIn(
|
||||
"leads",
|
||||
|
|
@ -60,7 +60,7 @@ class TestCrmMailPlugin(TestMailPluginControllerCommon):
|
|||
# set default company to Company_A
|
||||
self.env.user.company_id = company_a.id
|
||||
|
||||
self.user_test.groups_id |= self.env.ref('sales_team.group_sale_salesman_all_leads')
|
||||
self.user_test.group_ids |= self.env.ref('sales_team.group_sale_salesman_all_leads')
|
||||
|
||||
# Add company_B to user_test to have access to records related to company_B
|
||||
self.user_test.write({'company_ids': [(4, company_b.id)]})
|
||||
|
|
@ -71,7 +71,7 @@ class TestCrmMailPlugin(TestMailPluginControllerCommon):
|
|||
'email_subject': 'test subject',
|
||||
}
|
||||
|
||||
result = self._make_rpc_call('/mail_plugin/lead/create', params)
|
||||
result = self.make_jsonrpc_request('/mail_plugin/lead/create', params)
|
||||
|
||||
# Check that the created lead record has the correct company and return the lead_id
|
||||
self.assertIn(
|
||||
|
|
@ -87,27 +87,3 @@ class TestCrmMailPlugin(TestMailPluginControllerCommon):
|
|||
company_b,
|
||||
msg='The created record should belong to company_B',
|
||||
)
|
||||
|
||||
def _make_rpc_call(self, url, params):
|
||||
"""
|
||||
Makes an RPC call to the specified URL with the given parameters, and returns the 'result' key from the response.
|
||||
|
||||
:param params (dict): A dictionary containing the parameters to send in the RPC call.
|
||||
:param url (str): The URL to send the RPC call to.
|
||||
:return (dict): The 'result' key from the response.
|
||||
"""
|
||||
|
||||
data = {
|
||||
'id': 0,
|
||||
'jsonrpc': '2.0',
|
||||
'method': 'call',
|
||||
'params': params,
|
||||
}
|
||||
|
||||
response = self.url_open(
|
||||
url,
|
||||
data=json.dumps(data).encode(),
|
||||
headers={'Content-Type': 'application/json'}
|
||||
).json()
|
||||
|
||||
return response['result']
|
||||
|
|
|
|||
|
|
@ -3,14 +3,8 @@
|
|||
<!-- Called by the plugin to open a lead in edit mode -->
|
||||
<record id="crm_lead_action_form_edit" model="ir.actions.act_window">
|
||||
<field name="name">Lead: redirect form in edit mode</field>
|
||||
<field name="type">ir.actions.act_window</field>
|
||||
<field name="res_model">crm.lead</field>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="view_id" ref="crm.crm_lead_view_form"/>
|
||||
<field name="context">
|
||||
{
|
||||
'form_view_initial_mode': 'edit',
|
||||
}
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
<!--deprecated as of saas-14.3-->
|
||||
<record id="lead_creation_prefilled_action" model="ir.actions.server">
|
||||
<field name="name">Redirection to the lead creation form with prefilled info</field>
|
||||
<field name="type">ir.actions.server</field>
|
||||
<field name="model_id" ref="model_crm_lead"/>
|
||||
<field name="state">code</field>
|
||||
<field name="code">action = model._form_view_auto_fill()</field>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue